|
|
|
@ -15,7 +15,7 @@
|
|
|
|
|
</el-form-item> |
|
|
|
|
</el-col> |
|
|
|
|
<el-col :span="10"> |
|
|
|
|
<el-form-item label="始发仓" prop="goalGranary"> |
|
|
|
|
<el-form-item label="始发仓" prop="beginGranary"> |
|
|
|
|
<!-- <el-input v-model="form.goalGranary" placeholder="请输入末端仓"/>--> |
|
|
|
|
<el-select style="width: 100%" |
|
|
|
|
v-model="form.beginGranary" |
|
|
|
@ -23,7 +23,7 @@
|
|
|
|
|
remote |
|
|
|
|
reserve-keyword |
|
|
|
|
placeholder="请输入始发仓" |
|
|
|
|
:remote-method="remoteMethodBin" |
|
|
|
|
:remote-method="FnDeparture" |
|
|
|
|
:loading="loading" |
|
|
|
|
> |
|
|
|
|
<el-option |
|
|
|
@ -225,8 +225,11 @@ export default {
|
|
|
|
|
{ required: true, message: '请选择时间段费用', trigger: 'blur' } |
|
|
|
|
], |
|
|
|
|
goalGranary: [ |
|
|
|
|
{ required: true, message: '请选择末端仓', trigger: 'blur' } |
|
|
|
|
{ required: true, message: '请选择目的仓', trigger: 'blur' } |
|
|
|
|
], |
|
|
|
|
beginGranary:[ |
|
|
|
|
{ required: true, message: '请选择始发仓', trigger: 'blur' } |
|
|
|
|
] |
|
|
|
|
}, |
|
|
|
|
} |
|
|
|
|
}, |
|
|
|
@ -259,7 +262,6 @@ export default {
|
|
|
|
|
}, |
|
|
|
|
mounted () { |
|
|
|
|
this.init(); |
|
|
|
|
|
|
|
|
|
}, |
|
|
|
|
computed: { |
|
|
|
|
...mapGetters(["permission",'tagWel','tagList']), |
|
|
|
@ -358,6 +360,7 @@ export default {
|
|
|
|
|
}, |
|
|
|
|
//查询始发仓库 |
|
|
|
|
async warehouse(row,num){ |
|
|
|
|
console.log(num,'num'); |
|
|
|
|
let a ={ |
|
|
|
|
province_code : row.length > 0 ? row[0] : null, |
|
|
|
|
city_code : row.length > 1 ? row[1] : null, |
|
|
|
@ -366,21 +369,22 @@ export default {
|
|
|
|
|
let co =await getListCopy(this.page.currentPage, this.page.pageSize,a ); |
|
|
|
|
if(num == 1){ |
|
|
|
|
this.optionser = co.data.data.records; |
|
|
|
|
console.log(this.optionser,'始发仓数据') |
|
|
|
|
}else{ |
|
|
|
|
this.goalSer = co.data.data.records; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
}, |
|
|
|
|
|
|
|
|
|
remoteMethodBin(query){ |
|
|
|
|
// 始发仓库下拉 |
|
|
|
|
FnDeparture(query){ |
|
|
|
|
if (query) { |
|
|
|
|
this.loading = true; |
|
|
|
|
setTimeout(async () => { |
|
|
|
|
this.loading = false; |
|
|
|
|
console.log( "this.form.province",this.form.province); |
|
|
|
|
|
|
|
|
|
let list = await getListBinName(this.page.currentPage, this.page.pageSize, { name: query }); |
|
|
|
|
console.log(list,'list'); |
|
|
|
|
this.optionser = list.data.data.records.filter((item) => { |
|
|
|
|
console.log( "this.optionser",this.optionser); |
|
|
|
|
return item.name.toLowerCase().includes(query.toLowerCase()) |
|
|
|
|
}) |
|
|
|
|
}, 200) |
|
|
|
@ -388,6 +392,23 @@ export default {
|
|
|
|
|
this.optionser = []; |
|
|
|
|
} |
|
|
|
|
}, |
|
|
|
|
// 目的仓库下拉 |
|
|
|
|
remoteMethodBin(query){ |
|
|
|
|
if (query) { |
|
|
|
|
this.loading = true; |
|
|
|
|
setTimeout(async () => { |
|
|
|
|
this.loading = false; |
|
|
|
|
let list = await getListBinName(this.page.currentPage, this.page.pageSize, { name: query }); |
|
|
|
|
console.log(list,'list'); |
|
|
|
|
this.goalSer = list.data.data.records.filter((item) => { |
|
|
|
|
console.log( "this.goalGranary",this.goalSer); |
|
|
|
|
return item.name.toLowerCase().includes(query.toLowerCase()) |
|
|
|
|
}) |
|
|
|
|
}, 200) |
|
|
|
|
} else { |
|
|
|
|
this.goalSer = []; |
|
|
|
|
} |
|
|
|
|
}, |
|
|
|
|
init () { |
|
|
|
|
this.height = this.setPx(document.body.clientHeight - 155); |
|
|
|
|
//字典 |
|
|
|
@ -437,6 +458,7 @@ export default {
|
|
|
|
|
} |
|
|
|
|
}, |
|
|
|
|
handleSubmit (from) { |
|
|
|
|
console.log(this.form,'this.form') |
|
|
|
|
this.$refs[from].validate(async (valid) => { |
|
|
|
|
if (valid) { |
|
|
|
|
|
|
|
|
@ -445,6 +467,8 @@ export default {
|
|
|
|
|
await this.bianLier(this.costListName,this.clientType,this.costList,fei); |
|
|
|
|
this.form.fei = Object.fromEntries(fei); |
|
|
|
|
this.form.freightMark = undefined; |
|
|
|
|
console.log(this.from,'当前表单的值') |
|
|
|
|
|
|
|
|
|
if(this.pan){ |
|
|
|
|
this.$message.warning("请填写完整已勾选的数据费用"); |
|
|
|
|
return |
|
|
|
@ -465,9 +489,11 @@ export default {
|
|
|
|
|
type: "success", |
|
|
|
|
message: "操作成功!" |
|
|
|
|
}); |
|
|
|
|
this.contextmenuFlag = false; |
|
|
|
|
this.$store.commit('DEL_TAG_CURRENT'); |
|
|
|
|
this.$router.push(this.tagWel); |
|
|
|
|
this.contextmenuFlag = false; |
|
|
|
|
this.$store.commit('DEL_TAG_CURRENT'); //关闭当前页面 |
|
|
|
|
this.$router.push('/basicdata/brand/basicZonePrice'); //添加成功跳转到列表 |
|
|
|
|
// this.$router.push(this.tagWel); |
|
|
|
|
console.log('执行了新增操作'); |
|
|
|
|
}); |
|
|
|
|
} else { |
|
|
|
|
let fe = new Map(); |
|
|
|
@ -496,8 +522,12 @@ export default {
|
|
|
|
|
message: "操作成功!" |
|
|
|
|
}); |
|
|
|
|
this.contextmenuFlag = false; |
|
|
|
|
console.log('执行了编辑操作'); |
|
|
|
|
this.$store.commit('DEL_TAG_CURRENT'); |
|
|
|
|
this.$router.push(this.tagWel); |
|
|
|
|
this.$router.push('/basicdata/brand/basicZonePrice'); //添加成功跳转到列表 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// this.$router.push(this.tagWel); |
|
|
|
|
}) |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|