瀏覽代碼

1、修改错误标题
2、禁止输入框
3、增加单位

chenminghua 3 年之前
父節點
當前提交
e60ad31b93
共有 3 個文件被更改,包括 22 次插入10 次删除
  1. 1 1
      src/views/Home.vue
  2. 13 8
      src/views/base.vue
  3. 8 1
      src/views/station.vue

+ 1 - 1
src/views/Home.vue

@@ -110,7 +110,7 @@ export default {
         `analysisplus/commit`,row
       );
      res.status == 200 ? this.fetch():''
-      console.log(res)
+      // console.log(res)
     },
     async sort(ary,key) {
       return ary.sort(function(a,b){

+ 13 - 8
src/views/base.vue

@@ -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>

+ 8 - 1
src/views/station.vue

@@ -33,12 +33,19 @@
           align="center"
         >
           <template slot-scope="scope">
-            <el-input
+           <!-- <el-input
               v-if="tableString.indexOf(i) != -1"
               :disabled="scope.row['是否可编辑'] == 1 || routerData.isConfirm == 1"
               size="mini"
               @change="changeNum(scope.row)"
               v-model="scope.row[i]"
+            ></el-input> -->
+            <el-input
+              v-if="tableString.indexOf(i) != -1"
+              :disabled="true"
+              size="mini"
+              @change="changeNum(scope.row)"
+              v-model="scope.row[i]"
             ></el-input>
             <label v-else>{{ scope.row[i] }}</label>
           </template>