소스 검색

reactor:发起重办和发起特提字段调整;

zhangchong 9 달 전
부모
커밋
10ebd07065
1개의 변경된 파일4개의 추가작업 그리고 4개의 파일을 삭제
  1. 4 4
      src/views/statistics/order/acceptType.vue

+ 4 - 4
src/views/statistics/order/acceptType.vue

@@ -86,7 +86,7 @@ const ruleFormRef = ref<RefType>(); // 表单ref
 const state = reactive<any>({
 	queryParams: {
 		// 查询条件
-    TypeId: '', // 关键词
+    TypeId: 0, // 关键词
     Gateway:null,
 		crTime: defaultDate, //
 		StartTime: null,
@@ -98,9 +98,9 @@ const state = reactive<any>({
 	callForwardingSource: [],
 });
 const identityTypeOptions = [
-  { key: '全部', value: '' },
-  { key: '市民', value: '1' },
-  { key: '企业', value: '2' },
+  { key: '全部', value: 0 },
+  { key: '市民', value: 1 },
+  { key: '企业', value: 2 },
 ];
 /** 搜索按钮操作 */
 const handleQuery = () => {