|
@@ -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 = () => {
|