Commit aa9e572e authored by 军师中郎将's avatar 军师中郎将

1 场站类型使用 字典实现

parent 121c4d37
...@@ -158,11 +158,7 @@ ...@@ -158,11 +158,7 @@
<el-col :span="11"> <el-col :span="11">
<el-form-item label="场站类型" prop="siteStationType"> <el-form-item label="场站类型" prop="siteStationType">
<el-select v-model="form.siteStationType" placeholder="请选择场站类型" style="width: 100%"> <el-select v-model="form.siteStationType" placeholder="请选择场站类型" style="width: 100%">
<el-option label="加气站" value="1" /> <el-option v-for="dict in siteStationTypeOptions" :key="dict.dictValue" :label="dict.dictLabel" :value="dict.dictValue" />
<el-option label="门站" value="2" />
<el-option label="调压站" value="3" />
<el-option label="储备站" value="4" />
<el-option label="气化站" value="5" />
</el-select> </el-select>
</el-form-item> </el-form-item>
</el-col> </el-col>
...@@ -503,7 +499,7 @@ export default { ...@@ -503,7 +499,7 @@ export default {
title: "", title: "",
// 是否显示弹出层 // 是否显示弹出层
open: false, open: false,
// 场站类型:1.加气站 2.门站 3.调压站 4.储备站 5.气化站字典 // 场站类型:1.加气站 2.门站 3.调压站 4.储备站 5.气化站 6.灌装站
siteStationTypeOptions: [], siteStationTypeOptions: [],
// 查询参数 // 查询参数
queryParams: { queryParams: {
...@@ -575,7 +571,7 @@ export default { ...@@ -575,7 +571,7 @@ export default {
this.loading = false; this.loading = false;
}); });
}, },
// 场站类型:1.加气站 2.门站 3.调压站 4.储备站 5.气化站字典翻译 // 场站类型:1.加气站 2.门站 3.调压站 4.储备站 5.气化站 6.灌装转 字典翻译
siteStationTypeFormat(row, column) { siteStationTypeFormat(row, column) {
return this.selectDictLabel(this.siteStationTypeOptions, row.siteStationType); return this.selectDictLabel(this.siteStationTypeOptions, row.siteStationType);
}, },
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment