mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-06 03:58:05 +08:00
fix(Area): Columns placeholder return value keep undefined (#2197)
This commit is contained in:
parent
8021bb4ee7
commit
dd44c3be0a
@ -92,7 +92,10 @@ VantComponent({
|
||||
// parse output columns data
|
||||
parseOutputValues(values) {
|
||||
const { columnsPlaceholder } = this.data;
|
||||
return values.map((value = {}, index) => {
|
||||
return values.map((value, index) => {
|
||||
// save undefined value
|
||||
if (!value) return value;
|
||||
|
||||
value = JSON.parse(JSON.stringify(value));
|
||||
if (!value.code || value.name === columnsPlaceholder[index]) {
|
||||
value.code = '';
|
||||
|
Loading…
x
Reference in New Issue
Block a user