Browse Source

导入页修改

liusungtsun 1 year ago
parent
commit
d867e03999
2 changed files with 10 additions and 9 deletions
  1. 6 5
      src/views/GATHER/importFile.vue
  2. 4 4
      src/views/GATHER/index.vue

+ 6 - 5
src/views/GATHER/importFile.vue

@@ -1,5 +1,5 @@
 <template>
-  <div>
+  <div style="width: 100%;">
     <el-image 
     v-if="param.mark == 1"
     style="width: 100%; height: 100px"
@@ -12,14 +12,14 @@
     :src="sum" 
     :preview-src-list="[sum]">
   </el-image>
-  <p style="text-align: center; color: #545555;">点击上图查看</p>
-    <template>
+  <p style="text-align: center; color: #545555;">点击上图查看导入说明</p>
+    <!-- <template>
       <div class="tips-text">
         <span class="tit">提示</span>
         <p>1.请检查保税区名称是否一致或者统一!</p>
         <p>2.上传前,请先检查excel文件内容的严谨性!</p>
       </div>
-    </template>
+    </template> -->
     <div class="cmain" style="display: flex;justify-content: center;align-items: center;">
       <el-upload class="upload-demo" drag action="#" :http-request="AvatarUpload" multiple :auto-upload="true">
         <i class="el-icon-upload"></i>
@@ -75,4 +75,5 @@ export default {
 };
 </script>
   
-<style></style>
+<style lang="scss" scoped>
+</style>

+ 4 - 4
src/views/GATHER/index.vue

@@ -125,7 +125,7 @@
         <el-button
           type="danger"
           plain
-          @click="importFile({ type: '0', mark: '1' })"
+          @click="importFile({ type: '0', mark: '1' }, '海关部分贸易导入')"
           v-hasPermi="['gather:GATHER:customsMrak']"
           >海关部分贸易导入</el-button
         >
@@ -134,7 +134,7 @@
         <el-button
           type="danger"
           plain
-          @click="importFile({ type: '0', mark: '2' })"
+          @click="importFile({ type: '0', mark: '2' }, '海关进出口总值导入')"
           v-hasPermi="['gather:GATHER:customs']"
           >海关进出口总值导入</el-button
         >
@@ -974,8 +974,7 @@ export default {
       //   };
       // }
     },
-    importFile(param) {
-      let title = param.mark == "1" ? "海关一般数据导入" : "海关特殊数据导入";
+    importFile(param, title) {
       let img = param.mark == "1" ? "@/assets/images/portion.png" : "@/assets/images/sum.png";
       param.img = img;
       this.iframe({
@@ -1446,5 +1445,6 @@ export default {
     font-size: 16px;
     background: #3333331a;
   }
+ 
 }
 </style>