mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-06 03:58:05 +08:00
fix(cascader): fix error display of async data
This commit is contained in:
parent
cbc6cc88b1
commit
4ccb1eeb67
@ -38,7 +38,8 @@
|
|||||||
"packNpmRelationList": [],
|
"packNpmRelationList": [],
|
||||||
"minifyWXSS": true,
|
"minifyWXSS": true,
|
||||||
"showES6CompileOption": false,
|
"showES6CompileOption": false,
|
||||||
"ignoreUploadUnusedFiles": true
|
"ignoreUploadUnusedFiles": true,
|
||||||
|
"condition": false
|
||||||
},
|
},
|
||||||
"compileType": "miniprogram",
|
"compileType": "miniprogram",
|
||||||
"libVersion": "2.6.5",
|
"libVersion": "2.6.5",
|
||||||
@ -333,6 +334,12 @@
|
|||||||
"pathName": "pages/divider/index",
|
"pathName": "pages/divider/index",
|
||||||
"query": "",
|
"query": "",
|
||||||
"scene": null
|
"scene": null
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "cascader",
|
||||||
|
"pathName": "pages/cascader/index",
|
||||||
|
"query": "",
|
||||||
|
"scene": null
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
@ -24,7 +24,6 @@ VantComponent({
|
|||||||
title: String,
|
title: String,
|
||||||
value: {
|
value: {
|
||||||
type: String,
|
type: String,
|
||||||
observer: 'updateValue',
|
|
||||||
},
|
},
|
||||||
placeholder: {
|
placeholder: {
|
||||||
type: String,
|
type: String,
|
||||||
@ -37,7 +36,6 @@ VantComponent({
|
|||||||
options: {
|
options: {
|
||||||
type: Array,
|
type: Array,
|
||||||
value: [],
|
value: [],
|
||||||
observer: 'updateOptions',
|
|
||||||
},
|
},
|
||||||
swipeable: {
|
swipeable: {
|
||||||
type: Boolean,
|
type: Boolean,
|
||||||
@ -68,6 +66,16 @@ VantComponent({
|
|||||||
textKey: FieldName.TEXT,
|
textKey: FieldName.TEXT,
|
||||||
valueKey: FieldName.VALUE,
|
valueKey: FieldName.VALUE,
|
||||||
childrenKey: FieldName.CHILDREN,
|
childrenKey: FieldName.CHILDREN,
|
||||||
|
innerValue: '',
|
||||||
|
},
|
||||||
|
|
||||||
|
watch: {
|
||||||
|
options() {
|
||||||
|
this.updateTabs();
|
||||||
|
},
|
||||||
|
value(newVal) {
|
||||||
|
this.updateValue(newVal);
|
||||||
|
},
|
||||||
},
|
},
|
||||||
|
|
||||||
created() {
|
created() {
|
||||||
@ -75,11 +83,7 @@ VantComponent({
|
|||||||
},
|
},
|
||||||
|
|
||||||
methods: {
|
methods: {
|
||||||
updateOptions(val, oldVal) {
|
updateValue(val: string) {
|
||||||
const isAsync = !!(val.length && oldVal.length);
|
|
||||||
this.updateTabs(isAsync);
|
|
||||||
},
|
|
||||||
updateValue(val) {
|
|
||||||
if (val !== undefined) {
|
if (val !== undefined) {
|
||||||
const values = this.data.tabs.map(
|
const values = this.data.tabs.map(
|
||||||
(tab: ITab) => tab.selected && tab.selected[this.data.valueKey]
|
(tab: ITab) => tab.selected && tab.selected[this.data.valueKey]
|
||||||
@ -88,6 +92,9 @@ VantComponent({
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
this.innerValue = val;
|
||||||
|
|
||||||
this.updateTabs();
|
this.updateTabs();
|
||||||
},
|
},
|
||||||
updateFieldNames() {
|
updateFieldNames() {
|
||||||
@ -121,11 +128,19 @@ VantComponent({
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
updateTabs(isAsync = false) {
|
updateTabs() {
|
||||||
const { options, value } = this.data;
|
const { options } = this.data;
|
||||||
|
const { innerValue } = this;
|
||||||
|
|
||||||
if (value !== undefined) {
|
if (!options.length) {
|
||||||
const selectedOptions = this.getSelectedOptionsByValue(options, value);
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (innerValue !== undefined) {
|
||||||
|
const selectedOptions = this.getSelectedOptionsByValue(
|
||||||
|
options,
|
||||||
|
innerValue
|
||||||
|
);
|
||||||
|
|
||||||
if (selectedOptions) {
|
if (selectedOptions) {
|
||||||
let optionsCursor = options;
|
let optionsCursor = options;
|
||||||
@ -167,17 +182,6 @@ VantComponent({
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// 异步更新
|
|
||||||
if (isAsync) {
|
|
||||||
const { tabs } = this.data;
|
|
||||||
tabs[tabs.length - 1].options =
|
|
||||||
options[options.length - 1][this.data.childrenKey];
|
|
||||||
this.setData({
|
|
||||||
tabs,
|
|
||||||
});
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
this.setData({
|
this.setData({
|
||||||
tabs: [
|
tabs: [
|
||||||
{
|
{
|
||||||
@ -239,12 +243,16 @@ VantComponent({
|
|||||||
|
|
||||||
const selectedOptions = tabs.map((tab) => tab.selected).filter(Boolean);
|
const selectedOptions = tabs.map((tab) => tab.selected).filter(Boolean);
|
||||||
|
|
||||||
|
const value = option[valueKey];
|
||||||
|
|
||||||
const params = {
|
const params = {
|
||||||
value: option[valueKey],
|
value,
|
||||||
tabIndex,
|
tabIndex,
|
||||||
selectedOptions,
|
selectedOptions,
|
||||||
};
|
};
|
||||||
|
|
||||||
|
this.innerValue = value;
|
||||||
|
|
||||||
this.$emit('change', params);
|
this.$emit('change', params);
|
||||||
|
|
||||||
if (!option[childrenKey]) {
|
if (!option[childrenKey]) {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user