Browse Source

修复区域价格新增下拉选择问题

dev-xx
马远东 1 year ago
parent
commit
04c1f2812f
  1. 54
      src/views/basicdata/brand/basicZonePriceFrom.vue
  2. 31
      src/views/basicdata/warehouse/warehouse/basicdataWarehouseTemp.vue

54
src/views/basicdata/brand/basicZonePriceFrom.vue

@ -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);
})
}
}

31
src/views/basicdata/warehouse/warehouse/basicdataWarehouseTemp.vue

@ -88,7 +88,7 @@
<el-cascader v-model="Addform.name" :options="areaoptions" placeholder="省/市/区" />
</el-form-item>
<el-form-item label="职能类型1">
<el-form-item label="职能类型">
<el-select v-model="Addform.name" clearable placeholder="请选择职能类型" >
<el-option
v-for="item in options"
@ -104,7 +104,7 @@
</el-form-item>
<el-form-item label="仓库地址">
<el-input v-model="Addform.name" placeholder="请输入仓库地址" />
<avue-input-map :params="params" placeholder="请选择地图" v-model="Addform.map" ></avue-input-map>
</el-form-item>
<el-form-item label="所属部门">
@ -212,29 +212,10 @@ const options = ref([{
const search = ref(false); //
const query = ref({}); //
const newlyaddload = ref(false); //
const Addform = ref({}); //
const optionsss = [
{
value: 'Option1',
label: 'Option1',
},
{
value: 'Option2',
label: 'Option2',
},
{
value: 'Option3',
label: 'Option3',
},
{
value: 'Option4',
label: 'Option4',
},
{
value: 'Option5',
label: 'Option5',
},
]
const Addform = ref({
map:[],
}); //
//
const searchChangeS = () => {
query.value = {};

Loading…
Cancel
Save