站点新增 停车费率描述字段

This commit is contained in:
Lemon
2023-09-11 08:58:33 +08:00
parent ed1699b9ab
commit 660e666f93
7 changed files with 34 additions and 6 deletions

View File

@@ -216,6 +216,14 @@
></el-input>
</el-form-item>
</el-col>
<el-col :span="6">
<el-form-item prop="parkFeeDescribe" label="停车费率描述">
<el-input
v-model="station.parkFeeDescribe"
required="true"
></el-input>
</el-form-item>
</el-col>
</el-row>
</el-form>
<el-button
@@ -254,6 +262,7 @@ export default {
stationTel: "",
matchCars: "",
parkingNumber: "",
parkFeeDescribe: "",
selectMatchCars: [],
publicFlag: "",
openFlag: "",
@@ -486,6 +495,7 @@ export default {
},
// 修改充电站信息
async subUpdate() {
console.log("this.station", this.station);
await updateStation(this.station);
},
},