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, checkPagePriv,
// //
checkSummaryList(RegisterCheckId) { checkSummaryList(RegisterCheckId) {
if (!RegisterCheckId) {
this.doctorCheck.checkSummaryList = []; this.doctorCheck.checkSummaryList = [];
return;
}
if (!RegisterCheckId) return;
// console.log(`/api/app/registerchecksummary/getregisterchecksummarylist?RegisterCheckId=${RegisterCheckId}`) // console.log(`/api/app/registerchecksummary/getregisterchecksummarylist?RegisterCheckId=${RegisterCheckId}`)
getapi(`/api/app/registerchecksummary/getregisterchecksummarylist?RegisterCheckId=${RegisterCheckId}`) getapi(`/api/app/registerchecksummary/getregisterchecksummarylist?RegisterCheckId=${RegisterCheckId}`)
.then((res) => { .then((res) => {

20
src/views/customerOrg/customerOrgGroup.vue

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

4
src/views/doctorCheck/sumDoctorCheck.vue

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

Loading…
Cancel
Save