|
|
@@ -10,7 +10,7 @@ |
|
|
|
:left-arrow="true" |
|
|
|
@click-left="onNavBack" |
|
|
|
v-if="showLeftArrow" |
|
|
|
style="position: fixed; left: 0; top: 0;width: 100vw;" |
|
|
|
style="position: fixed; left: 0; top: 0; width: 100vw" |
|
|
|
> |
|
|
|
<template #left> |
|
|
|
<van-icon name="arrow-left" size="23" style="padding: 0" />返回 |
|
|
@@ -160,7 +160,7 @@ export default { |
|
|
|
selects(val) { |
|
|
|
let temp = JSON.parse(val) |
|
|
|
let tempt = temp.filter((item) => { |
|
|
|
if (item.select) { |
|
|
|
if (item.select >= 0) { |
|
|
|
return true |
|
|
|
} |
|
|
|
}) |
|
|
@@ -216,7 +216,7 @@ export default { |
|
|
|
for (let index = 0; index < a1.length; index++) { |
|
|
|
option.push({ |
|
|
|
label: a1[index], |
|
|
|
value: index + 1, |
|
|
|
value: index, |
|
|
|
}) |
|
|
|
} |
|
|
|
tempt.Option = option |
|
|
|