mirror of
https://codeup.aliyun.com/67c68d4e484ca2f0a13ac3c1/ydc/jsowell-charger-web.git
synced 2026-05-08 03:50:13 +08:00
update 后管页面新增独立报桩字段
This commit is contained in:
@@ -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: [
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user