|
@@ -86,7 +86,7 @@ const ruleFormRef = ref<RefType>(); // 表单ref
|
|
|
const proTableRef = ref<RefType>(); // 表格ref
|
|
|
// 表格配置项
|
|
|
const columns = ref<any[]>([
|
|
|
- { prop: 'expiredStatus', label: '超期状态', align: 'center',fixed: 'left',width: 80 },
|
|
|
+ { prop: 'expiredStatus', label: '超期状态', align: 'center', fixed: 'left', width: 80 },
|
|
|
{ prop: 'order.no', label: '工单编码', width: 150 },
|
|
|
{ prop: 'isProvince', label: '省/市工单', width: 100 },
|
|
|
{ prop: 'title', label: '工单标题', width: 300 },
|
|
@@ -130,6 +130,7 @@ const columns = ref<any[]>([
|
|
|
{ prop: 'creatorName', label: '甄别申请人', width: 120 },
|
|
|
{ prop: 'creatorOrgName', label: '甄别申请部门', width: 150 },
|
|
|
{ prop: 'typeDicName', label: '甄别申请类型', width: 120 },
|
|
|
+ { prop: 'typeDicName', label: '发起甄别耗时', width: 120 },
|
|
|
{ prop: 'content', label: '甄别申请原因', width: 200 },
|
|
|
{ prop: 'operation', label: '操作', fixed: 'right', width: 160, align: 'center' },
|
|
|
]);
|
|
@@ -159,7 +160,7 @@ const handleTimeChange = (val: string[], startKey: string, endKey: string) => {
|
|
|
state.queryParams[startKey] = null;
|
|
|
state.queryParams[endKey] = null;
|
|
|
}
|
|
|
- handleQuery();
|
|
|
+ handleQuery();
|
|
|
};
|
|
|
// 受理时间
|
|
|
const timeStartChangeCr = (val: string[]) => {
|
|
@@ -173,8 +174,8 @@ const getBaseData = async () => {
|
|
|
};
|
|
|
// 手动查询,将页码设置为1
|
|
|
const handleQuery = () => {
|
|
|
- state.queryParams.PageIndex = 1;
|
|
|
- queryList();
|
|
|
+ state.queryParams.PageIndex = 1;
|
|
|
+ queryList();
|
|
|
};
|
|
|
/** 获取列表 */
|
|
|
const queryList = () => {
|
|
@@ -208,7 +209,7 @@ const queryList = () => {
|
|
|
.catch(() => {
|
|
|
state.loading = false;
|
|
|
});
|
|
|
-}
|
|
|
+};
|
|
|
/** 重置按钮操作 */
|
|
|
const resetQuery = (formEl: FormInstance | undefined) => {
|
|
|
if (!formEl) return;
|
|
@@ -216,7 +217,7 @@ const resetQuery = (formEl: FormInstance | undefined) => {
|
|
|
state.queryParams.CreationTimeStart = null;
|
|
|
state.queryParams.CreationTimeEnd = null;
|
|
|
queryList();
|
|
|
-}
|
|
|
+};
|
|
|
// 导出
|
|
|
const onExport = () => {
|
|
|
console.log('导出');
|