|
@@ -0,0 +1,257 @@
|
|
|
+<template>
|
|
|
+ <div class="snapshot-center-mark-log-container layout-padding">
|
|
|
+ <div class="layout-padding-auto layout-padding-view pd20">
|
|
|
+ <vxe-grid v-bind="gridOptions" ref="gridRef">
|
|
|
+ <template #form>
|
|
|
+ <el-form :model="state.queryParams" ref="ruleFormRef" inline @submit.native.prevent :disabled="gridOptions.loading">
|
|
|
+ <el-form-item label="工单编码" prop="No">
|
|
|
+ <el-input v-model="state.queryParams.No" placeholder="请填写工单编码" clearable @keyup.enter="handleQuery" class="keyword-input" />
|
|
|
+ </el-form-item>
|
|
|
+ <el-form-item label="工单标题" prop="Title">
|
|
|
+ <el-input v-model="state.queryParams.Title" placeholder="请填写工单标题" clearable @keyup.enter="handleQuery" class="keyword-input" />
|
|
|
+ </el-form-item>
|
|
|
+ <el-form-item>
|
|
|
+ <el-button type="primary" @click="handleQuery" :loading="state.loading"> <SvgIcon name="ele-Search" class="mr5" />查询 </el-button>
|
|
|
+ <el-button @click="drawer = true" class="default-button"> <SvgIcon name="ele-Search" class="mr5" />更多查询</el-button>
|
|
|
+ </el-form-item>
|
|
|
+ </el-form>
|
|
|
+ </template>
|
|
|
+ <template #statusTxt="{ row }">
|
|
|
+ <el-text type="danger" tag="b" v-if="[1, 2, 3, 9, 101, 102, 103, 104, 105, 200].includes(row.status)">{{ row.statusTxt }}</el-text>
|
|
|
+ <span v-else>{{ row.statusTxt }}</span>
|
|
|
+ </template>
|
|
|
+ <template #order_detail="{ row }">
|
|
|
+ <order-detail :order="{ id: row.orderId }" @updateList="queryList">{{ row.title }}</order-detail>
|
|
|
+ </template>
|
|
|
+ <template #pager>
|
|
|
+ <pagination
|
|
|
+ @pagination="queryList"
|
|
|
+ :total="state.total"
|
|
|
+ v-model:current-page="state.queryParams.PageIndex"
|
|
|
+ v-model:page-size="state.queryParams.PageSize"
|
|
|
+ :disabled="state.loading"
|
|
|
+ />
|
|
|
+ </template>
|
|
|
+ </vxe-grid>
|
|
|
+ </div>
|
|
|
+ <!-- 更多查询 -->
|
|
|
+ <el-drawer v-model="drawer" title="更多查询" size="500px">
|
|
|
+ <el-form :model="state.queryParams" ref="drawerRuleFormRef" @submit.native.prevent label-width="100px">
|
|
|
+ <el-form-item label="联系电话" prop="Contact">
|
|
|
+ <el-input
|
|
|
+ v-model="state.queryParams.Contact"
|
|
|
+ placeholder="请填写联系电话"
|
|
|
+ clearable
|
|
|
+ @keyup.enter="handleQuery"
|
|
|
+ class="keyword-input"
|
|
|
+ />
|
|
|
+ </el-form-item>
|
|
|
+ <el-form-item label="来电人" prop="FromName">
|
|
|
+ <el-input v-model="state.queryParams.FromName" placeholder="请填写来电人" clearable @keyup.enter="handleQuery" />
|
|
|
+ </el-form-item>
|
|
|
+ <el-form-item label="标注人" prop="SignName">
|
|
|
+ <el-input v-model="state.queryParams.SignName" placeholder="请填写标注人" clearable @keyup.enter="handleQuery" />
|
|
|
+ </el-form-item>
|
|
|
+ <el-form-item label="标注类型" prop="Label">
|
|
|
+ <el-input v-model="state.queryParams.Label" placeholder="请填写标注类型" clearable @keyup.enter="handleQuery" />
|
|
|
+ </el-form-item>
|
|
|
+ <el-form-item label="标注时间" prop="bzTime">
|
|
|
+ <el-date-picker
|
|
|
+ v-model="state.queryParams.bzTime"
|
|
|
+ type="datetimerange"
|
|
|
+ unlink-panels
|
|
|
+ range-separator="至"
|
|
|
+ start-placeholder="开始时间"
|
|
|
+ end-placeholder="结束时间"
|
|
|
+ :shortcuts="shortcuts"
|
|
|
+ @change="handleQuery"
|
|
|
+ value-format="YYYY-MM-DD[T]HH:mm:ss"
|
|
|
+ :default-time="defaultTimeStartEnd"
|
|
|
+ />
|
|
|
+ </el-form-item>
|
|
|
+ </el-form>
|
|
|
+ <template #footer>
|
|
|
+ <el-button type="primary" @click="handleQuery" :loading="state.loading"> <SvgIcon name="ele-Search" class="mr5" />查询 </el-button>
|
|
|
+ <el-button @click="resetQuery(drawerRuleFormRef)" class="default-button"> <SvgIcon name="ele-Refresh" class="mr5" />重置 </el-button>
|
|
|
+ </template>
|
|
|
+ </el-drawer>
|
|
|
+ </div>
|
|
|
+</template>
|
|
|
+
|
|
|
+<script lang="tsx" setup name="snapshotCenterMarkLog">
|
|
|
+import { defineAsyncComponent, onMounted, reactive, ref } from 'vue';
|
|
|
+import { FormInstance } from 'element-plus';
|
|
|
+import { getOrderMarkList } from '@/api/snapshot/handle';
|
|
|
+import Other from '@/utils/other';
|
|
|
+import { defaultTimeStartEnd, shortcuts } from '@/utils/constants';
|
|
|
+import { centerMarkListLog } from '@/api/snapshot/centerMark';
|
|
|
+
|
|
|
+// 引入组件
|
|
|
+const pagination = defineAsyncComponent(() => import('@/components/ProTable/components/Pagination.vue')); // 分页
|
|
|
+const OrderDetail = defineAsyncComponent(() => import('@/components/OrderDetail/index.vue')); // 工单详情
|
|
|
+
|
|
|
+// 定义变量内容
|
|
|
+const state = reactive<any>({
|
|
|
+ loading: false,
|
|
|
+ queryParams: {
|
|
|
+ // 查询参数
|
|
|
+ PageIndex: 1,
|
|
|
+ PageSize: 20,
|
|
|
+ No: null, // 工单编码
|
|
|
+ Title: null, // 工单标题
|
|
|
+ Contact:null,
|
|
|
+ FromName:null,
|
|
|
+ SignName:null,
|
|
|
+ Label:null,
|
|
|
+ bzTime:[],
|
|
|
+ BeginSignTime:null,
|
|
|
+ EndSignTime:null,
|
|
|
+ },
|
|
|
+ total: 0, // 总条数
|
|
|
+});
|
|
|
+
|
|
|
+const gridOptions = reactive<any>({
|
|
|
+ loading: false,
|
|
|
+ border: true,
|
|
|
+ showOverflow: true,
|
|
|
+ columnConfig: {
|
|
|
+ resizable: true,
|
|
|
+ },
|
|
|
+ scrollY: {
|
|
|
+ enabled: true,
|
|
|
+ gt: 100,
|
|
|
+ },
|
|
|
+ toolbarConfig: {
|
|
|
+ zoom: true,
|
|
|
+ custom: true,
|
|
|
+ refresh: {
|
|
|
+ queryMethod: () => {
|
|
|
+ handleQuery();
|
|
|
+ },
|
|
|
+ },
|
|
|
+ },
|
|
|
+ customConfig: {
|
|
|
+ storage: true,
|
|
|
+ },
|
|
|
+ id: 'snapshotReSendList',
|
|
|
+ rowConfig: { isHover: true, height: 30, isCurrent: true, useKey: true },
|
|
|
+ height: 'auto',
|
|
|
+ columns: [
|
|
|
+ {
|
|
|
+ field: 'statusTxt',
|
|
|
+ title: '工单状态',
|
|
|
+ width: 110,
|
|
|
+ slots: {
|
|
|
+ default: 'statusTxt',
|
|
|
+ },
|
|
|
+ },
|
|
|
+ {
|
|
|
+ field: 'no',
|
|
|
+ title: '来源渠道',
|
|
|
+ width: 110,
|
|
|
+ },
|
|
|
+ {
|
|
|
+ field: 'no',
|
|
|
+ title: '工单编码',
|
|
|
+ width: 140,
|
|
|
+ },
|
|
|
+ {
|
|
|
+ field: 'title',
|
|
|
+ title: '工单标题',
|
|
|
+ slots: { default: 'order_detail' },
|
|
|
+ minWidth: 200,
|
|
|
+ },
|
|
|
+ {
|
|
|
+ field: 'fromName',
|
|
|
+ title: '来电人姓名',
|
|
|
+ width: 120,
|
|
|
+ },
|
|
|
+ {
|
|
|
+ field: 'fromPhone',
|
|
|
+ title: '来电人电话',
|
|
|
+ width: 150,
|
|
|
+ },
|
|
|
+ {
|
|
|
+ field: 'county',
|
|
|
+ title: '区域',
|
|
|
+ width: 150,
|
|
|
+ },
|
|
|
+ {
|
|
|
+ field: 'industryName',
|
|
|
+ title: '行业',
|
|
|
+ width: 150,
|
|
|
+ },
|
|
|
+ {
|
|
|
+ field: 'creationTime',
|
|
|
+ title: '受理时间',
|
|
|
+ formatter: 'formatDate',
|
|
|
+ width: 160,
|
|
|
+ },
|
|
|
+ {
|
|
|
+ field: 'signName',
|
|
|
+ title: '标注人',
|
|
|
+ width: 120,
|
|
|
+ },
|
|
|
+ {
|
|
|
+ field: 'labelName',
|
|
|
+ title: '标注类型',
|
|
|
+ minWidth: 200,
|
|
|
+ },
|
|
|
+ {
|
|
|
+ field: 'signTime',
|
|
|
+ title: '标注时间',
|
|
|
+ formatter: 'formatDate',
|
|
|
+ width: 160,
|
|
|
+ },
|
|
|
+ ],
|
|
|
+ data: [],
|
|
|
+});
|
|
|
+/** 搜索按钮操作 节流操作 */
|
|
|
+const handleQuery = () => {
|
|
|
+ state.queryParams.PageIndex = 1;
|
|
|
+ queryList();
|
|
|
+};
|
|
|
+// 获取列表
|
|
|
+const requestParams = ref<EmptyObjectType>({});
|
|
|
+const queryList = () => {
|
|
|
+ state.loading = true;
|
|
|
+ gridOptions.loading = true;
|
|
|
+ requestParams.value.BeginSignTime = state.queryParams.bzTime === null ? null : state.queryParams.bzTime[0]; // 标注时间
|
|
|
+ requestParams.value.EndSignTime = state.queryParams.bzTime === null ? null : state.queryParams.bzTime[1];
|
|
|
+ Reflect.deleteProperty(requestParams.value, 'bzTime'); // 删除无用的参数
|
|
|
+ requestParams.value = Other.deepClone(state.queryParams);
|
|
|
+ centerMarkListLog(requestParams.value)
|
|
|
+ .then((res) => {
|
|
|
+ state.loading = false;
|
|
|
+ gridOptions.data = res.result.items ?? [];
|
|
|
+ state.total = res.result.total ?? 0;
|
|
|
+ gridOptions.loading = false;
|
|
|
+ })
|
|
|
+ .finally(() => {
|
|
|
+ state.loading = false;
|
|
|
+ gridOptions.loading = false;
|
|
|
+ });
|
|
|
+};
|
|
|
+// 重置表单
|
|
|
+const drawerRuleFormRef = ref<RefType>();
|
|
|
+const ruleFormRef = ref<any>(null); // 表单ref
|
|
|
+const drawer = ref(false);
|
|
|
+const resetQuery = (formEl: FormInstance | undefined) => {
|
|
|
+ if (!formEl) return;
|
|
|
+ formEl.resetFields();
|
|
|
+ ruleFormRef.value?.resetFields();
|
|
|
+ queryList();
|
|
|
+};
|
|
|
+
|
|
|
+// 修改u
|
|
|
+const recordEditRef = ref<RefType>();
|
|
|
+const onEdit = (row: any) => {
|
|
|
+ recordEditRef.value.openDialog(row);
|
|
|
+};
|
|
|
+// 页面加载时
|
|
|
+onMounted(() => {
|
|
|
+ queryList();
|
|
|
+});
|
|
|
+</script>
|
|
|
+
|
|
|
+layout/routerView/parer
|