meixioacomponent 0.2.77 → 0.2.78
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -343,14 +343,12 @@ export default {
|
|
|
343
343
|
|
|
344
344
|
confirmValue() {
|
|
345
345
|
let value = {};
|
|
346
|
-
let valueId =
|
|
347
|
-
let valueStr = "";
|
|
346
|
+
let valueId = [];
|
|
348
347
|
for (let i = 0; i < this.areaValue.length; i++) {
|
|
349
348
|
const item = this.areaValue[i];
|
|
350
349
|
const flag = i == this.areaValue.length - 1;
|
|
351
350
|
value[`${areaConfig[i].value}`] = item.label;
|
|
352
|
-
valueId
|
|
353
|
-
valueStr += `${flag ? `${item.label}` : `${item.label}/`}`;
|
|
351
|
+
valueId.push(item.value);
|
|
354
352
|
}
|
|
355
353
|
value.idList = valueId;
|
|
356
354
|
value.valueStr = valueStr;
|