|
@@ -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>
|