|
@@ -5,7 +5,14 @@
|
|
|
<el-input v-model="queryParams.quotaName"></el-input>
|
|
|
</el-form-item>
|
|
|
<el-form-item label="保税区名称" prop="bondedName">
|
|
|
- <el-input v-model="queryParams.bondedName"></el-input>
|
|
|
+ <el-select v-model="queryParams.bondedName" placeholder="请选择保税区" clearable filterable @change="selectBondedChange" style="width:100%">
|
|
|
+ <el-option
|
|
|
+ v-for="item in deptList"
|
|
|
+ :key="item.deptId"
|
|
|
+ :label="item.deptName"
|
|
|
+ :value="item.deptName">
|
|
|
+ </el-option>
|
|
|
+ </el-select>
|
|
|
</el-form-item>
|
|
|
<el-form-item>
|
|
|
<el-button type="primary" icon="el-icon-search" @click="handleQuery">搜索</el-button>
|
|
@@ -53,7 +60,7 @@
|
|
|
<el-table-column label="文字说明" align="center" prop="remark" width="280"></el-table-column>
|
|
|
<el-table-column label="附件" align="center" prop="fileNames" width="280">
|
|
|
<template slot-scope="scope">
|
|
|
- <el-link @click="download(scope.row.fileNames)">{{scope.row.fileNames}}</el-link>
|
|
|
+ <el-link style="text-decoration: underline;color: #36aafd" @click="download(scope.row.fileNames)">{{scope.row.fileNames}}</el-link>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
<el-table-column label="操作" align="center" fixed="right" width="150">
|
|
@@ -231,7 +238,6 @@ export default {
|
|
|
this.getDeptList()
|
|
|
},
|
|
|
methods: {
|
|
|
-
|
|
|
// 获取保税区列表
|
|
|
getDeptList() {
|
|
|
this.loading = true;
|
|
@@ -335,10 +341,6 @@ export default {
|
|
|
this.$message.error("得分必须为整数");
|
|
|
return;
|
|
|
}
|
|
|
- if (this.form.enterType == '附件' && this.form.linkUrls == null) {
|
|
|
- this.$message.error("请上传附件");
|
|
|
- return;
|
|
|
- }
|
|
|
if (this.form.enterType == '文字说明' && this.form.remark == null) {
|
|
|
this.$message.error("请录入文字说明");
|
|
|
return;
|
|
@@ -352,32 +354,65 @@ export default {
|
|
|
return;
|
|
|
}
|
|
|
if (this.form.id != null) {
|
|
|
- let formData = new FormData()
|
|
|
- if (this.fileList.length < 1) {
|
|
|
- this.$message.error("请选择文件传输!");
|
|
|
- return;
|
|
|
- }
|
|
|
- this.fileList.forEach((item) => {
|
|
|
- formData.append("file", item.raw);
|
|
|
- });
|
|
|
- uploadFiles(formData).then(res=>{
|
|
|
- if(res.code == 200){
|
|
|
- this.form.linkUrls = res.fileNames;
|
|
|
- this.form.fileNames = res.newFileNames;
|
|
|
-
|
|
|
- updateQUOTABONDED(this.form).then(response => {
|
|
|
- this.$modal.msgSuccess("修改成功");
|
|
|
- this.open = false;
|
|
|
- this.getList();
|
|
|
+ if (this.form.enterType == '附件') {
|
|
|
+ if(this.fileList.length < 1) {
|
|
|
+ this.$message.error("请选择文件传输!");
|
|
|
+ return;
|
|
|
+ } else {
|
|
|
+ let formData = new FormData()
|
|
|
+ this.fileList.forEach((item) => {
|
|
|
+ formData.append("file", item.raw);
|
|
|
});
|
|
|
+ uploadFiles(formData).then(res=>{
|
|
|
+ if(res.code == 200){
|
|
|
+ this.form.linkUrls = res.fileNames;
|
|
|
+ this.form.fileNames = res.newFileNames;
|
|
|
+
|
|
|
+ updateQUOTABONDED(this.form).then(response => {
|
|
|
+ this.$modal.msgSuccess("修改成功");
|
|
|
+ this.open = false;
|
|
|
+ this.getList();
|
|
|
+ });
|
|
|
+ }
|
|
|
+ })
|
|
|
}
|
|
|
- })
|
|
|
+ } else {
|
|
|
+ updateQUOTABONDED(this.form).then(response => {
|
|
|
+ this.$modal.msgSuccess("修改成功");
|
|
|
+ this.open = false;
|
|
|
+ this.getList();
|
|
|
+ });
|
|
|
+ }
|
|
|
} else {
|
|
|
- addQUOTABONDED(this.form).then(response => {
|
|
|
- this.$modal.msgSuccess("新增成功");
|
|
|
- this.open = false;
|
|
|
- this.getList();
|
|
|
- });
|
|
|
+ if (this.form.enterType == '附件') {
|
|
|
+ if(this.fileList.length < 1) {
|
|
|
+ this.$message.error("请选择文件传输!");
|
|
|
+ return;
|
|
|
+ } else {
|
|
|
+ let formData = new FormData()
|
|
|
+ this.fileList.forEach((item) => {
|
|
|
+ formData.append("file", item.raw);
|
|
|
+ });
|
|
|
+ uploadFiles(formData).then(res=>{
|
|
|
+ if(res.code == 200){
|
|
|
+ this.form.linkUrls = res.fileNames;
|
|
|
+ this.form.fileNames = res.newFileNames;
|
|
|
+
|
|
|
+ addQUOTABONDED(this.form).then(response => {
|
|
|
+ this.$modal.msgSuccess("新增成功");
|
|
|
+ this.open = false;
|
|
|
+ this.getList();
|
|
|
+ });
|
|
|
+ }
|
|
|
+ })
|
|
|
+ }
|
|
|
+ } else {
|
|
|
+ addQUOTABONDED(this.form).then(response => {
|
|
|
+ this.$modal.msgSuccess("新增成功");
|
|
|
+ this.open = false;
|
|
|
+ this.getList();
|
|
|
+ });
|
|
|
+ }
|
|
|
}
|
|
|
}
|
|
|
});
|
|
@@ -406,12 +441,9 @@ export default {
|
|
|
this.fileList = fileList;
|
|
|
},
|
|
|
download(resource) {
|
|
|
- console.log("resource",resource)
|
|
|
- downloadFiles(resource).then(res=>{
|
|
|
- if(res.code == 200) {
|
|
|
-
|
|
|
-
|
|
|
- }
|
|
|
+ let fileNames = resource.split(',');
|
|
|
+ fileNames.forEach(item => {
|
|
|
+ downloadFiles('/profile/upload/' +item);
|
|
|
})
|
|
|
}
|
|
|
}
|