不点击保存按钮不能点击提交

<!-- 保存 重置按钮 start-->
    <div class="ReportSubmit">
      <el-form>
        <el-form-item>
          <el-button type="primary" @click="submitForm('ruleForm')" :disabled="num==0">提交</el-button>
          <el-button type="primary" :plain="true" @click="resetForm">暂存</el-button>
          <!-- <el-button @click="resetForm('ruleForm')">暂存</el-button> -->
        </el-form-item>
      </el-form>
    </div>
    <!-- 保存 重置按钮 end-->

JS部分

import {
  ReportSubmit,//提交接口
  ReportStaging, // 暂存接口
} from "@/api/pc/security/report";
export default {
data() {
    return {
      num:0
},
 methods:{
// 提交和暂存
    submitForm(formName) {
      this.$refs[formName].validate(valid => {
        if (this.num!=0) {
          // alert("submit!");
          // 提交按钮
//ReportSubmit是后端接口方法名
          ReportSubmit(this.ruleForm).then(response => {
            this.$modal.msgSuccess("提交成功");
            this.open = false;
          });
        }
      });
    },
    //暂存按钮
    resetForm(formName) {
//ReportStaging是后端接口方法名
        ReportStaging(formName)
          .then((res) => {
            console.log(res)
            this.num=1
          })
          .catch((err) => {
            console.log(err)
          })
    },
}

}
}

@/api/pc/security/report    API接口文件里面的内容

// 提交接口
export function ReportSubmit(data) {
  return request({
    url: 'system/new/auditing',//后端给的接口
    method: 'put',
    data: data
  })
}
// 暂存接口
export function ReportStaging(securityName) {
  return request({
    url: 'system/new',//后端给的接口
    method: 'post',
    data: securityName
  })
}

评论 2
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

码农阿茹

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值