update 后管页面新增独立报桩字段

This commit is contained in:
Lemon
2025-04-28 16:38:35 +08:00
parent 297c251274
commit 0c76d906b3
4 changed files with 31 additions and 1 deletions

View File

@@ -186,6 +186,19 @@
<el-input v-model="station.accountNumber" required="true"></el-input>
</el-form-item>
</el-col>
<el-col :span="6">
<el-form-item prop="aloneApply" label="是否独立报桩">
<el-select v-model="station.aloneApply" placeholder="请选择">
<el-option
v-for="item in aloneApplyOptions"
:key="item.value"
:label="item.label"
:value="item.value"
>
</el-option>
</el-select>
</el-form-item>
</el-col>
<el-col :span="6">
<el-form-item prop="capacity" label="容量">
<el-input v-model="station.capacity" required="true"></el-input>
@@ -242,6 +255,7 @@ export default {
address: "",
stationTel: "",
matchCars: "",
aloneApply: "",
parkingNumber: "",
parkFeeDescribe: "",
accountNumber: "",
@@ -283,6 +297,16 @@ export default {
label: "否",
},
],
aloneApplyOptions: [
{
value: "1",
label: "是",
},
{
value: "0",
label: "否",
},
],
rules: {
stationName: [
{