importExcelDia.vue 7.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247
  1. <template>
  2. <el-dialog
  3. :title="$t('ManualEntryPage.tit_insert_data')"
  4. :visible.sync="show"
  5. :close-on-click-modal="false"
  6. :modal-append-to-body="false"
  7. center
  8. v-dialogDrag
  9. @close="cancelHandle"
  10. custom-class="dialog-cont"
  11. width="40%"
  12. >
  13. <div slot="title" style="display: flex; alignitems: center">
  14. <img
  15. :src="$icons.imp"
  16. style="color: #fff; width: 16px; height: 16px; margin-right: 5px"
  17. />
  18. <span style="font-size: 16px">{{$t('ManualEntryPage.tit_insert_data')}}</span>
  19. </div>
  20. <div class="down-min">
  21. <dataLoading :loading="isLoading"/>
  22. <div class="section-item">
  23. <div class="templete-wrap">
  24. <div class="item" v-for="tem in templateList" :key="tem.name">
  25. <a :href="tem.url" download="模板">
  26. <el-button type="primary" icon="el-icon-download">下载导入模板</el-button>
  27. </a>
  28. <div>
  29. <img :src="temImg" alt="" width="150" style="display:block;margin:10px 0;">
  30. <span class="editsty" @click="handlePreviewImg"><!-- 查看大图 -->{{$t('ManualEntryPage.view_big_img')}}</span>
  31. </div>
  32. </div>
  33. </div>
  34. </div>
  35. <div class="section-item">
  36. <h3>上传导入模板</h3>
  37. <el-upload
  38. class="upload-demo"
  39. :before-upload="beforeUploadFile"
  40. multiple
  41. :limit="3"
  42. :headers="headerConfig"
  43. :on-success="handleSuccess"
  44. :on-progress="handleStarting"
  45. :action="action"
  46. accept=".xlsx"
  47. :name="name"
  48. :show-file-list="false"
  49. >
  50. <el-button type="primary" icon="el-icon-upload">{{$t('ManualEntryPage.tit_insert_data')}}</el-button>
  51. </el-upload>
  52. </div>
  53. </div>
  54. <div class="down-tip-txt">
  55. <span>{{$t('ManualEntryPage.step_one')}}</span>
  56. <span>{{$t('ManualEntryPage.step_two')}}</span>
  57. <span>{{$t('ManualEntryPage.step_three')}}
  58. <a
  59. style="display: inline; color: #0052D9"
  60. :href="downloadErrorlist"
  61. download
  62. >{{$t('ManualEntryPage.down_fail_list')}}</a
  63. >。</span
  64. >
  65. </div>
  66. <el-image-viewer
  67. v-if="showImgViewer"
  68. :on-close="()=>{this.previewList=[];this.showImgViewer = false}"
  69. :url-list="previewList"
  70. />
  71. </el-dialog>
  72. </template>
  73. <script>
  74. import { dataInterence } from "api/api.js";
  75. import ElImageViewer from 'element-ui/packages/image/src/image-viewer'
  76. export default {
  77. name: "",
  78. components: { ElImageViewer },
  79. props: {
  80. show: {
  81. type: Boolean,
  82. },
  83. },
  84. computed: {
  85. temImg() {
  86. const imgSourceMap = {
  87. '/knowledge_event': require('@/assets/img/knowledge/tem_1.png'),
  88. '/knowledge_policy': require('@/assets/img/knowledge/tem_2.png'),
  89. '/knowledge_viewpoint': require('@/assets/img/knowledge/tem_3.png'),
  90. '/knowledge_know': require('@/assets/img/knowledge/tem_4.png'),
  91. }
  92. return imgSourceMap[this.$route.path] && imgSourceMap[this.$route.path]
  93. }
  94. },
  95. data() {
  96. return {
  97. action: process.env.VUE_APP_API_ROOT + "/entry/import/data", //上传文件
  98. downloadErrorlist:
  99. process.env.VUE_APP_API_ROOT +
  100. "/entry/import/failList" +
  101. `?${localStorage.getItem("auth")}`, //失败列表下载
  102. name: "EntryFile",
  103. templateList: [
  104. {
  105. name:/* "模板1" */this.$t('ManualEntryPage.tem_msg',{index:1}),
  106. url: process.env.VUE_APP_API_ROOT + "/entry/template?Source=1"
  107. }
  108. ],
  109. headerConfig: {
  110. Authorization: localStorage.getItem("auth"),
  111. },
  112. isLoading: false,
  113. showImgViewer: false,
  114. previewList: []
  115. };
  116. },
  117. methods: {
  118. cancelHandle() {
  119. this.$emit('update:show',false)
  120. },
  121. // 校验文件和大小
  122. beforeUploadFile(file) {
  123. let extension = file.name.substring(file.name.lastIndexOf(".") + 1);
  124. let size = file.size / 1024 / 1024; //M
  125. if (extension !== "xlsx" && extension !== "xls") {
  126. this.$message.warning("只能上传后缀是.xlsx和.xls的文件");
  127. return false;
  128. }
  129. if (size > 10) {
  130. this.$message.warning(/* "文件大小不得超过10M" */this.$t('ManualEntryPage.upload_size_msg'));
  131. return false;
  132. }
  133. },
  134. handleStarting() {
  135. this.isLoading = true;
  136. },
  137. // 上传成功之后
  138. handleSuccess(result) {
  139. //兼容下结构
  140. let res = this.$parseData({
  141. headers: {
  142. dk: sessionStorage.getItem('dk')||""
  143. },
  144. data: result
  145. });
  146. if (res.Ret === 200) {
  147. // 0成功 1部分失败 -1全部失败
  148. let str = `
  149. <h2 style="margin-bottom:30px">导入成功</h2>
  150. <p> 本次共成功导入${res.Data.SuccessCount}条数据</p>
  151. `;
  152. if (res.Data.Status === 1) {
  153. // this.$message.warning('部分导入失败')
  154. str = `
  155. <h2 style="margin-bottom:30px">部分导入失败</h2>
  156. <p>${this.$t('ManualEntryPage.upload_tip_msg2',{success_count:res.Data.SuccessCount,fail_count:res.Data.FailCount})}</p>
  157. <a style="display:inline;color:#5882EF;" href="${this.downloadErrorlist}" download>${this.$t('ManualEntryPage.down_fail_list2')}</a>
  158. `;
  159. } else if (res.Data.Status === -1) {
  160. // this.$message.success("导入成功!");
  161. str = `
  162. <h2 style="margin-bottom:30px">导入失败!</h2>
  163. <a style="display:inline;color:#5882EF;" href="${this.downloadErrorlist}" download>${this.$t('ManualEntryPage.down_fail_list2')}</a>
  164. `;
  165. }
  166. this.$alert(str, "", {
  167. dangerouslyUseHTMLString: true,
  168. center: true,
  169. showConfirmButton: false,
  170. });
  171. this.$emit("importSuccess");
  172. } else {
  173. this.$message.warning(res.Msg);
  174. }
  175. this.isLoading = false;
  176. },
  177. handlePreviewImg() {
  178. this.previewList=[this.temImg]
  179. this.showImgViewer=true
  180. }
  181. },
  182. };
  183. </script>
  184. <style lang="scss" scoped>
  185. .dialog-cont {
  186. max-width: 800px;
  187. .down-min {
  188. position: relative;
  189. margin: 20px 0 50px;
  190. .arrow-ico {
  191. width: 140px;
  192. height: 14px;
  193. display: block;
  194. background: url("~@/assets/img/data_m/arrow_ico.png") no-repeat center;
  195. background-size: 100%;
  196. margin: 0 50px;
  197. }
  198. .icon {
  199. width: 100px;
  200. height: 100px;
  201. display: block;
  202. margin-bottom: 36px;
  203. &.down_ico {
  204. background: url("~@/assets/img/data_m/down_ico.png") no-repeat center;
  205. background-size: cover;
  206. }
  207. &.up_ico {
  208. background: url("~@/assets/img/data_m/up_ico.png") no-repeat center;
  209. background-size: cover;
  210. }
  211. }
  212. }
  213. .down-tip-txt {
  214. font-size: 14px;
  215. color: #1f2e4d;
  216. line-height: 25px;
  217. padding-bottom: 10px;
  218. span {
  219. display: block;
  220. margin-bottom: 18px;
  221. }
  222. }
  223. .section-item {
  224. padding: 20px 0;
  225. &:first-child {
  226. border-bottom: 1px solid #C8CDD9;
  227. }
  228. h3 {
  229. font-size: 16px;
  230. margin-bottom: 20px;
  231. }
  232. .templete-wrap {
  233. display: flex;
  234. gap: 20px;
  235. }
  236. }
  237. }
  238. </style>