|
|
|
@ -2,14 +2,34 @@ |
|
|
|
|
<basic-container> |
|
|
|
|
<template> |
|
|
|
|
<el-row :span="24"> |
|
|
|
|
<el-col :span="6"> |
|
|
|
|
场站:{{stationValue}} |
|
|
|
|
<el-col :span="5"> |
|
|
|
|
场站: |
|
|
|
|
<el-select v-model="stationValue" disabled="disabled"> |
|
|
|
|
<el-option |
|
|
|
|
v-for="item in options" |
|
|
|
|
:key="item.value" |
|
|
|
|
:label="item.label" |
|
|
|
|
:value="item.value"> |
|
|
|
|
</el-option> |
|
|
|
|
</el-select> |
|
|
|
|
</el-col> |
|
|
|
|
<el-col :span="6"> |
|
|
|
|
KKS编码:{{kksEncodingValue}} |
|
|
|
|
KKS编码:<el-input |
|
|
|
|
type="text" |
|
|
|
|
resize="none" |
|
|
|
|
v-model="kksEncodingValue" |
|
|
|
|
style="width: 300px;" |
|
|
|
|
disabled="disabled"> |
|
|
|
|
</el-input> |
|
|
|
|
</el-col> |
|
|
|
|
<el-col :span="6"> |
|
|
|
|
KKS描述:{{kksDesValue}} |
|
|
|
|
<el-col :span="9"> |
|
|
|
|
KKS描述:<el-input |
|
|
|
|
type="text" |
|
|
|
|
resize="none" |
|
|
|
|
v-model="kksDesValue" |
|
|
|
|
style="width: 500px;" |
|
|
|
|
disabled="disabled"> |
|
|
|
|
</el-input> |
|
|
|
|
</el-col> |
|
|
|
|
</el-row> |
|
|
|
|
</template> |
|
|
|
@ -77,7 +97,20 @@ export default { |
|
|
|
|
name: "dynamicledgerDetail", |
|
|
|
|
data () { |
|
|
|
|
return { |
|
|
|
|
stationValue:this.$route.query.station, |
|
|
|
|
stationValue: this.$route.query.station, |
|
|
|
|
options: [{ |
|
|
|
|
value: 1, |
|
|
|
|
label: '景和光伏' |
|
|
|
|
}, { |
|
|
|
|
value: 2, |
|
|
|
|
label: '北沙一光伏' |
|
|
|
|
}, { |
|
|
|
|
value: 3, |
|
|
|
|
label: '北沙二光伏' |
|
|
|
|
}, { |
|
|
|
|
value: 4, |
|
|
|
|
label: '达坂城风电一场' |
|
|
|
|
}], |
|
|
|
|
kksEncodingValue:this.$route.query.kksEncoding, |
|
|
|
|
kksDesValue:this.$route.query.kksDescription, |
|
|
|
|
frame_class: '', |
|
|
|
|