Browse Source

Merge branch 'vue_statistics_branch' of http://git.shengws.com/csx/Vue_New into vue_statistics_branch

XMLWAN 5 years ago
parent
commit
3f0b08daf5

+ 1 - 1
src/xt_pages/user/patients.vue View File

726
         }
726
         }
727
         const aLink = document.createElement('a')
727
         const aLink = document.createElement('a')
728
         aLink.href = url
728
         aLink.href = url
729
-        aLink.download = this.timestampToTime(log.export_time) + '错误日志' + '.txt'
729
+        aLink.download = this.timestampToTime(log.export_time) + '患者导入日志' + '.txt'
730
         aLink.click()
730
         aLink.click()
731
 
731
 
732
       },
732
       },

+ 1 - 1
src/xt_pages/workforce/appointment.vue View File

176
         }
176
         }
177
         const aLink = document.createElement('a')
177
         const aLink = document.createElement('a')
178
         aLink.href = url
178
         aLink.href = url
179
-        aLink.download = this.timestampToTime(log.export_time) + '错误日志.txt'
179
+        aLink.download = this.timestampToTime(log.export_time) + '临时排班导入日志.txt'
180
         aLink.click()
180
         aLink.click()
181
 
181
 
182
       },
182
       },

+ 1 - 1
src/xt_pages/workforce/components/scheduleTemplateUploadExcel/index.vue View File

16
       :visible.sync="msgTipVisible"
16
       :visible.sync="msgTipVisible"
17
       width="40%"
17
       width="40%"
18
     >
18
     >
19
-      <span>如果导入成功,会将当前已有的排版模版会被全部清除,是否继续导入排版模版数据</span>
19
+      <span>若执行排班导入,系统将会清除当前已有排班模板数据,是否继续导入?</span>
20
       <span slot="footer" class="dialog-footer">
20
       <span slot="footer" class="dialog-footer">
21
     <el-button @click="msgTipVisible = false">取 消</el-button>
21
     <el-button @click="msgTipVisible = false">取 消</el-button>
22
     <el-button type="primary" @click="handleUpload()">确 定</el-button>
22
     <el-button type="primary" @click="handleUpload()">确 定</el-button>

+ 1 - 1
src/xt_pages/workforce/components/scheduleUploadExcel/index.vue View File

4
       :visible.sync="msgTipVisible"
4
       :visible.sync="msgTipVisible"
5
       width="40%"
5
       width="40%"
6
     >
6
     >
7
-      <span>如果导入成功,会将当前已有的排版会被全部清除,是否继续导入排版数据</span>
7
+      <span>若执行排班导入,系统将会清除当前已有临时排班数据,是否继续导入?</span>
8
       <span slot="footer" class="dialog-footer">
8
       <span slot="footer" class="dialog-footer">
9
     <el-button @click="msgTipVisible = false">取 消</el-button>
9
     <el-button @click="msgTipVisible = false">取 消</el-button>
10
     <el-button type="primary" @click="handleUpload()">确 定</el-button>
10
     <el-button type="primary" @click="handleUpload()">确 定</el-button>

+ 1 - 1
src/xt_pages/workforce/template.vue View File

258
         }
258
         }
259
         const aLink = document.createElement('a')
259
         const aLink = document.createElement('a')
260
         aLink.href = url
260
         aLink.href = url
261
-        aLink.download = this.timestampToTime(log.export_time)+'错误日志.txt'
261
+        aLink.download = this.timestampToTime(log.export_time)+'排班模板导入日志.txt'
262
         aLink.click()
262
         aLink.click()
263
 
263
 
264
       },
264
       },