|
@@ -4,8 +4,8 @@
|
|
|
<vxe-grid v-bind="gridOptions" v-on="gridEvents" ref="gridRef">
|
|
|
<template #form>
|
|
|
<el-form :model="state.queryParams" ref="ruleFormRef" @submit.native.prevent inline :disabled="state.loading">
|
|
|
- <el-form-item label="工单标题" prop="Keyword">
|
|
|
- <el-input v-model.trim="state.queryParams.Keyword" placeholder="工单标题" clearable @keyup.enter="handleQuery" class="keyword-input" />
|
|
|
+ <el-form-item label="工单标题" prop="Title">
|
|
|
+ <el-input v-model.trim="state.queryParams.Title" placeholder="工单标题" clearable @keyup.enter="handleQuery" class="keyword-input" />
|
|
|
</el-form-item>
|
|
|
<el-form-item label="工单编码" prop="No">
|
|
|
<el-input v-model.trim="state.queryParams.No" placeholder="工单编码" clearable @keyup.enter="handleQuery" class="keyword-input" />
|
|
@@ -171,12 +171,9 @@
|
|
|
</div>
|
|
|
</template>
|
|
|
<script setup lang="tsx" name="snapshotStatisticsCitizenAdd">
|
|
|
-import { defineAsyncComponent, onMounted, reactive, ref, computed } from 'vue';
|
|
|
+import { defineAsyncComponent, onMounted, reactive, ref } from 'vue';
|
|
|
import type { FormInstance } from 'element-plus';
|
|
|
-import { ElMessage, ElMessageBox } from 'element-plus';
|
|
|
import { defaultTimeStartEnd, shortcuts } from '@/utils/constants';
|
|
|
-import { addObserve } from '@/api/query/observe';
|
|
|
-import { exportAssignment } from '@/utils/tools';
|
|
|
import Other from '@/utils/other';
|
|
|
import { getSSPAllBaseData, getSSPAllOrder, getSSPAllOrderExport } from '@/api/snapshot/statistics';
|
|
|
|
|
@@ -190,6 +187,7 @@ const state = reactive<any>({
|
|
|
PageSize: 20, // 每页条数
|
|
|
// 查询条件
|
|
|
No: null, // 工单编码
|
|
|
+ Title: null, // 工单标题
|
|
|
ProvinceNo: null, // 省本地编码
|
|
|
ActualHandlerName: null, // 接办人
|
|
|
IsScreen: null, // 是否甄别
|