|
@@ -32,7 +32,6 @@
|
|
|
<template #tools> </template>
|
|
|
</vxe-toolbar>
|
|
|
<div style="overflow: hidden; width: 100%; height: 100%; flex: 1">
|
|
|
- <!-- :export-config="{modes: ['current', 'all'],types:['xlsx'],filename:'测试'}"-->
|
|
|
<vxe-table
|
|
|
border
|
|
|
:loading="state.loading"
|
|
@@ -57,6 +56,7 @@
|
|
|
<span :class="'overdue-status-' + row.expiredStatus" :title="row.expiredStatusText"></span>
|
|
|
</template>
|
|
|
</vxe-column>
|
|
|
+ <vxe-column field="acceptorName" title="受理人" width="120"></vxe-column>
|
|
|
<vxe-column field="no" title="工单编码" width="140"></vxe-column>
|
|
|
<vxe-column field="isProvinceText" title="省/市工单" width="90"></vxe-column>
|
|
|
<vxe-column field="isUrgentText" title="是否紧急" width="90">
|
|
@@ -94,7 +94,6 @@
|
|
|
<vxe-column field="sourceChannel" title="来源渠道" width="100"></vxe-column>
|
|
|
<vxe-column field="hotspotName" title="热点分类" width="150"></vxe-column>
|
|
|
<vxe-column field="sensitive" title="敏感词" width="150"></vxe-column>
|
|
|
- <vxe-column field="acceptorName" title="受理人" width="120"></vxe-column>
|
|
|
<vxe-column field="reTransactNum" title="重办次数" width="90"></vxe-column>
|
|
|
<vxe-column title="操作" fixed="right" width="130" align="center">
|
|
|
<template #default="{ row }">
|
|
@@ -266,7 +265,7 @@ const handleQuery = () => {
|
|
|
/** 获取列表 */
|
|
|
const requestParams = ref<EmptyObjectType>({});
|
|
|
const queryList = () => {
|
|
|
- return new Promise((resolve,reject) => {
|
|
|
+ return new Promise((resolve, reject) => {
|
|
|
requestParams.value = other.deepClone(state.queryParams);
|
|
|
requestParams.value.StCreationTime = state.queryParams.scTime === null ? null : state.queryParams.scTime[0];
|
|
|
requestParams.value.EndCreationTime = state.queryParams.scTime === null ? null : state.queryParams.scTime[1];
|
|
@@ -286,7 +285,7 @@ const queryList = () => {
|
|
|
state.loading = false;
|
|
|
reject();
|
|
|
});
|
|
|
- })
|
|
|
+ });
|
|
|
};
|
|
|
/** 重置按钮操作 */
|
|
|
const drawerRuleFormRef = ref();
|
|
@@ -382,9 +381,9 @@ const isChecked = computed(() => {
|
|
|
});
|
|
|
const toolbarRef = ref<RefType>();
|
|
|
onMounted(() => {
|
|
|
- queryList().then(()=>{
|
|
|
+ queryList().then(() => {
|
|
|
getBaseData();
|
|
|
- })
|
|
|
+ });
|
|
|
if (tableRef.value && toolbarRef.value) {
|
|
|
tableRef.value.connect(toolbarRef.value);
|
|
|
}
|
|
@@ -398,4 +397,4 @@ onActivated(() => {
|
|
|
onBeforeUnmount(() => {
|
|
|
mittBus.off('clearCachePage');
|
|
|
});
|
|
|
-</script>
|
|
|
+</script>
|