退款单跟进

This commit is contained in:
jianghanbo 2024-11-07 15:07:24 +08:00
parent d97b184a5d
commit d485eb6cd7
7 changed files with 50 additions and 44 deletions

View File

@ -147,6 +147,52 @@
@selection-change="handleSelectionChange"
>
<el-table-column type="selection" width="55"> </el-table-column>
<el-table-column align="center" fixed width="200" label="操作">
<template slot-scope="scope">
<el-button-group>
<el-button
:type="
scope.row.backs && scope.row.backs.status == 0
? types[7]
: types[4]
"
size="small"
icon="el-icon-refresh"
@click="onCirculation(scope.row)"
>
{{
scope.row.backs && scope.row.backs.status == 0
? "流转中"
: "流转出"
}}
</el-button>
<el-button
:type="types[scope.row.order_status]"
size="small"
icon="el-icon-edit"
@click="onInfo(scope.row)"
>
跟进
</el-button>
<el-button
size="small"
icon="el-icon-thumb"
@click="onOneClickRepair(scope.row)"
>
同步
</el-button>
<el-button
v-if="scope.row.appointment_status == 1"
size="small"
icon="el-icon-edit"
@click="onOneClickYyHandle(scope.row)"
>
预约处理
</el-button>
</el-button-group>
</template>
</el-table-column>
<el-table-column align="center" fixed label="电话" width="140">
<template slot-scope="scope">
<span>{{ scope.row.mobile }}</span>

File diff suppressed because one or more lines are too long

View File

@ -1 +1 @@
.pagination-container[data-v-28fdfbeb]{padding:32px 16px;position:fixed;bottom:0;left:0;width:100%;background:#fff;padding:40px 280px;-webkit-box-shadow:0 -2px 10px rgba(0,0,0,.1);box-shadow:0 -2px 10px rgba(0,0,0,.1);z-index:100}.pagination-container.hidden[data-v-28fdfbeb]{display:none}.app-container[data-v-79892438]{position:relative;padding-bottom:60px}.el-table[data-v-79892438],.filter-container[data-v-79892438]{padding-bottom:5px}
.pagination-container[data-v-28fdfbeb]{padding:32px 16px;position:fixed;bottom:0;left:0;width:100%;background:#fff;padding:40px 280px;-webkit-box-shadow:0 -2px 10px rgba(0,0,0,.1);box-shadow:0 -2px 10px rgba(0,0,0,.1);z-index:100}.pagination-container.hidden[data-v-28fdfbeb]{display:none}.app-container[data-v-29ea36e9]{position:relative;padding-bottom:60px}.el-table[data-v-29ea36e9],.filter-container[data-v-29ea36e9]{padding-bottom:5px}

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -28,46 +28,6 @@ WHERE
(`os` IN ( '3', '5' ) and order_status = 4)
2024/10/19
ALTER TABLE `products`
ADD COLUMN `type` tinyint(1) NOT NULL DEFAULT 0 COMMENT '0-未设置1-境内2-境外' AFTER `os`,
ADD COLUMN `day` int NOT NULL DEFAULT 0 COMMENT '天' AFTER `type`,
ADD COLUMN `night` int NOT NULL DEFAULT 0 COMMENT '晚' AFTER `day`,
ADD COLUMN `trip_info` varchar(255) CHARACTER SET utf8mb3 COLLATE utf8mb3_general_ci NOT NULL DEFAULT '' COMMENT '详细行程' AFTER `night`;
ALTER TABLE `orders`
ADD COLUMN `is_apply_appointment` tinyint(1) NOT NULL DEFAULT 0 COMMENT '是否已申请预约' AFTER `is_refunded`
// 班期表
CREATE TABLE `product_schedules` (
`id` int NOT NULL AUTO_INCREMENT,
`day` varchar(10) NOT NULL DEFAULT '' COMMENT '日期',
`num` int(10) DEFAULT 0 COMMENT '可预约人数',
`created_at` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '创建时间',
`updated_at` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '更新时间',
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='商品班期表';
// 客服表
ALTER TABLE `admins`
ADD COLUMN `wechat` varchar(30) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL DEFAULT '' COMMENT '微信号' AFTER `type`,
ADD COLUMN `wechat_pic` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL DEFAULT '' COMMENT '微信图片' AFTER `wechat`,
ADD COLUMN `job` tinyint(1) NOT NULL DEFAULT 0 COMMENT '职位' AFTER `wechat_pic`,
ADD COLUMN `service_promise` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL DEFAULT '' COMMENT '服务承诺' AFTER `job`;
// 预约表
CREATE TABLE `order_books` (
`id` int NOT NULL AUTO_INCREMENT,
`order_id` int DEFAULT '0' COMMENT '订单号',
`travel_date` varchar(10) NOT NULL DEFAULT '' COMMENT '出游日期',
`num` int NOT NULL DEFAULT '0' COMMENT '出游人数',
`name` varchar(30) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL DEFAULT '' COMMENT '出行人名称',
`mobile` char(11) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL DEFAULT '' COMMENT '联系电话',
`code_pic` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL DEFAULT '' COMMENT '券码图片',
`status` tinyint(1) NOT NULL DEFAULT '0' COMMENT '状态0-未处理1-已处理)',
`note` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL DEFAULT '' COMMENT '备注',
`created_at` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '创建时间',
`updated_at` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '更新时间',
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=0 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='订单预约表';