mch 2 years ago
parent
commit
bf0ee5d692
  1. 2
      src/components/customerOrg/ContactPerson.vue
  2. 2
      src/components/customerOrg/customerOrgRegister.vue
  3. 6
      src/store/index.js
  4. 6
      src/views/customerOrg/customerOrg.vue
  5. 10
      src/views/customerOrg/patientRegister.vue

2
src/components/customerOrg/ContactPerson.vue

@ -1,7 +1,7 @@
<template>
<div>
<div :style="customerOrg.orgDetailStyle">
<div :style="'width:'+(window.pageWidth - 200 - 120 - 70)+'px;'">
<div :style="'width:'+(window.pageWidth - 200 - 120 - 90)+'px;'">
<el-table
:data="customerOrg.contactPersonList"
border

2
src/components/customerOrg/customerOrgRegister.vue

@ -1,6 +1,6 @@
<template>
<div :style="customerOrg.orgDetailStyle">
<div :style="'width:'+(window.pageWidth - 200 - 120 - 70)+'px;'">
<div :style="'width:'+(window.pageWidth - 200 - 120 - 90)+'px;'">
<el-table
:data="customerOrg.customerOrgRegisterList"
border

6
src/store/index.js

@ -28,7 +28,7 @@ export default new Vuex.Store({
contactMethodList: [], //联系方式列表
orgEditStyle:'', //编辑表单样式
orgDetailStyle:'', //体检次数样式
orgDetailHeight:200, //体检次数LIST表格高度
orgDetailHeight:300, //体检次数LIST表格高度
personStyle:'', //联系人样式
},
//体检单位分组
@ -105,8 +105,8 @@ export default new Vuex.Store({
}, //查询条件
customerOrgGroup: [], //分组(针对单位)
patientRegisterAbs: [], //人员已选组合项目
prListHeight:200, //人员列表高度
prAsbItemHeight:100, //组合项目高度
prListHeight:312, //人员列表高度
prAsbItemHeight:156, //组合项目高度
},
//体检医生诊台

6
src/views/customerOrg/customerOrg.vue

@ -51,11 +51,13 @@ export default {
};
},
created() { },
created() {
this.resize();
},
//
mounted() {
this.resize();
},
computed: {

10
src/views/customerOrg/patientRegister.vue

@ -41,12 +41,14 @@ export default {
};
},
created() {},
//
created() {
this.resize();
},
//
//
mounted() {
this.dictInit();
this.resize();
this.dictInit();
},
computed: {

Loading…
Cancel
Save