Browse Source

org seo

master
pengjun 2 years ago
parent
commit
70d6876390
  1. 5
      src/components/customerOrg/customerOrgEdit.vue
  2. 11
      src/components/patientRegister/PatientRegisterList.vue

5
src/components/customerOrg/customerOrgEdit.vue

@ -467,6 +467,11 @@ export default {
//
async add(formName, child) {
await this.$refs[formName].resetFields();
//console.log('this.peisid',this.peisid)
if(!this.peisid || this.peisid == 'null'){
this.$message.warning("该用户未选归属体检中心,不能执行此操作!");
return
}
if (child) {
if (!this.customerOrg.customerOrgId) {

11
src/components/patientRegister/PatientRegisterList.vue

@ -475,6 +475,7 @@ export default {
},
data() {
return {
peisid:null,
startPoint: -1, // -1
endPoint: -1, // -1
@ -555,6 +556,9 @@ export default {
//
mounted() {
this.quickAsb = this.dict.asbItemAll;
this.peisid = window.sessionStorage.getItem('peisid');
//
this.dropCol = this.columnDrop(this.dropCol);
},
@ -778,7 +782,12 @@ export default {
},
//
add() {
add() {
if(!this.peisid || this.peisid == 'null'){
this.$message.warning("该用户未选归属体检中心,不能执行此操作!");
return
}
let customerOrgId = this.patientRegister.query.customerOrgId;
if (!customerOrgId) {
alert("请选择单位或个人");

Loading…
Cancel
Save