yeguodong 1 week ago
parent
commit
e836f0dac0
1 changed files with 8 additions and 7 deletions
  1. 8 7
      src/views/medical-advice/advice-management/LsYzPrintDetail.vue

+ 8 - 7
src/views/medical-advice/advice-management/LsYzPrintDetail.vue

@@ -65,7 +65,7 @@
                   <el-table-column prop="time" label="时间" width="40" />
                   <el-table-column prop="newOrderName" label="临时医嘱" width="200"/>
                   <el-table-column prop="doctorName" label="医师签名"  width="80">
-                      <template #default="scope">
+<!--                      <template #default="scope">
                           <el-select v-if="scope.row.actOrderNo != null" v-model="scope.row.doctorCode" filterable>
                               <el-option
                                   v-for="item in users"
@@ -74,10 +74,10 @@
                                   :value="item.code"
                               />
                           </el-select>
-                      </template>
+                      </template>-->
                   </el-table-column>
                   <el-table-column prop="nurseName" label="核对护士签名"  width="80">
-                      <template #default="scope">
+<!--                      <template #default="scope">
                           <el-select v-if="scope.row.actOrderNo != null" v-model="scope.row.nurseCode" filterable>
                               <el-option
                                   v-for="item in users"
@@ -86,7 +86,7 @@
                                   :value="item.code"
                               />
                           </el-select>
-                      </template>
+                      </template>-->
                   </el-table-column>
                   <el-table-column prop="execTime" label="执行时间"  width="140">
                       <template #default="scope">
@@ -95,7 +95,7 @@
                       </template>
                   </el-table-column>
                   <el-table-column prop="execName" label="执行护士签名"  width="80">
-                      <template #default="scope">
+<!--                      <template #default="scope">
                           <el-select v-if="scope.row.actOrderNo != null" v-model="scope.row.execId" filterable>
                               <el-option
                                   v-for="item in users"
@@ -104,7 +104,7 @@
                                   :value="item.code"
                               />
                           </el-select>
-                      </template>
+                      </template>-->
                   </el-table-column>
                   <el-table-column fixed="right" label="操作" min-width="120">
                       <template #default="scope">
@@ -282,7 +282,8 @@ const users = ref([]);
 
 const getUserList = () => {
     getEmployeeMiList().then(res => {
-        users.value = res;
+        // users.value = res;
+        users.value.push(res[0]);
     }).catch(err => {
 
     });