|
@@ -0,0 +1,404 @@
|
|
|
+<template>
|
|
|
+ <a-card :bordered="false" style="margin-bottom: 10px" class="mb-2">
|
|
|
+ <a-form ref="searchFormRef" name="advanced_search" :model="searchFormState" class="ant-advanced-search-form">
|
|
|
+ <a-row :gutter="24">
|
|
|
+ <a-col :span="6">
|
|
|
+ <a-form-item label="订单编号" name="orderNumber">
|
|
|
+ <a-input v-model:value="searchFormState.orderNumber" placeholder="订单编号查询" />
|
|
|
+ </a-form-item>
|
|
|
+ </a-col>
|
|
|
+ <a-col :span="6">
|
|
|
+ <a-form-item label="订单名称" name="orderName">
|
|
|
+ <a-input v-model:value="searchFormState.orderName" placeholder="订单名称查询" />
|
|
|
+ </a-form-item>
|
|
|
+ </a-col>
|
|
|
+ <a-col :span="6">
|
|
|
+ <a-form-item label="车牌号" name="licenseNumber">
|
|
|
+ <a-input v-model:value="searchFormState.licenseNumber" placeholder="车牌号码查询" />
|
|
|
+ </a-form-item>
|
|
|
+ </a-col>
|
|
|
+ <template v-if="advanced">
|
|
|
+ <a-col :span="6">
|
|
|
+ <a-form-item label="客户名称" name="customerName">
|
|
|
+ <a-input v-model:value="searchFormState.customerName" placeholder="客户名称查询" />
|
|
|
+ </a-form-item>
|
|
|
+ </a-col>
|
|
|
+ <a-col :span="6">
|
|
|
+ <a-form-item label="货品名称" name="goodsName">
|
|
|
+ <a-input v-model:value="searchFormState.goodsName" placeholder="货品名称查询" />
|
|
|
+ </a-form-item>
|
|
|
+ </a-col>
|
|
|
+ <a-col :span="6">
|
|
|
+ <a-form-item label="司机名称" name="driverName">
|
|
|
+ <a-input v-model:value="searchFormState.driverName" placeholder="司机名称查询" />
|
|
|
+ </a-form-item>
|
|
|
+ </a-col>
|
|
|
+ <a-col :span="6">
|
|
|
+ <a-form-item label="司机电话" name="driverPhone">
|
|
|
+ <a-input v-model:value="searchFormState.driverPhone" placeholder="司机电话查询" />
|
|
|
+ </a-form-item>
|
|
|
+ </a-col>
|
|
|
+
|
|
|
+ <a-col :span="6">
|
|
|
+ <a-form-item label="预约状态" name="status">
|
|
|
+ <a-select v-model:value="searchFormState.status" placeholder="预约状态查询"
|
|
|
+ :options="statusList"
|
|
|
+ > </a-select>
|
|
|
+ </a-form-item>
|
|
|
+ </a-col>
|
|
|
+ </template>
|
|
|
+ <a-col :span="6">
|
|
|
+ <a-button type="primary" @click="tableRef.refresh()">查询</a-button>
|
|
|
+ <a-button style="margin: 0 8px" @click="reset">重置</a-button>
|
|
|
+ <a @click="toggleAdvanced" style="margin-left: 8px">
|
|
|
+ {{ advanced ? '收起' : '展开' }}
|
|
|
+ <component :is="advanced ? 'up-outlined' : 'down-outlined'" />
|
|
|
+ </a>
|
|
|
+ </a-col>
|
|
|
+ </a-row>
|
|
|
+ </a-form>
|
|
|
+ </a-card>
|
|
|
+ <a-card :bordered="false">
|
|
|
+ <s-table
|
|
|
+ ref="tableRef"
|
|
|
+ :columns="columns"
|
|
|
+ :data="loadData"
|
|
|
+ bordered
|
|
|
+ :row-key="(record) => record.id"
|
|
|
+ >
|
|
|
+ <template #operator class="table-operator">
|
|
|
+ <a-space>
|
|
|
+<!-- <a-button type="primary" @click="formRef.onOpen()" v-if="hasPerm('bizAppointmentRecordAdd')">
|
|
|
+ <template #icon><plus-outlined /></template>
|
|
|
+ 新增
|
|
|
+ </a-button>-->
|
|
|
+<!-- <a-button @click="exportTotal" v-if="hasPerm('bizAppointmentExport')">
|
|
|
+ <template #icon>
|
|
|
+ <export-outlined/>
|
|
|
+ </template>
|
|
|
+ 导出
|
|
|
+ </a-button>-->
|
|
|
+ </a-space>
|
|
|
+ </template>
|
|
|
+ <template #bodyCell="{ column, record }">
|
|
|
+ <template v-if="column.dataIndex === 'orderInfo'">
|
|
|
+ <div class="time-list">
|
|
|
+ <p>名称:{{ record.orderName }}</p>
|
|
|
+ <p style="margin-bottom: 0">编号:{{ record.orderNumber }}</p>
|
|
|
+ </div>
|
|
|
+ </template>
|
|
|
+ <template v-if="column.dataIndex === 'timeInfo'">
|
|
|
+ <span>{{record.beginTime + '~' + record.endTime}}</span>
|
|
|
+ </template>
|
|
|
+ <template v-if="column.dataIndex === 'customerInfo'">
|
|
|
+ <span>{{record.customerName}}</span>
|
|
|
+ </template>
|
|
|
+ <template v-if="column.dataIndex === 'driverInfo'">
|
|
|
+ <div class="time-list">
|
|
|
+ <p>姓名:{{ record.driverName }}</p>
|
|
|
+ <p style="margin-bottom: 0">电话:{{ record.driverPhone }}</p>
|
|
|
+ </div>
|
|
|
+ </template>
|
|
|
+ <template v-if="column.dataIndex === 'goodsInfo'">
|
|
|
+ <div class="time-list">
|
|
|
+ <p>名称:{{ record.goodsName }}</p>
|
|
|
+ <p style="margin-bottom: 0">规格:{{ record.goodsModel }}</p>
|
|
|
+ </div>
|
|
|
+ </template>
|
|
|
+ <template v-if="column.dataIndex === 'status'">
|
|
|
+ <a-tag
|
|
|
+ :color="
|
|
|
+ record.status === '1'
|
|
|
+ ? 'volcano'
|
|
|
+ : record.status === '2'
|
|
|
+ ? 'red'
|
|
|
+ : record.status === '3'
|
|
|
+ ? 'processing'
|
|
|
+ : record.status === '4'
|
|
|
+ ? 'warning'
|
|
|
+ : record.status === '5'
|
|
|
+ ? 'magenta'
|
|
|
+ : record.status === '6'
|
|
|
+ ? 'orange'
|
|
|
+ : record.status === '7'
|
|
|
+ ? 'gold'
|
|
|
+ : record.status === '8'
|
|
|
+ ? 'lime'
|
|
|
+ : record.status === '9'
|
|
|
+ ? 'green'
|
|
|
+ : record.status === '10'
|
|
|
+ ? 'cyan'
|
|
|
+ : record.status === '11'
|
|
|
+ ? 'success'
|
|
|
+ : record.status === '12'
|
|
|
+ ? 'blue'
|
|
|
+ : record.status === '13'
|
|
|
+ ? 'geekblue'
|
|
|
+ : 'error'
|
|
|
+ "
|
|
|
+ >
|
|
|
+ {{ $TOOL.dictTypeData('appointment_status', record.status) }}
|
|
|
+ </a-tag>
|
|
|
+ </template>
|
|
|
+ <template v-if="column.dataIndex === 'action'">
|
|
|
+ <a style="color: #ffaa00" @click="orderRef.onOpen(record)" v-if="hasPerm('bizAppointmentRecordOrder') && (record.status == '3' || record.status == '4' || record.status == '5' || record.status == '6'|| record.status == '7'|| record.status == '8'|| record.status == '9')">调整订单</a>
|
|
|
+ <a-divider type="vertical" v-if="(hasPerm('bizAppointmentRecordOrder') && (record.status == '3' || record.status == '4' || record.status == '5' || record.status == '6'|| record.status == '7'|| record.status == '8'|| record.status == '9')) && (hasPerm('bizAppointmentRecordTime') && (record.status == '3' || record.status == '4'))" />
|
|
|
+ <a style="color:blue" @click="formRef.onOpen(record)" v-if="hasPerm('bizAppointmentRecordTime') && (record.status == '3' || record.status == '4')">调整时段</a>
|
|
|
+ <a-divider type="vertical" v-if="(hasPerm('bizAppointmentRecordTime') && (record.status == '3' || record.status == '4')) && (hasPerm('bizAppointmentRecordCancel') && (record.status == '3' || record.status == '4'))" />
|
|
|
+ <a style="color:red" type="link" danger size="small" @click="cancelConfig(record)" v-if="hasPerm('bizAppointmentRecordCancel') && (record.status == '3' || record.status == '4')">取消排队</a>
|
|
|
+ </template>
|
|
|
+ </template>
|
|
|
+ </s-table>
|
|
|
+ </a-card>
|
|
|
+ <Form ref="formRef" @successful="tableRef.refresh()" />
|
|
|
+ <Order ref="orderRef" @successful="tableRef.refresh()" />
|
|
|
+ <Review ref="reviewRef" @successful="tableRef.refresh(true)" />
|
|
|
+ <Detail ref="detailRef" @successful="tableRef.refresh()" />
|
|
|
+</template>
|
|
|
+
|
|
|
+<script setup name="bizappointmentrecord">
|
|
|
+ import { cloneDeep } from 'lodash-es'
|
|
|
+ import bizAppointmentRecordApi from '@/api/biz/bizAppointmentRecordApi'
|
|
|
+ import tool from '@/utils/tool'
|
|
|
+ import downloadUtil from '@/utils/downloadUtil'
|
|
|
+ import Detail from './detail.vue'
|
|
|
+ import Order from './editOrder.vue'
|
|
|
+ import Form from './form.vue'
|
|
|
+ import {ExclamationCircleOutlined} from '@ant-design/icons-vue';
|
|
|
+ import {Modal} from 'ant-design-vue';
|
|
|
+ import {createVNode} from 'vue';
|
|
|
+
|
|
|
+ const submitLoading = ref(false)
|
|
|
+ const tableRef = ref()
|
|
|
+ const formRef = ref()
|
|
|
+ const orderRef = ref()
|
|
|
+ const reviewRef = ref()
|
|
|
+ const detailRef = ref()
|
|
|
+ const toolConfig = { refresh: true, height: true, columnSetting: true, striped: false }
|
|
|
+
|
|
|
+ const nowRecord = ref()
|
|
|
+
|
|
|
+ //查询数据
|
|
|
+ const searchFormState = ref({appointmentFlag:'1'})
|
|
|
+ const searchFormRef = ref()
|
|
|
+ const statusList = tool.dictList('appointment_status')
|
|
|
+
|
|
|
+ // 查询区域显示更多控制
|
|
|
+ const advanced = ref(false)
|
|
|
+ const toggleAdvanced = () => {
|
|
|
+ advanced.value = !advanced.value
|
|
|
+ }
|
|
|
+
|
|
|
+ const columns = [
|
|
|
+ {
|
|
|
+ title: '订单信息',
|
|
|
+ dataIndex: 'orderInfo',
|
|
|
+ width:200
|
|
|
+ },
|
|
|
+ {
|
|
|
+ title: '车牌号',
|
|
|
+ dataIndex: 'licenseNumber',
|
|
|
+ width:130,
|
|
|
+ align: 'center'
|
|
|
+ },
|
|
|
+ {
|
|
|
+ title: '预约时段',
|
|
|
+ dataIndex: 'timeInfo',
|
|
|
+ align:'center',
|
|
|
+ width:130
|
|
|
+ },
|
|
|
+ {
|
|
|
+ title: '客户信息',
|
|
|
+ dataIndex: 'customerInfo',
|
|
|
+ align:'center',
|
|
|
+ width:150
|
|
|
+ },
|
|
|
+ {
|
|
|
+ title: '货品信息',
|
|
|
+ dataIndex: 'goodsInfo',
|
|
|
+ width:150
|
|
|
+ },
|
|
|
+ {
|
|
|
+ title: '司机信息',
|
|
|
+ dataIndex: 'driverInfo',
|
|
|
+ width: 150
|
|
|
+ },
|
|
|
+ {
|
|
|
+ title: '状态',
|
|
|
+ dataIndex: 'status',
|
|
|
+ align: 'center',
|
|
|
+ width:100
|
|
|
+ },
|
|
|
+ ]
|
|
|
+ // 操作栏通过权限判断是否显示
|
|
|
+ columns.push({
|
|
|
+ title: '操作',
|
|
|
+ dataIndex: 'action',
|
|
|
+ align: 'center',
|
|
|
+ fixed: 'right',
|
|
|
+ width: 240
|
|
|
+ })
|
|
|
+
|
|
|
+ const selectedRowKeys = ref([])
|
|
|
+ // 列表选择配置
|
|
|
+ const options = {
|
|
|
+ // columns数字类型字段加入 needTotal: true 可以勾选自动算账
|
|
|
+ alert: {
|
|
|
+ show: true,
|
|
|
+ clear: () => {
|
|
|
+ selectedRowKeys.value = ref([])
|
|
|
+ }
|
|
|
+ },
|
|
|
+ rowSelection: {
|
|
|
+ onChange: (selectedRowKey, selectedRows) => {
|
|
|
+ selectedRowKeys.value = selectedRowKey
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ const loadData = (parameter) => {
|
|
|
+ const searchFormParam = cloneDeep(searchFormState.value)
|
|
|
+ return bizAppointmentRecordApi.bizAppointmentRecordPage(Object.assign(parameter, searchFormParam)).then((data) => {
|
|
|
+ return data
|
|
|
+ })
|
|
|
+ }
|
|
|
+ // 重置
|
|
|
+ const reset = () => {
|
|
|
+ searchFormRef.value.resetFields()
|
|
|
+ tableRef.value.refresh(true)
|
|
|
+ }
|
|
|
+ // 删除
|
|
|
+ const deleteBizAppointmentRecord = (record) => {
|
|
|
+ let params = [
|
|
|
+ {
|
|
|
+ id: record.id
|
|
|
+ }
|
|
|
+ ]
|
|
|
+ bizAppointmentRecordApi.bizAppointmentRecordDelete(params).then(() => {
|
|
|
+ tableRef.value.refresh(true)
|
|
|
+ })
|
|
|
+ }
|
|
|
+ // 删除
|
|
|
+ const deleteConfig = (record) => {
|
|
|
+
|
|
|
+ Modal.confirm({
|
|
|
+ title: '确定删除该数据吗?',
|
|
|
+ icon: createVNode(ExclamationCircleOutlined),
|
|
|
+ content: '',
|
|
|
+ onOk() {
|
|
|
+ submitLoading.value = true
|
|
|
+ let params = [
|
|
|
+ {
|
|
|
+ id: record.id
|
|
|
+ }
|
|
|
+ ]
|
|
|
+
|
|
|
+ bizAppointmentRecordApi
|
|
|
+ .bizAppointmentRecordDelete(params)
|
|
|
+ .then(() => {
|
|
|
+ tableRef.value.refresh(true)
|
|
|
+ })
|
|
|
+ .finally(() => {
|
|
|
+ submitLoading.value = false
|
|
|
+ })
|
|
|
+ },
|
|
|
+ onCancel() {}
|
|
|
+ })
|
|
|
+ }
|
|
|
+
|
|
|
+ //取消排队
|
|
|
+ const cancelConfig = (record)=>{
|
|
|
+ Modal.confirm({
|
|
|
+ title: '确定要取消排队吗?',
|
|
|
+ icon: createVNode(ExclamationCircleOutlined),
|
|
|
+ content: '',
|
|
|
+ onOk() {
|
|
|
+ submitLoading.value = true
|
|
|
+ let params =
|
|
|
+ {
|
|
|
+ id: record.id
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+ bizAppointmentRecordApi
|
|
|
+ .cancelAppointmentRecord(params)
|
|
|
+ .then(() => {
|
|
|
+ tableRef.value.refresh(true)
|
|
|
+ })
|
|
|
+ .finally(() => {
|
|
|
+ submitLoading.value = false
|
|
|
+ })
|
|
|
+ },
|
|
|
+ onCancel() {}
|
|
|
+ })
|
|
|
+ }
|
|
|
+
|
|
|
+ // 批量删除
|
|
|
+ const deleteBatchBizAppointmentRecord = (params) => {
|
|
|
+ bizAppointmentRecordApi.bizAppointmentRecordDelete(params).then(() => {
|
|
|
+ tableRef.value.clearRefreshSelected()
|
|
|
+ })
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+ //导出
|
|
|
+ const exportTotal = () => {
|
|
|
+ const searchFormParam = cloneDeep(searchFormState.value)
|
|
|
+ bizAppointmentRecordApi.exportRecord(Object.assign(searchFormParam)).then((res)=>{
|
|
|
+ downloadUtil.resultDownload(res)
|
|
|
+ })
|
|
|
+ }
|
|
|
+</script>
|
|
|
+
|
|
|
+<style lang="less" scoped>
|
|
|
+/** 表头居中 */
|
|
|
+:deep .ant-table-thead > tr > th {
|
|
|
+ text-align: center;
|
|
|
+}
|
|
|
+
|
|
|
+.time-list {
|
|
|
+ -webkit-text-size-adjust: none;
|
|
|
+ font-size: 13px;
|
|
|
+ display: flex;
|
|
|
+ flex-direction: column;
|
|
|
+
|
|
|
+ p {
|
|
|
+ white-space: nowrap;
|
|
|
+ span {
|
|
|
+ display: inline-block;
|
|
|
+ font-weight: 600;
|
|
|
+ height: 16px;
|
|
|
+ line-height: 16px;
|
|
|
+ border-radius: 5px;
|
|
|
+ text-align: center;
|
|
|
+ margin-right: 2px;
|
|
|
+ padding: 0 5px;
|
|
|
+ }
|
|
|
+ .blueTag {
|
|
|
+ color: #1890ff;
|
|
|
+ background: rgba(24, 144, 255, 0.1);
|
|
|
+ }
|
|
|
+ .orangeTag {
|
|
|
+ color: #ff7c18;
|
|
|
+ background: rgba(24, 144, 255, 0.1);
|
|
|
+ }
|
|
|
+ .greenTag {
|
|
|
+ color: rgb(82, 196, 26);
|
|
|
+ background: rgba(82, 196, 26, 0.1);
|
|
|
+ }
|
|
|
+ .purpleTag {
|
|
|
+ color: rgb(77, 26, 196);
|
|
|
+ background: rgba(82, 196, 26, 0.1);
|
|
|
+ }
|
|
|
+ .showNum {
|
|
|
+ display: inline-block;
|
|
|
+ height: 16px;
|
|
|
+ line-height: 16px;
|
|
|
+ width: 45px;
|
|
|
+ border-radius: 5px;
|
|
|
+ text-align: center;
|
|
|
+ margin-right: 2px;
|
|
|
+ text-align: right;
|
|
|
+ }
|
|
|
+ }
|
|
|
+}
|
|
|
+</style>
|