|
@@ -29,7 +29,13 @@
|
|
|
</el-col>
|
|
|
<el-col :span="12">
|
|
|
<el-form-item class="bi_tian" label="执行科室:">
|
|
|
- {{ bianJiJianChaShuJu.execDeptName }}
|
|
|
+ <xc-select-v3
|
|
|
+ style="width: 120px"
|
|
|
+ v-model="bianJiJianChaShuJu"
|
|
|
+ :data="zhiXingKeShiData"
|
|
|
+ code="execDept"
|
|
|
+ name="execDeptName"
|
|
|
+ :remote-method="metZhiXingKeShi"/>
|
|
|
</el-form-item>
|
|
|
</el-col>
|
|
|
<el-col :span="12">
|
|
@@ -128,6 +134,7 @@ import {biaoBenApi, diagnosisInOurHospital} from '@/api/zhu-yuan-yi-sheng/jian-y
|
|
|
import {logoutShortcut, xcHotKey} from '@/utils/xckeydown'
|
|
|
import XcSelectV3 from "@/components/xiao-chan/select-v3/XcSelectV3.vue";
|
|
|
import XcCode from "@/components/xiao-chan/code/XcCode";
|
|
|
+import {huoQuZhiXinKeShi} from "@/api/zhu-yuan-yi-sheng/yi-zhu-lu-ru";
|
|
|
|
|
|
const props = defineProps({
|
|
|
jianCha: {
|
|
@@ -238,6 +245,14 @@ const biaoBenSouSuo = (val) => {
|
|
|
}
|
|
|
}
|
|
|
|
|
|
+/* 获取执行科室 */
|
|
|
+const zhiXingKeShiData = ref([])
|
|
|
+const metZhiXingKeShi = (val) => {
|
|
|
+ huoQuZhiXinKeShi(val).then((res) => {
|
|
|
+ zhiXingKeShiData.value = res
|
|
|
+ })
|
|
|
+}
|
|
|
+
|
|
|
defineExpose({daKaiBenDuiHua})
|
|
|
</script>
|
|
|
|