MFMF 3 anni fa
parent
commit
206f34e819
1 ha cambiato i file con 6 aggiunte e 6 eliminazioni
  1. 6 6
      src/components/cdssManage/hemp/Hemp.vue

+ 6 - 6
src/components/cdssManage/hemp/Hemp.vue

@@ -67,7 +67,7 @@
         <el-table-column :resizable="false" prop="gmtModified" label="操作时间" width="180"></el-table-column>
         <el-table-column :resizable="false" prop="hisName" label="医院麻醉名称" show-overflow-tooltip></el-table-column>
         <el-table-column :resizable="false" prop="uniqueName" label="标准麻醉名称" show-overflow-tooltip></el-table-column>
-        <!-- <el-table-column :resizable="false" prop="form" label="药品剂型" show-overflow-tooltip></el-table-column> -->
+        <!-- <el-table-column :resizable="false" prop="form" label="麻醉剂型" show-overflow-tooltip></el-table-column> -->
 
         <el-table-column :resizable="false" prop="operate" label="标准术语状态">
           <template slot-scope="scope">
@@ -258,7 +258,7 @@ export default {
             if (res.status === 200) {
               utils.downloadExportedData(
                 res.data,
-                '药品关联数据(预匹配).xls'
+                '麻醉关联数据(预匹配).xls'
               );
             }
           });
@@ -446,7 +446,7 @@ export default {
 
     // 导出数据
     exportData() {
-      this.$alert('确定要导出全部药品关联数据吗?', '', {
+      this.$alert('确定要导出全部麻醉关联数据吗?', '', {
         confirmButtonText: '确定',
         // cancelButtonText: '取消',
         // cancelButtonClass: 'leftbtn',
@@ -460,7 +460,7 @@ export default {
         //     api.exportDrugRecord().then(res => {
         //       if (res.status === 200) {
         //         setTimeout(() => {
-        //           utils.downloadExportedData(res.data, '药品关联数据.xls');
+        //           utils.downloadExportedData(res.data, '麻醉关联数据.xls');
         //           done();
         //         }, 1500);
         //       }
@@ -480,7 +480,7 @@ export default {
             .then(res => {
               if (res.status === 200) {
                 this.$message({ message: '导出成功', type: 'success' });
-                utils.downloadExportedData(res.data, '药品关联数据.xls');
+                utils.downloadExportedData(res.data, '麻醉关联数据.xls');
               }
             });
         })
@@ -494,7 +494,7 @@ export default {
       api.exportDrugModule({ type: 14 }).then(res => {
         if (res.status === 200) {
           setTimeout(() => {
-            utils.downloadExportedData(res.data, '药品导入模板.xls');
+            utils.downloadExportedData(res.data, '麻醉导入模板.xls');
           }, 1500);
         }
       });