Sfoglia il codice sorgente

reactor:中国政府网发布调整;工单受理推送分类BUG修复;

zhangchong 7 mesi fa
parent
commit
04667f9557
2 ha cambiato i file con 7 aggiunte e 3 eliminazioni
  1. 2 2
      .env.development
  2. 5 1
      src/views/todo/center/Order-migration.vue

+ 2 - 2
.env.development

@@ -3,9 +3,9 @@ VITE_MODE_NAME=development
 # 防止部署多套系统到同一域名不同目录时,变量共用的问题 设置不同的前缀
 VITE_STORAGE_NAME=dev
 # 业务系统基础请求地址
-VITE_API_URL=http://110.188.24.28:50100
+VITE_API_URL=http://110.188.24.28:50300
 # 业务系统socket请求地址
-VITE_API_SOCKET_URL=http://110.188.24.28:50100/hubs/hotline
+VITE_API_SOCKET_URL=http://110.188.24.28:50300/hubs/hotline
 # 业务系统文件上传上传请求地址
 VITE_API_UPLOAD_URL=http://open.fs.12345lm.cn
 # 数据共享平台请求地址

+ 5 - 1
src/views/todo/center/Order-migration.vue

@@ -130,15 +130,19 @@ const handleQuery = () => {
 };
 /** 重置按钮操作 */
 const resetQuery = (formEl: FormInstance | undefined) => {
+	tableRadio.value = '';
 	if (!formEl) return;
 	formEl.resetFields();
 	queryList();
 };
-// 选择企业
+// 选择用户
 const handleSelectionChange = (row: any) => {
 	if (row) {
 		tableRadio.value = row.userId;
 		selectRow.value = row;
+	}else{
+		tableRadio.value = '';
+		selectRow.value = {};
 	}
 };
 let loading = ref<boolean>(false); // 加载状态