XMLWAN 2 years ago
parent
commit
5aa13d4037
1 changed files with 7 additions and 7 deletions
  1. 7 7
      src/xt_pages/dialysis/details/dialog/DoctorAdviceDialog.vue

+ 7 - 7
src/xt_pages/dialysis/details/dialog/DoctorAdviceDialog.vue View File

280
         </el-table-column>
280
         </el-table-column>
281
         <el-table-column prop="execution_staff" align="center" min-width="30px" label="执行护士"><!--bug642-->
281
         <el-table-column prop="execution_staff" align="center" min-width="30px" label="执行护士"><!--bug642-->
282
           <template slot-scope="scope">
282
           <template slot-scope="scope">
283
-            <span v-if="scope.row.parent_id == 0">
283
+            <span>
284
               {{getXuserName(scope.row.execution_staff)}}
284
               {{getXuserName(scope.row.execution_staff)}}
285
             </span>
285
             </span>
286
-            <span v-else></span>
286
+
287
           </template>
287
           </template>
288
         </el-table-column>
288
         </el-table-column>
289
         <el-table-column
289
         <el-table-column
294
           label="核对人员"
294
           label="核对人员"
295
         >
295
         >
296
           <template slot-scope="scope">
296
           <template slot-scope="scope">
297
-            <span v-if="scope.row.parent_id == 0">
297
+            <span>
298
               {{getXuserName(scope.row.checker)}}
298
               {{getXuserName(scope.row.checker)}}
299
             </span>
299
             </span>
300
-            <span v-else></span>
300
+
301
           </template>
301
           </template>
302
         </el-table-column>
302
         </el-table-column>
303
       </el-table>
303
       </el-table>
1336
               this.currentRow = null
1336
               this.currentRow = null
1337
               this.setCurrent()
1337
               this.setCurrent()
1338
               this.hideForm()
1338
               this.hideForm()
1339
-            
1339
+
1340
 
1340
 
1341
               if (this.form.parent_id > 0) {
1341
               if (this.form.parent_id > 0) {
1342
                 var spliceIndex = -1
1342
                 var spliceIndex = -1
1349
                     break
1349
                     break
1350
                   }
1350
                   }
1351
                 }
1351
                 }
1352
-               
1352
+
1353
                 if (spliceIndex > -1) {
1353
                 if (spliceIndex > -1) {
1354
                   spliceIndex += 1
1354
                   spliceIndex += 1
1355
                   if (spliceIndex === this.doctor_advices.length) {
1355
                   if (spliceIndex === this.doctor_advices.length) {
1362
                     }
1362
                     }
1363
                   }
1363
                   }
1364
 
1364
 
1365
-                 
1365
+
1366
                 }
1366
                 }
1367
               } else {
1367
               } else {
1368
                 this.doctor_advices.unshift(response.data.data.advice)
1368
                 this.doctor_advices.unshift(response.data.data.advice)