|
@@ -85,7 +85,7 @@
|
|
|
/>
|
|
|
<van-popup v-model:show="showPicker.industryOptionId" position="bottom">
|
|
|
<van-picker
|
|
|
- :columns="propsOptions.industryOptionId"
|
|
|
+ :columns="columns.industryOptionId"
|
|
|
@confirm="(val) => onConfirm(val, 'industryOptionId')"
|
|
|
@cancel="showPicker.industryOptionId = false"
|
|
|
/>
|
|
@@ -104,7 +104,7 @@
|
|
|
/>
|
|
|
<van-popup v-model:show="showPicker.hardwareOptionId" position="bottom">
|
|
|
<van-picker
|
|
|
- :columns="propsOptions.hardwareOptionId"
|
|
|
+ :columns="columns.hardwareOptionId"
|
|
|
@confirm="(val) => onConfirm(val, 'hardwareOptionId')"
|
|
|
@cancel="showPicker.hardwareOptionId = false"
|
|
|
/>
|
|
@@ -124,7 +124,7 @@
|
|
|
/>
|
|
|
<van-popup v-model:show="showPicker.softwareOptionId" position="bottom">
|
|
|
<van-picker
|
|
|
- :columns="propsOptions.softwareOptionId"
|
|
|
+ :columns="columns.softwareOptionId"
|
|
|
@confirm="(val) => onConfirm(val, 'softwareOptionId')"
|
|
|
@cancel="showPicker.softwareOptionId = false"
|
|
|
/>
|
|
@@ -226,7 +226,7 @@
|
|
|
const props = defineProps(['columns', 'addres']);
|
|
|
const emit = defineEmits(['submit']);
|
|
|
import { showToast } from 'vant';
|
|
|
- // const propsOptions = props.columns;
|
|
|
+ // const columns = props.columns;
|
|
|
const loading = ref(false);
|
|
|
const submits = ref(null);
|
|
|
const setObjId = ref({
|