|
@@ -3,6 +3,7 @@
|
|
|
<el-button type="primary" @click="save" style="margin:20px">保存</el-button>
|
|
|
<el-button type="primary" @click="back" style="margin:20px">返回</el-button>
|
|
|
<el-button type="primary" @click="station" style="margin:20px">场站</el-button>
|
|
|
+ <div class="unit">单位:万kwh</div>
|
|
|
<!-- 表格 -->
|
|
|
<el-table :data="tableData" style="width:98%;margin:20px" max-height="800px">
|
|
|
<el-table-column
|
|
@@ -15,7 +16,8 @@
|
|
|
width="160"
|
|
|
>
|
|
|
<template slot-scope="scope">
|
|
|
- <el-input @input="send(scope.row)" v-if="scope.row.name =='止码' && i != 'name' && i != 'date'" v-model="scope.row[i]" :disabled='routerData.isConfirm == 1'></el-input>
|
|
|
+ <!-- <el-input @input="send(scope.row)" v-if="scope.row.name =='止码' && i != 'name' && i != 'date'" v-model="scope.row[i]" :disabled='routerData.isConfirm == 1'></el-input> -->
|
|
|
+ <el-input @input="send(scope.row)" v-if="scope.row.name =='止码' && i != 'name' && i != 'date'" v-model="scope.row[i]" :disabled='true'></el-input>
|
|
|
<label v-else>{{scope.row[i]}}</label>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
@@ -41,7 +43,7 @@ export default {
|
|
|
},
|
|
|
created() {
|
|
|
this.fetch();
|
|
|
- console.log(this.routerData)
|
|
|
+ // console.log(this.routerData)
|
|
|
},
|
|
|
|
|
|
mounted() {},
|
|
@@ -58,11 +60,11 @@ export default {
|
|
|
}
|
|
|
this.tableData = res.data;
|
|
|
|
|
|
- console.log(res.data);
|
|
|
+ // console.log(res.data);
|
|
|
var name = ['2_dfds','8_fdf','1_fdjkf'];
|
|
|
var aaa = this.px(name);
|
|
|
|
|
|
- console.log(aaa);
|
|
|
+ // console.log(aaa);
|
|
|
|
|
|
},
|
|
|
px(name){
|
|
@@ -77,10 +79,10 @@ export default {
|
|
|
},
|
|
|
async save(){
|
|
|
var obj = this.tableData[2];
|
|
|
- console.log(this.tableData);
|
|
|
+ // console.log(this.tableData);
|
|
|
const wpid = this.routerData.data.wpid;
|
|
|
obj.wpid=wpid
|
|
|
- console.log(obj)
|
|
|
+ // console.log(obj)
|
|
|
const res = await this.$http.post(
|
|
|
`analysisplus/bdzupdate`,obj
|
|
|
);
|
|
@@ -108,9 +110,8 @@ export default {
|
|
|
case 'date':
|
|
|
return '日期';
|
|
|
break;
|
|
|
-
|
|
|
default:
|
|
|
- return val.split("_")[1]
|
|
|
+ return val.split("_")[1].replace('111kV', '110kV')
|
|
|
break;
|
|
|
}
|
|
|
},
|
|
@@ -125,4 +126,8 @@ body {
|
|
|
.main {
|
|
|
width: 100%;
|
|
|
}
|
|
|
+.unit{
|
|
|
+ margin-left: 20px;
|
|
|
+ color: #353535;
|
|
|
+}
|
|
|
</style>
|