Browse Source

辅助指标

gks 1 year ago
parent
commit
3b42238d83
2 changed files with 5 additions and 24 deletions
  1. 1 1
      src/views/news/edit.vue
  2. 4 23
      src/views/norm/quotaBonded.vue

+ 1 - 1
src/views/news/edit.vue

@@ -45,7 +45,7 @@
         v-if="checkPermi(['business:NEWS:confirm'])"
         type="warning"
         @click="submitForm('draft')"
-        >暂 存1</el-button
+        >暂 存</el-button
       >
       <el-button @click="$layer.close(layerid)">取 消</el-button>
     </div>

+ 4 - 23
src/views/norm/quotaBonded.vue

@@ -558,33 +558,14 @@ export default {
       
     },
     /** 提交按钮 */
-    async submitForm() {
+    submitForm() {
    
       this.form.bondedFeeList = this.QUOTAFEEList;
+      this.form.bondedFeeList.forEach((item,i)=>{
+          item.quotaId = item.id;
+      })
       this.$refs["form"].validate((valid) => {
         if (valid) {
-          /*if (!(parseInt(this.form.score) == this.form.score)) {
-            this.$message.error("得分必须为整数");
-            return;
-          }
-          if (this.form.enterType == "文字说明" && this.form.remark == null) {
-            this.$message.error("请录入文字说明");
-            return;
-          }
-          if (this.form.enterType == "数值" && this.form.numValue == null) {
-            this.$message.error("请录入数值");
-            return;
-          }
-          if (
-            this.form.numValue != null &&
-            !(
-              parseInt(this.form.numValue) == this.form.numValue ||
-              parseFloat(this.form.numValue) == this.form.numValue
-            )
-          ) {
-            this.$message.error("数值必须为整数或小数");
-            return;
-          }*/
           if(this.user.roleId == 10 ) {
             this.form.type = 1;
           }