|
@@ -57,7 +57,12 @@
|
|
</a-col>
|
|
</a-col>
|
|
<a-col :span="4" v-if="queryParam.ccmNo === '6'">
|
|
<a-col :span="4" v-if="queryParam.ccmNo === '6'">
|
|
<a-form-item label="车位号">
|
|
<a-form-item label="车位号">
|
|
- <a-select style="width: 100%" v-model:value="queryParam.positionNum" placeholder="请选择" :options="carPosition" />
|
|
|
|
|
|
+ <a-select style="width: 100%" v-model:value="queryParam.positionNum" placeholder="请选择" :options="carPosition6" />
|
|
|
|
+ </a-form-item>
|
|
|
|
+ </a-col>
|
|
|
|
+ <a-col :span="4" v-else>
|
|
|
|
+ <a-form-item label="车位号">
|
|
|
|
+ <a-select style="width: 100%" v-model:value="queryParam.positionNum" placeholder="请选择" :options="carPosition5" />
|
|
</a-form-item>
|
|
</a-form-item>
|
|
</a-col>
|
|
</a-col>
|
|
</a-row>
|
|
</a-row>
|
|
@@ -75,7 +80,7 @@
|
|
<template #form-positionNum="{ model, field }">
|
|
<template #form-positionNum="{ model, field }">
|
|
<a-radio-group v-model:value="model[field]" button-style="solid" @change="() => reload()">
|
|
<a-radio-group v-model:value="model[field]" button-style="solid" @change="() => reload()">
|
|
<a-radio-button value="1" v-if="Number(machine) === 5">1号车位</a-radio-button>
|
|
<a-radio-button value="1" v-if="Number(machine) === 5">1号车位</a-radio-button>
|
|
- <a-radio-button value="2" v-if="Number(machine) === 6">2号车位</a-radio-button>
|
|
|
|
|
|
+ <a-radio-button value="2">2号车位</a-radio-button>
|
|
<a-radio-button value="3" v-if="Number(machine) === 6">3号车位</a-radio-button>
|
|
<a-radio-button value="3" v-if="Number(machine) === 6">3号车位</a-radio-button>
|
|
<a-radio-button value="4" v-if="Number(machine) === 6">4号车位</a-radio-button>
|
|
<a-radio-button value="4" v-if="Number(machine) === 6">4号车位</a-radio-button>
|
|
</a-radio-group>
|
|
</a-radio-group>
|
|
@@ -125,7 +130,7 @@
|
|
import { BasicTable, TableAction } from '/@/components/Table';
|
|
import { BasicTable, TableAction } from '/@/components/Table';
|
|
import JSearchSelect from '/@/components/Form/src/jeecg/components/JSearchSelect.vue';
|
|
import JSearchSelect from '/@/components/Form/src/jeecg/components/JSearchSelect.vue';
|
|
import { useListPage } from '/@/hooks/system/useListPage';
|
|
import { useListPage } from '/@/hooks/system/useListPage';
|
|
- import { columns, initDictConfig, queryParam, searchFormSchema, carPosition } from './shippingBill.data';
|
|
|
|
|
|
+ import { columns, initDictConfig, queryParam, searchFormSchema, carPosition6, carPosition5 } from './shippingBill.data';
|
|
import { deleteOne, batchDelete } from './shippingBill.api';
|
|
import { deleteOne, batchDelete } from './shippingBill.api';
|
|
import { defHttp } from '/@/utils/http/axios';
|
|
import { defHttp } from '/@/utils/http/axios';
|
|
import { onMounted, ref, reactive } from 'vue';
|
|
import { onMounted, ref, reactive } from 'vue';
|