界面优化

This commit is contained in:
jia 2023-09-26 20:55:17 +08:00
commit 48e1f72f3f
2 changed files with 6 additions and 5 deletions

View File

@ -574,7 +574,7 @@
area_code: code area_code: code
}).then(res => { }).then(res => {
this.$refs.uPicker.setColumnValues(1, res.data); this.$refs.uPicker.setColumnValues(1, res.data);
console.log(res.data, 9999)
}); });
}, },

View File

@ -335,7 +335,7 @@
}, },
// //
list(isPage, id) { list(isPage, id) {
// console.log('1111111')
let that = this; let that = this;
if (that.loadend) return; if (that.loadend) return;
if (that.loading) return; if (that.loading) return;
@ -350,6 +350,7 @@
street_code:id, street_code:id,
category_id:0 category_id:0
}).then(res => { }).then(res => {
// console.log(222)
let list = res.data.list; let list = res.data.list;
let productList = that.$util.SplitArray(list, that.productList); let productList = that.$util.SplitArray(list, that.productList);
let loadend = list.length < that.where.limit; let loadend = list.length < that.where.limit;
@ -430,8 +431,8 @@
this.street = e.value[1].name this.street = e.value[1].name
this.street_id = e.value[1].code this.street_id = e.value[1].code
this.town = e.value[1].name this.town = e.value[1].name
this.productList = [] this.loadend = false;
this.list(true, this.street_id) this.list(true, this.street_id)
this.$nextTick(() => { this.$nextTick(() => {
this.$bus.$emit('value-updated', e.value[1].name + ',' + e.value[1].code); this.$bus.$emit('value-updated', e.value[1].name + ',' + e.value[1].code);
@ -521,7 +522,7 @@
this.street = e.value[1].name this.street = e.value[1].name
this.street_id = e.value[1].code this.street_id = e.value[1].code
this.town = e.value[1].name this.town = e.value[1].name
this.productList = [] this.loadend = false;
this.list(true, this.street_id) this.list(true, this.street_id)
}, },
selfLocation() { selfLocation() {