修改element样式

This commit is contained in:
BOOL\25024
2023-08-09 15:16:18 +08:00
parent a1b6797de1
commit ad87591274
2 changed files with 198 additions and 80 deletions

View File

@@ -115,11 +115,6 @@
></el-input>
</el-form-item>
</el-col>
<el-col :span="6">
<el-form-item prop="parkingNumber" label="停车场库编号">
<el-input v-model="station.parkingNumber" required="true"></el-input>
</el-form-item>
</el-col>
</el-row>
<el-row :gutter="24">
@@ -213,6 +208,14 @@
<el-input v-model="station.businessHours"></el-input>
</el-form-item>
</el-col>
<el-col :span="6">
<el-form-item prop="parkingNumber" label="停车场库编号">
<el-input
v-model="station.parkingNumber"
required="true"
></el-input>
</el-form-item>
</el-col>
</el-row>
</el-form>
<el-button
@@ -456,7 +459,7 @@ export default {
},
// 渲染表格数据
async queryStationInfo() {
this.fileList=[];
this.fileList = [];
const res = await getStationInfo(this.stationId);
console.log(res);
this.station = res.data;
@@ -532,3 +535,9 @@ export default {
},
};
</script>
<style lang="scss" scoped>
::v-deep .el-select > .el-input,
::v-deep .el-cascader .el-input {
width: 283px;
}
</style>