|
|
|
@ -99,6 +99,20 @@
|
|
|
|
|
:width="item.width" |
|
|
|
|
show-overflow-tooltip |
|
|
|
|
:key="index" align="center"> |
|
|
|
|
<!-- <template slot-scope="{item}" v-if="item.prop === 'fileName'">--> |
|
|
|
|
<template #default="{row,$index}" v-if="item.prop === 'fileName'"> |
|
|
|
|
<el-link target="_blank" @click="downloadLink(row)">{{row.fileName}}</el-link> |
|
|
|
|
</template> |
|
|
|
|
<!-- <el-link href="https://element.eleme.io" target="_blank" v-if="item.prop === 'fileName'">{{scope}}</el-link>--> |
|
|
|
|
<template #default="{row,$index}" v-if="item.prop === 'cargoControl'" > |
|
|
|
|
<el-switch |
|
|
|
|
v-model="row.cargoControl" |
|
|
|
|
active-text="开" |
|
|
|
|
inactive-text="关" |
|
|
|
|
@click="makeCargo(row)" |
|
|
|
|
> |
|
|
|
|
</el-switch> |
|
|
|
|
</template> |
|
|
|
|
</el-table-column> |
|
|
|
|
</template> |
|
|
|
|
<!-- 操作栏模块 --> |
|
|
|
@ -261,7 +275,7 @@
|
|
|
|
|
</template> |
|
|
|
|
|
|
|
|
|
<script > |
|
|
|
|
import {getList, getDetail, add, update, remove} from "@/api/basicdata/basicClient"; |
|
|
|
|
import {getList, getDetail, add, update, updateCargoControl} from "@/api/basicdata/basicClient"; |
|
|
|
|
import option from "@/option/basicdata/basicClient"; |
|
|
|
|
import {mapGetters} from "vuex"; |
|
|
|
|
import BasicShopSub from "@/views/basicdata/brand/basicShopSub.vue"; |
|
|
|
@ -410,8 +424,57 @@ export default {
|
|
|
|
|
} |
|
|
|
|
}, |
|
|
|
|
methods: { |
|
|
|
|
//打开文件 |
|
|
|
|
downloadLink(row){ |
|
|
|
|
console.log(">>>>>",row); |
|
|
|
|
}, |
|
|
|
|
//控制控货 |
|
|
|
|
makeCargo(row){ |
|
|
|
|
console.log("控货操作!!",row); |
|
|
|
|
let r = { |
|
|
|
|
id : row.id, |
|
|
|
|
cargoControl: row.cargoControl |
|
|
|
|
} |
|
|
|
|
this.$confirm(`确定要修改${row.clientName}的控货状态吗?`, { |
|
|
|
|
type: "warning", |
|
|
|
|
//beforeClose 阻止关闭弹窗 |
|
|
|
|
beforeClose: async (action, instance, done) => { |
|
|
|
|
//下面这行代码就是弹出的确认删除和取消删除 |
|
|
|
|
if (action === "confirm") { |
|
|
|
|
// 调取接口 |
|
|
|
|
updateCargoControl(r).then(res => { |
|
|
|
|
console.log(res); |
|
|
|
|
if(res.statusText == 'OK' ){ |
|
|
|
|
this.onLoad(this.page); |
|
|
|
|
this.$message({ |
|
|
|
|
type: "success", |
|
|
|
|
message: "操作成功!" |
|
|
|
|
}); |
|
|
|
|
done(); |
|
|
|
|
}else{ |
|
|
|
|
this.$message({ |
|
|
|
|
type: "warning", |
|
|
|
|
message: "操作失败!" |
|
|
|
|
}); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
}); |
|
|
|
|
}else { |
|
|
|
|
//点击其他地方时就相当于点击了false |
|
|
|
|
//done 关闭窗口 |
|
|
|
|
done(); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
}); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}, |
|
|
|
|
uploadSuccess(fileList) { |
|
|
|
|
console.log("123123123",fileList); |
|
|
|
|
// this.form.fileName = |
|
|
|
|
// this.$set(row, 'imageCos', fileList); |
|
|
|
|
if(this.title == '编辑'){ |
|
|
|
|
this.bianji = true; |
|
|
|
@ -493,6 +556,7 @@ export default {
|
|
|
|
|
let li = []; |
|
|
|
|
this.fileList.forEach(it => { |
|
|
|
|
li.push( it.url); |
|
|
|
|
|
|
|
|
|
}) |
|
|
|
|
this.form.leaseAccessories = li.length > 0 ? li.join(",") : null ; |
|
|
|
|
}else{ |
|
|
|
@ -503,6 +567,7 @@ export default {
|
|
|
|
|
let li = []; |
|
|
|
|
this.fileList.forEach(it => { |
|
|
|
|
li.push( it.response.data.link); |
|
|
|
|
this.form.fileName = it.response.data.originalName; |
|
|
|
|
}) |
|
|
|
|
this.form.leaseAccessories = li.length > 0 ? li.join(",") : null ; |
|
|
|
|
}else{ |
|
|
|
|