Browse Source

doctor

master
pengjun 2 years ago
parent
commit
6a570e4073
  1. 4
      src/components/doctorCheck/CheckSumSug.vue
  2. 20
      src/views/customerOrg/customerOrgGroup.vue
  3. 4
      src/views/doctorCheck/sumDoctorCheck.vue

4
src/components/doctorCheck/CheckSumSug.vue

@ -130,10 +130,8 @@ export default {
checkPagePriv,
//
checkSummaryList(RegisterCheckId) {
if (!RegisterCheckId) {
this.doctorCheck.checkSummaryList = [];
return;
}
if (!RegisterCheckId) return;
// console.log(`/api/app/registerchecksummary/getregisterchecksummarylist?RegisterCheckId=${RegisterCheckId}`)
getapi(`/api/app/registerchecksummary/getregisterchecksummarylist?RegisterCheckId=${RegisterCheckId}`)
.then((res) => {

20
src/views/customerOrg/customerOrgGroup.vue

@ -74,22 +74,25 @@
</div>
<!--按钮-->
<div style="display: block; margin-left: 5px">
<div v-show="checkPagePriv(pagePriv.privs, '新增')" style="margin-top: 35px">
<div v-show="checkPagePriv(pagePriv.privs, '复制上次分组')" style="margin-top: 0px">
<el-button class="commonbutton" @click="btnCopyPreGroup">复制上次分组</el-button>
</div>
<div v-show="checkPagePriv(pagePriv.privs, '新增')" style="margin-top: 5px">
<el-button class="commonbutton" @click="btnAdd('')">新增</el-button>
</div>
<div v-show="checkPagePriv(pagePriv.privs, '编辑')" style="margin-top: 8px">
<div v-show="checkPagePriv(pagePriv.privs, '编辑')" style="margin-top: 5px">
<el-button class="commonbutton" @click="btnEdit">编辑</el-button>
</div>
<div v-show="checkPagePriv(pagePriv.privs, '删除')" style="margin-top: 8px">
<div v-show="checkPagePriv(pagePriv.privs, '删除')" style="margin-top: 5px">
<el-button class="deleteButton" @click="btnDel">删除</el-button>
</div>
<div v-show="checkPagePriv(pagePriv.privs, '置顶')" style="margin-top: 8px">
<div v-show="checkPagePriv(pagePriv.privs, '置顶')" style="margin-top: 5px">
<el-button class="commonbutton" @click="btnSetTop">置顶</el-button>
</div>
<div v-show="checkPagePriv(pagePriv.privs, '置底')" style="margin-top: 8px">
<div v-show="checkPagePriv(pagePriv.privs, '置底')" style="margin-top: 5px">
<el-button class="commonbutton" @click="btnSetBottom">置底</el-button>
</div>
<div v-show="checkPagePriv(pagePriv.privs, '保存排序')" style="margin-top: 8px">
<div v-show="checkPagePriv(pagePriv.privs, '保存排序')" style="margin-top: 5px">
<el-button class="commonbutton" @click="btnSort" :disabled="!isDrag">保存排序</el-button>
</div>
</div>
@ -196,6 +199,11 @@ export default {
dddw,
deepCopy,
//
btnCopyPreGroup(){
this.$message.warning({showClose:true,message:'开发中……'})
},
//
refreshMoney(formData) {
//console.log('this is parent')

4
src/views/doctorCheck/sumDoctorCheck.vue

@ -28,7 +28,8 @@
<SumPREdit />
<!-- 检查情况 -->
<div style="margin-top: -6px;">
<SumAsbItemStatus :patientRegisterId="dataTransOpts.tableS.patient_register.id" :tabChoosed="tabChoosed"/>
<SumAsbItemStatus :patientRegisterId="dataTransOpts.tableS.patient_register.id"
:tabChoosed="tabChoosed" />
</div>
</div>
</el-tab-pane>
@ -98,6 +99,7 @@ export default {
this.dataTransOpts.tableS.patient_register = this.$route.query.patient_register
} else {
this.dataTransOpts.tableS.patient_register = { id: '', patientRegisterNo: '' }
this.dataTransOpts.tableS.register_check = { id: '' }
}
},

Loading…
Cancel
Save