123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507 |
- <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="driverMobile">
- <a-input v-model:value="searchFormState.driverMobile" 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 === 'carInfo'">
- <div class="time-list">
- <p>车牌号:{{ record.licenseNumber }}</p>
- <p style="margin-bottom: 0">车轴数:{{ record.axleNumber + '轴' }}</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.driverMobile }}</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 === 'axleNumber'">
- {{record.axleNumber+'轴'}}
- </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 @click="showModal(record)" v-if="record.status!='1'&& record.status!='2'">二维码</a>
- <a-divider type="vertical" v-if="record.status!='1'&& record.status!='2'"/>
- <a-space>
- <a-dropdown>
- <a class="ant-dropdown-link">
- 更多
- <DownOutlined />
- </a>
- <template #overlay>
- <a-menu>
- <a-menu-item>
- <a @click="detailRef.onOpen(record)">详情</a>
- </a-menu-item>
- <a-menu-item v-if="hasPerm('bizAppointmentAudit') && (record.status == '1')">
- <a style="color: #ffaa00" @click="reviewRef.showModal(record.id)">审核</a>
- </a-menu-item>
- <a-menu-item v-if="hasPerm('bizAppointmentRecordEdit') && (record.status == '1' || record.status == '2')">
- <a style="color:blue" @click="formRef.onOpen(record)" >编辑</a>
- </a-menu-item>
- <a-menu-item v-if="hasPerm('bizAppointmentRecordDelete') && (record.status == '1' || record.status == '2')">
- <a style="color:red" type="link" danger size="small" @click="deleteConfig(record)">删除</a>
- </a-menu-item>
- </a-menu>
- </template>
- </a-dropdown>
- </a-space>
- </template>
- </template>
- </s-table>
- </a-card>
- <Form ref="formRef" @successful="tableRef.refresh()" />
- <Review ref="reviewRef" @successful="tableRef.refresh(true)" />
- <Detail ref="detailRef" @successful="tableRef.refresh()" />
- <a-modal v-model:visible="open" title="二维码" width="600px" style="height: 700px">
- <div id="qrcode" style="text-align: center; margin: 15px 5px 15px 5px">
- <a-row>
- <a-col :span="13" id="colFlag">
- <div style="margin-top:10px;font-size:16px;">
- <p id="projectNameFlag">订单名称:{{nowRecord.orderName}}</p>
- <p id="projectCodeFlag">订单编码:{{ nowRecord.orderNumber }}</p>
- <p id="projectCodeFlag">客户名称:{{ nowRecord.customerName }}</p>
- <p id="projectCodeFlag">货品名称:{{ nowRecord.goodsName }}</p>
- <p id="projectCodeFlag">司机姓名:{{ nowRecord.driverName }}</p>
- <p id="projectCodeFlag">预约状态:{{ $TOOL.dictTypeData('appointment_status', nowRecord.status) }}</p>
- </div>
- </a-col>
- <a-col :span="11">
- <a-image width="250" height="100%" :src="qrCodeUrl.codeUrl"></a-image>
- </a-col>
- </a-row>
- </div>
- <template #footer>
- <a-button @click="closeQrCode">关闭</a-button>
- <a-button type="primary" @click="downloadFile">下载</a-button>
- </template>
- </a-modal>
- </template>
- <script setup name="bizappointmentrecord">
- import { cloneDeep } from 'lodash-es'
- import Form from './form.vue'
- import Detail from './detail.vue'
- import bizAppointmentRecordApi from '@/api/biz/bizAppointmentRecordApi'
- import {ExclamationCircleOutlined} from '@ant-design/icons-vue';
- import {Modal} from 'ant-design-vue';
- import {createVNode} from 'vue';
- import Review from './review.vue'
- import tool from '@/utils/tool'
- import QRCode from 'qrcode'
- import html2canvas from 'html2canvas'
- import downloadUtil from '@/utils/downloadUtil'
- const submitLoading = ref(false)
- const tableRef = ref()
- const formRef = ref()
- const reviewRef = ref()
- const detailRef = ref()
- const toolConfig = { refresh: true, height: true, columnSetting: true, striped: false }
- const nowRecord = ref()
- //查询数据
- const searchFormState = ref({})
- 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:150,
- align: 'center'
- },
- {
- title: '提货开始时间',
- dataIndex: 'beginTime',
- align:'center',
- width:180
- },
- {
- title: '提货结束时间',
- dataIndex: 'endTime',
- align:'center',
- width:180
- },
- {
- title: '客户信息',
- dataIndex: 'customerInfo',
- align:'center',
- width:180
- },
- {
- title: '货品信息',
- dataIndex: 'goodsInfo',
- width:160
- },
- {
- title: '司机信息',
- dataIndex: 'driverInfo',
- width: 160
- },
- {
- title: '状态',
- dataIndex: 'status',
- align: 'center',
- width:150
- },
- ]
- // 操作栏通过权限判断是否显示
- columns.push({
- title: '操作',
- dataIndex: 'action',
- align: 'center',
- width: 150,
- })
- 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 deleteBatchBizAppointmentRecord = (params) => {
- bizAppointmentRecordApi.bizAppointmentRecordDelete(params).then(() => {
- tableRef.value.clearRefreshSelected()
- })
- }
- //二维码
- const open = ref(false);
- const qrCodeUrl = ref({})
- const showModal = (record) => {
- nowRecord.value = record
- open.value = true;
- getQrCode(record)
- };
- const getQrCode = (record) => {
- //QRCode.toDataURL("id:"+record.id+"saleCode:"+record.saleCode, {
- let param = {
- id:record.id,
- licenseNumber:record.licenseNumber
- }
- QRCode.toDataURL(JSON.stringify(param), {
- errorCorrectionLevel: 'H',
- margin: 1,
- height: 206,
- width: 206,
- type: '10',
- scal: 177,
- color: {
- dark: '#000' // 二维码背景颜色
- },
- rendererOpts: {
- quality: 0.9
- }
- })
- .then((url) => {
- qrCodeUrl.value.codeUrl = url
- })
- .catch((err) => {
- console.error(err)
- })
- }
- const closeQrCode = () => {
- open.value = false;
- }
- // 下载二维码
- const downloadFile = () => {
- const qrcodeDiv = document.getElementById('qrcode');
- html2canvas(qrcodeDiv, {
- logging: false,
- allowTaint: true,
- scale: window.devicePixelRatio,
- scrollY: 0,
- scrollX: 0,
- useCORS: true,
- backgroundColor: '#ffffff'
- })
- .then(function (canvas) {
- const a = window.document.createElement('a')
- a.href = canvas.toDataURL('image/png')
- a.download = '二维码'
- a.click()
- this.$message.success('正在进行下载保存')
- })
- .catch((err) => {
- console.log(err)
- })
- }
- //导出
- 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>
|