浏览代码

指标修改,采集查询

rain 1 年之前
父节点
当前提交
745839415a
共有 2 个文件被更改,包括 20 次插入8 次删除
  1. 11 0
      src/views/GATHER/index.vue
  2. 9 8
      src/views/norm/feeindex.vue

+ 11 - 0
src/views/GATHER/index.vue

@@ -68,6 +68,12 @@
           />
         </el-select>
       </el-form-item>
+	   <el-form-item label="年度" prop="acname">
+        <el-input v-model="queryParams.year" placeholder="请输入年度"></el-input>
+      </el-form-item>
+	   <el-form-item label="月份" prop="acname">
+        <el-input v-model="queryParams.month" placeholder="请输入月份"></el-input>
+      </el-form-item>	  
       <el-form-item>
         <el-button
           type="primary"
@@ -146,6 +152,11 @@
           <span v-if="scope.row.type == 1">月报表数据</span>
         </template>
       </el-table-column>
+      <el-table-column label="年份" align="center" prop="month">
+        <template slot-scope="scope">
+          {{ scope.row.year }}
+        </template>
+      </el-table-column>	  
       <el-table-column label="月份" align="center" prop="month">
         <template slot-scope="scope">
           {{ scope.row.month }}

+ 9 - 8
src/views/norm/feeindex.vue

@@ -508,19 +508,20 @@ export default {
 
           this.form.normId = this.normId;
           this.form.status = 1;
-          // if (this.form.id != null) {
-          //   updateNORMFEE(this.form).then(response => {
-          //     this.$modal.msgSuccess("修改成功");
-          //     this.open = false;
-          //     this.getList();
-          //   });
-          // } else {
+           if (this.form.id != null) {
+             updateNORMFEE(this.form).then(response => {
+               this.$modal.msgSuccess("修改成功");
+               this.open = false;
+               this.getList();
+             });
+           } else {
           addNORMFEE(this.form).then((response) => {
             this.$modal.msgSuccess("新增成功");
             this.open = false;
             this.getList();
           });
-          // }
+           }
+
         }
       });
     },