|
|
|
@ -307,15 +307,6 @@
|
|
|
|
|
<el-table-column label="用户名" prop="employeeName" fixed></el-table-column>
|
|
|
|
|
</el-table>
|
|
|
|
|
|
|
|
|
|
<el-pagination
|
|
|
|
|
:page-size="hospitalUserQuery.limit"
|
|
|
|
|
@current-change="getHospitalUser"
|
|
|
|
|
layout="prev, pager, next"
|
|
|
|
|
:total="hospitalUserTotal"
|
|
|
|
|
:current-page="hospitalUserQuery.page"
|
|
|
|
|
>
|
|
|
|
|
</el-pagination>
|
|
|
|
|
|
|
|
|
|
<div slot="footer" class="dialog-footer">
|
|
|
|
|
<el-button @click.native="userFormVisible = !userFormVisible"
|
|
|
|
|
>取消
|
|
|
|
@ -348,15 +339,6 @@
|
|
|
|
|
<el-table-column label="单据类型名称" prop="name" fixed></el-table-column>
|
|
|
|
|
</el-table>
|
|
|
|
|
|
|
|
|
|
<el-pagination
|
|
|
|
|
:page-size="bussinessTypeQuery.limit"
|
|
|
|
|
@current-change="getBussinessType"
|
|
|
|
|
layout="prev, pager, next"
|
|
|
|
|
:total="bussinessTypeTotal"
|
|
|
|
|
:current-page="bussinessTypeQuery.page"
|
|
|
|
|
>
|
|
|
|
|
</el-pagination>
|
|
|
|
|
|
|
|
|
|
<div slot="footer" class="dialog-footer">
|
|
|
|
|
<el-button @click.native="bussinessTypeFormVisible = !bussinessTypeFormVisible"
|
|
|
|
|
>取消
|
|
|
|
@ -889,17 +871,6 @@ export default {
|
|
|
|
|
limit: 10
|
|
|
|
|
},
|
|
|
|
|
busTotal: 0,
|
|
|
|
|
hospitalUserQuery: {
|
|
|
|
|
page: 1,
|
|
|
|
|
limit: 10
|
|
|
|
|
},
|
|
|
|
|
hospitalUserTotal: 0,
|
|
|
|
|
bussinessTypeQuery: {
|
|
|
|
|
enabled: true,
|
|
|
|
|
page: 1,
|
|
|
|
|
limit: 100
|
|
|
|
|
},
|
|
|
|
|
bussinessTypeTotal: 0,
|
|
|
|
|
curSeleUser: null,
|
|
|
|
|
};
|
|
|
|
|
},
|
|
|
|
@ -1332,21 +1303,16 @@ export default {
|
|
|
|
|
this.$message.error("请先选择当前分库!")
|
|
|
|
|
} else {
|
|
|
|
|
this.userFormVisible = true;
|
|
|
|
|
this.hospitalUserQuery.page = 1;
|
|
|
|
|
this.getHospitalUser();
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
cancelRelBusDiaolog() {
|
|
|
|
|
this.relBusUserVisile = false;
|
|
|
|
|
},
|
|
|
|
|
getHospitalUser(val) {
|
|
|
|
|
if (val != null) {
|
|
|
|
|
this.hospitalUserQuery.page = val;
|
|
|
|
|
}
|
|
|
|
|
getHospitalUserList(this.hospitalUserQuery).then((res) => {
|
|
|
|
|
getHospitalUser() {
|
|
|
|
|
getHospitalUserList().then((res) => {
|
|
|
|
|
this.selectUserList = [];
|
|
|
|
|
this.userList = res.data.list;
|
|
|
|
|
this.hospitalUserTotal = res.data.total;
|
|
|
|
|
this.userList = res.data;
|
|
|
|
|
var that = this;
|
|
|
|
|
that.$nextTick(() => {
|
|
|
|
|
if (that.$refs.checkUserList) {
|
|
|
|
@ -1362,11 +1328,8 @@ export default {
|
|
|
|
|
})
|
|
|
|
|
});
|
|
|
|
|
},
|
|
|
|
|
getBussinessType(val) {
|
|
|
|
|
if (val != null) {
|
|
|
|
|
this.bussinessTypeQuery.page = val;
|
|
|
|
|
}
|
|
|
|
|
getJoinBussinessType(this.bussinessTypeQuery).then((res) => {
|
|
|
|
|
getBussinessType() {
|
|
|
|
|
getJoinBussinessType().then((res) => {
|
|
|
|
|
this.selectBussinessTypeList = [];
|
|
|
|
|
this.bussinessTypeList = res.data.list;
|
|
|
|
|
|
|
|
|
@ -1453,7 +1416,6 @@ export default {
|
|
|
|
|
this.$message.error("请先选择当前分库!")
|
|
|
|
|
} else {
|
|
|
|
|
this.bussinessTypeFormVisible = true;
|
|
|
|
|
this.bussinessTypeQuery.page = 1;
|
|
|
|
|
this.getBussinessType();
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|