|
|
|
@ -94,10 +94,10 @@
|
|
|
|
|
>查询
|
|
|
|
|
</el-button
|
|
|
|
|
>
|
|
|
|
|
<el-button type="primary" icon="el-icon-position" @click="bindWorkPlace"
|
|
|
|
|
>绑定工位
|
|
|
|
|
</el-button
|
|
|
|
|
>
|
|
|
|
|
<!--<el-button type="primary" icon="el-icon-position" @click="bindWorkPlace"-->
|
|
|
|
|
<!-->绑定工位-->
|
|
|
|
|
<!--</el-button-->
|
|
|
|
|
<!-->-->
|
|
|
|
|
</el-button-group>
|
|
|
|
|
</div>
|
|
|
|
|
<el-divider style="margin: 15px"></el-divider>
|
|
|
|
@ -236,7 +236,7 @@
|
|
|
|
|
append-to-body
|
|
|
|
|
>
|
|
|
|
|
<bindWorkDialog
|
|
|
|
|
:prescribeList="this.multiplePreSelection"
|
|
|
|
|
:prescribeListData="this.prescribeListData"
|
|
|
|
|
:closeDialog="this.closeDialog"
|
|
|
|
|
></bindWorkDialog>
|
|
|
|
|
</el-dialog>
|
|
|
|
@ -325,6 +325,7 @@ export default {
|
|
|
|
|
|
|
|
|
|
bindWorkPlaceVisible: false,
|
|
|
|
|
multiplePreSelection: [],
|
|
|
|
|
prescribeListData: {},
|
|
|
|
|
curRow: null,
|
|
|
|
|
panelALive: false,
|
|
|
|
|
|
|
|
|
@ -374,12 +375,13 @@ export default {
|
|
|
|
|
this.getList();
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
bindWorkPlace() {
|
|
|
|
|
if (this.multiplePreSelection.length == 0) {
|
|
|
|
|
this.$message.warning('请先选择处方!');
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
this.bindWorkPlaceVisible = true;
|
|
|
|
|
bindWorkPlace(_this,row) {
|
|
|
|
|
// if (this.multiplePreSelection.length == 0) {
|
|
|
|
|
// this.$message.warning('请先选择处方!');
|
|
|
|
|
// return
|
|
|
|
|
// }
|
|
|
|
|
_this.prescribeListData = row
|
|
|
|
|
_this.bindWorkPlaceVisible = true;
|
|
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|