|
|
|
@ -4,8 +4,8 @@ |
|
|
|
@contextmenu.prevent="onContextmenu"> |
|
|
|
<el-table :data="patientRegister.prList" border |
|
|
|
:height="window.pageHeight < 600 ? 172 : Math.floor((window.pageHeight - 342) * 2 / 3)" highlight-current-row |
|
|
|
@row-click="rowick" size="small" @selection-change="handleSelectionChange" @cell-contextmenu="onCellRightClick" |
|
|
|
ref="info" @select="shiftSelect" :row-class-name="handleRowClassName"> |
|
|
|
@row-click="rowClick" size="small" @selection-change="handleSelectionChange" @cell-contextmenu="onCellRightClick" |
|
|
|
ref="info" :row-class-name="handleRowClassName" > |
|
|
|
<el-table-column type="selection" width="40"> |
|
|
|
</el-table-column> |
|
|
|
<el-table-column prop="completeFlag" label="体检进度"> |
|
|
|
@ -328,7 +328,6 @@ export default { |
|
|
|
return { |
|
|
|
startPoint: -1,// 多选起点 -1 表示选择 |
|
|
|
endPoint: -1,// 多选终点 -1 表示选择 |
|
|
|
pin: false,// 是否按住,默认不按住 |
|
|
|
|
|
|
|
|
|
|
|
multipleSelection: [], //选中的数据列表 |
|
|
|
@ -367,32 +366,12 @@ export default { |
|
|
|
|
|
|
|
|
|
|
|
created() { |
|
|
|
|
|
|
|
|
|
|
|
}, |
|
|
|
|
|
|
|
//挂载完成 |
|
|
|
mounted() { |
|
|
|
this.quickAsb = this.dict.asbItemAll; |
|
|
|
|
|
|
|
// 监听keydown:获取键盘按住事件,code返回按住的键信息 |
|
|
|
window.addEventListener('keydown', code => { |
|
|
|
// 判断是否按住了shift键(左右都包括)key: "Shift" |
|
|
|
if (code.key == "Shift" && code.shiftKey) { |
|
|
|
this.pin = true;// 标记按住了shift键 |
|
|
|
} |
|
|
|
console.log('this.pin', this.pin) |
|
|
|
}); |
|
|
|
// 监听keyup:获取键盘松开事件,code返回按住的键信息 |
|
|
|
window.addEventListener('keyup', code => { |
|
|
|
// 判断是否松开了shift键(左右都包括),以为之前已经按下了code.shiftKey已经是true |
|
|
|
if (code.key == "Shift") { |
|
|
|
this.pin = false;// 标记松开了shift键 |
|
|
|
// this.startPoint = undefined;// 清空多选起点 |
|
|
|
// this.endPoint = undefined;// 清空多选终点 |
|
|
|
} |
|
|
|
console.log('this.pin', this.pin) |
|
|
|
}); |
|
|
|
|
|
|
|
this.quickAsb = this.dict.asbItemAll; |
|
|
|
}, |
|
|
|
computed: { |
|
|
|
...mapState(["window", "dict", "patientRegister", "customerOrg"]), |
|
|
|
@ -400,6 +379,7 @@ export default { |
|
|
|
methods: { |
|
|
|
...mapActions(["getCustomerOrgGroup", "getPatientRegisterAbs"]), |
|
|
|
|
|
|
|
|
|
|
|
handleRowClassName({ row, rowIndex }) { |
|
|
|
// highLightBg 为 'selected'的高亮 |
|
|
|
console.log(rowIndex, row) |
|
|
|
@ -504,60 +484,9 @@ export default { |
|
|
|
}); |
|
|
|
} |
|
|
|
this.multipleSelection = JSON.parse(JSON.stringify(rows)); |
|
|
|
|
|
|
|
|
|
|
|
}, |
|
|
|
|
|
|
|
// 按住shift多选 |
|
|
|
shiftSelect(rows, row) { |
|
|
|
console.log('rows, row', rows, row) |
|
|
|
// 判断原来选择的数组长度selectDatas和现在的长度rows |
|
|
|
if (this.multipleSelection.length > rows.length) { |
|
|
|
// 原来的长,说明取消勾选了,把当前条取消高亮 |
|
|
|
row.highLightBg = ''; |
|
|
|
} else { |
|
|
|
// 现在的长,说明多勾选了,把当前条高亮 |
|
|
|
row.highLightBg = 'selected'; |
|
|
|
} |
|
|
|
// 判断是勾选的时候才会多选 |
|
|
|
if (rows.length < this.multipleSelection.length) { |
|
|
|
this.startPoint = undefined;// 清空多选起点 |
|
|
|
this.endPoint = undefined;// 清空多选终点 |
|
|
|
return; |
|
|
|
} |
|
|
|
// 判断此时有没有按住shift键 |
|
|
|
// 按住了则表示开始多选,没有则停止多选,清空起点终点. |
|
|
|
// 开始多选则判断之前是否有起点 |
|
|
|
// 有则当前的index标记为终点且勾选这之间的数据,勾选结束清空起点终点 |
|
|
|
// 没有则当前的index标记为起点 |
|
|
|
// 记录当前的index为多选起点 |
|
|
|
if (this.pin) { // 按住了shift键 |
|
|
|
if (this.startPoint || this.startPoint == 0) { // 之前有多选起点(第一条单独) |
|
|
|
this.endPoint = row.index;// 把当前项的index标记为多选终点 |
|
|
|
if (this.startPoint > this.endPoint) { // 如果起点大于终点,则替换否则保留,确保起点始终小于终点 |
|
|
|
let temp = this.startPoint; |
|
|
|
this.startPoint = this.endPoint; |
|
|
|
this.endPoint = temp; |
|
|
|
} |
|
|
|
// 避免和handleSelectionChange冲突导致返回的数据不准确 |
|
|
|
setTimeout(() => { |
|
|
|
// 勾选数据 |
|
|
|
for (let i = this.startPoint + 1; i < this.endPoint; i++) { |
|
|
|
this.$refs.info.toggleRowSelection(this.patientRegister.prList[i], true); |
|
|
|
} |
|
|
|
this.startPoint = undefined;// 清空多选起点 |
|
|
|
this.endPoint = undefined;// 清空多选终点 |
|
|
|
}, 100); |
|
|
|
} else { // 之前没有多选起点 |
|
|
|
this.startPoint = row.index;// 把当前项的index标记为多选起点 |
|
|
|
} |
|
|
|
} else { // 没按住shift键 |
|
|
|
this.startPoint = undefined;// 清空多选起点 |
|
|
|
this.endPoint = undefined;// 清空多选终点 |
|
|
|
} |
|
|
|
}, |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//获取单位分组 /api/app/customer-org-group/in-customer-org-id/3a0c0444-d7a0-871f-4074-19faf1655caf |
|
|
|
getCustomerOrgGroup(customerOrgld) { |
|
|
|
getapi(`/api/app/customer-org-group/in-customer-org-id/${customerOrgld}`) |
|
|
|
@ -570,7 +499,7 @@ export default { |
|
|
|
}, |
|
|
|
|
|
|
|
//点击体检次数行 |
|
|
|
rowick(row) { |
|
|
|
rowClick(row) { |
|
|
|
this.patientRegister.photo = ""; //清除照片缓存 |
|
|
|
|
|
|
|
this.patientRegister.patientRegisterId = row.id; |
|
|
|
@ -583,21 +512,20 @@ export default { |
|
|
|
this.dict.asbItem = [...this.dict.asbItemAll] |
|
|
|
this.getPatientRegisterAbs(row.id); |
|
|
|
|
|
|
|
//清除所有选择 |
|
|
|
this.patientRegister.prList.forEach(e => { |
|
|
|
e.choosed = false; |
|
|
|
}); |
|
|
|
|
|
|
|
console.log('this.patientRegister.prList',this.window, this.patientRegister.prList) |
|
|
|
|
|
|
|
// 按住了shift键 |
|
|
|
if (this.window.shift) { |
|
|
|
//清除所有选择 |
|
|
|
this.patientRegister.prList.forEach(e => { |
|
|
|
e.choosed = false; |
|
|
|
return e |
|
|
|
}); |
|
|
|
|
|
|
|
if (!this.pin) { // 按住了shift键 |
|
|
|
this.patientRegister.prList[row.index].choosed = true; |
|
|
|
this.startPoint = row.index; |
|
|
|
console.log('this.patientRegister.prList',this.pin,this.startPoint, this.patientRegister.prList) |
|
|
|
return |
|
|
|
} else { |
|
|
|
if (this.startPoint == - 1) { |
|
|
|
this.patientRegister.prList[row.index].choosed = true; |
|
|
|
this.startPoint = row.index; |
|
|
|
console.log('this.patientRegister.prList',this.pin, this.startPoint, this.patientRegister.prList) |
|
|
|
return |
|
|
|
} |
|
|
|
|
|
|
|
@ -610,9 +538,25 @@ export default { |
|
|
|
this.patientRegister.prList[i].choosed = true |
|
|
|
} |
|
|
|
} |
|
|
|
return |
|
|
|
} |
|
|
|
console.log('this.patientRegister.prList',this.pin, this.startPoint, this.patientRegister.prList) |
|
|
|
|
|
|
|
// 按住了ctrl 键 |
|
|
|
if (this.window.ctrl) { |
|
|
|
this.patientRegister.prList[row.index].choosed = true; |
|
|
|
this.startPoint = row.index; |
|
|
|
return |
|
|
|
} |
|
|
|
|
|
|
|
// 未按住了ctrl 、shift 键 |
|
|
|
//清除所有选择 |
|
|
|
console.log('清除所有选择') |
|
|
|
this.patientRegister.prList.forEach(e => { |
|
|
|
e.choosed = false; |
|
|
|
return e |
|
|
|
}); |
|
|
|
this.patientRegister.prList[row.index].choosed = true; |
|
|
|
this.startPoint = row.index; |
|
|
|
}, |
|
|
|
|
|
|
|
//体检次数 相关操作 |
|
|
|
|