src/api/doctor/pacsCheck.js | ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史 | |
src/views/doctor/checkAll/index.vue | ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史 | |
src/views/doctor/inspectCheck/index.vue | ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史 | |
src/views/doctor/pacsCheck/index.vue | ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史 |
src/api/doctor/pacsCheck.js
@@ -24,7 +24,7 @@ // 同步接口 export function asyncPacs(data) { return request({ url: '/api/His/asyncPacs', url: '/api/His/newasyncPacs', method: 'post', data:data }) src/views/doctor/checkAll/index.vue
@@ -128,10 +128,7 @@ {{ tableAll.cusName }} </td> <td style="border: 1px solid #dfe6ec; border-collapse: collapse"> 性别: </td> <td style="border: 1px solid #dfe6ec; border-collapse: collapse"> {{ 性别:{{ tableAll.cusSex == 0 ? "男" : tableAll.cusSex == 1 @@ -139,6 +136,9 @@ : "未知" }} </td> <td style="border: 1px solid #dfe6ec; border-collapse: collapse"> 年龄:{{ tableAll.age }} </td> </tr> <tr style=" border: 1px solid #dfe6ec; src/views/doctor/inspectCheck/index.vue
@@ -455,7 +455,7 @@ }, handleSelectionChange(val) { console.log(val); // console.log(val); /* if (val.length > 1) { let del_row = val.shift(); this.$refs.tb.toggleRowSelection(del_row, false); //设置这一行取消选中 @@ -468,7 +468,7 @@ this.selectedFirstTable = val; console.log("当前选中的行数据:", this.selectedFirstTable); // this.fetchRightTableData(selectedRow); this.fetchRightTableData(val); } else { this.selectedFirstTable = null; this.checkList = []; src/views/doctor/pacsCheck/index.vue
@@ -365,24 +365,17 @@ }, handleSelectionChange(val) { console.log(val); /* console.log(val); if (val.length > 1) { let del_row = val.shift(); this.$refs.tb.toggleRowSelection(del_row, false); //设置这一行取消选中 } // console.log(val, 999); } */ if (val.length > 0) { const selectedRow = val[0]; // console.log(val[0], 555); /* if (!selectedRow.mzh) { this.$refs.tb.toggleRowSelection(selectedRow, false); this.$message.warning("当前行无有效门诊号,不能选中"); return; } */ // const selectedRow = val[0]; this.selectedFirstTable = selectedRow; console.log("当前选中的行数据:", this.selectedFirstTable); this.selectedFirstTable = val; // console.log("当前选中的行数据:", this.selectedFirstTable); const code = this.queryParams.tjNum; if (!code) { this.$message.warning("体检号不能为空!"); @@ -393,7 +386,6 @@ this.checkList = response.data; this.loading = false; }); // this.fetchRightTableData(selectedRow); } else { this.selectedFirstTable = null; this.checkList = []; @@ -479,10 +471,14 @@ tongbu(row) { this.$modal.loading("正在同步,请稍候..."); this.setTime(); // console.log(val, 66); this.selectedFirstTable.tjnum = this.queryParams.tjNum; console.log(this.selectedFirstTable,this.selectedSecondTable[0],455555); const requestData = { pacs: this.selectedFirstTable, // 左侧表格选中数据 pacs: this.selectedFirstTable.map((item) => ({ ...item, tjNum: this.queryParams.tjNum, })),// 左侧表格选中数据 tj: this.selectedSecondTable[0], // 右侧表格选中数据 };