|
@@ -68,6 +68,18 @@
|
|
|
</a-select>
|
|
|
</a-form-item>
|
|
|
</a-col>
|
|
|
+ <a-col :md="6" :sm="24">
|
|
|
+ <a-form-item label="电力线路">
|
|
|
+ <a-select v-model="queryParam.baoyangTimes" placeholder="请选择">
|
|
|
+ <a-select-option
|
|
|
+ v-for="(label,value) in lineMap"
|
|
|
+ :key="value"
|
|
|
+ :label="label"
|
|
|
+ :value="parseInt(value)">{{ label }}
|
|
|
+ </a-select-option>
|
|
|
+ </a-select>
|
|
|
+ </a-form-item>
|
|
|
+ </a-col>
|
|
|
<a-col :md="6" :sm="24">
|
|
|
<a-form-item label="生产商">
|
|
|
<a-input v-model="queryParam.producerName" placeholder="生产商名称"/>
|
|
@@ -285,6 +297,7 @@ export default {
|
|
|
visible: true,
|
|
|
sbPositionData: [],
|
|
|
levelMap: {},
|
|
|
+ lineMap: {},
|
|
|
unitMap: {},
|
|
|
areaList: {},
|
|
|
companyList: {},
|
|
@@ -536,6 +549,7 @@ export default {
|
|
|
this.useTypeMap = this.DictCache.getLabelByValueMapByType(this.DictCache.TYPE.SB_USE_TYPE)
|
|
|
this.isChildMap = this.DictCache.getLabelByValueMapByType(this.DictCache.TYPE.SB_IS_CHILD)
|
|
|
this.isShowMap = this.DictCache.getLabelByValueMapByType(this.DictCache.TYPE.SB_IS_SHOW)
|
|
|
+ this.lineMap = this.DictCache.getLabelByValueMapByType(this.DictCache.TYPE.REMOTE_LINE)
|
|
|
querySbPosition().then(res => {
|
|
|
this.sbPositionData = res.data
|
|
|
})
|