diff --git a/src/App.vue b/src/App.vue index a3140d7..b17d6e4 100644 --- a/src/App.vue +++ b/src/App.vue @@ -62,9 +62,7 @@ color: rgb(31, 148, 96); } .elcard { - border-radius: 15px; - margin-left: -12px; - margin-top: -15px; + border-radius: 15px; } .commonbutton { width: 100px; diff --git a/src/assets/css/global_dialog.css b/src/assets/css/global_dialog.css new file mode 100644 index 0000000..6928d33 --- /dev/null +++ b/src/assets/css/global_dialog.css @@ -0,0 +1,36 @@ +/* 标题间距 */ +.el-dialog__header { + padding: 20px 10px 10px; /*原始: 20px 20px 10px;*/ +} + +.el-dialog__headerbtn { + right: 10px; /*原始: 20px ;*/ + /* + position: absolute; + top: 20px; + padding: 0; + background: 0 0; + border: none; + outline: 0; + cursor: pointer; + font-size: 16px; + */ +} + +.el-dialog__body { + padding: 10px 10px 20px; /*原始: 30px 20px;*/ + /* + color: #606266; + font-size: 14px; + word-break: break-all; + */ +} + + +.el-dialog__footer { + padding: 0px 10px 20px; /*原始: 10px 20px 20px*/ + /* + text-align: right; + box-sizing: border-box; + */ +} \ No newline at end of file diff --git a/src/components/patientRegister/PatientRegisterList.vue b/src/components/patientRegister/PatientRegisterList.vue index 7d9db94..957a3c1 100644 --- a/src/components/patientRegister/PatientRegisterList.vue +++ b/src/components/patientRegister/PatientRegisterList.vue @@ -790,7 +790,7 @@ export default { let customerOrgId = this.patientRegister.query.customerOrgId; if (!customerOrgId) { - alert("请选择单位或个人"); + this.$message.warning("请选择单位或个人"); return; } //console.log('customerOrgId',customerOrgId) @@ -811,7 +811,7 @@ export default { btnEdit() { if (!this.patientRegister.patientRegisterRd.id) { - alert("请选择要操作的记录"); + this.$message.warning("请选择要操作的记录"); return; } //this.patientRegister.patientRegisterTimes++; @@ -824,7 +824,7 @@ export default { //拍照 openCamera() { if (!this.patientRegister.patientRegisterId) { - alert("请选择要操作的记录"); + this.$message.warning("请选择要操作的记录"); return; } this.patientRegister.cameraVisble = true; @@ -834,7 +834,7 @@ export default { // /api/app/patient-register/many?PatientRegisterIds=3a0c2cac-f44c-f407-9504-c1fc5e80a159&PatientRegisterIds=3a0c2cb3-d10c-ed70-db6a-b835e75ce641 del() { if (this.multipleSelection.length < 1) { - alert("请先勾选要操作的记录"); + this.$message.warning("请先勾选要操作的记录"); return; } let patientRegisterIds = []; @@ -869,7 +869,7 @@ export default { //单个删除方式 delBak() { if (!this.patientRegister.patientRegisterId) { - alert("请选择要操作的记录"); + this.$message.warning("请选择要操作的记录"); return; } @@ -1048,7 +1048,7 @@ export default { btnGroupBatch() { let customerOrgId = this.patientRegister.query.customerOrgId; if (!customerOrgId) { - alert("请选择单位"); + this.$message.warning("请选择单位"); return; } //取消勾选,换成选择的方式 start @@ -1178,7 +1178,7 @@ export default { asbBatch() { let customerOrgId = this.patientRegister.query.customerOrgId; if (!customerOrgId) { - alert("请选择单位"); + this.$message.warning("请选择单位"); return; } //取消勾选,换成选择的方式 start diff --git a/src/components/report/AsbitemOCX.vue b/src/components/report/AsbitemOCX.vue index 926233c..795f37e 100644 --- a/src/components/report/AsbitemOCX.vue +++ b/src/components/report/AsbitemOCX.vue @@ -1,5 +1,5 @@