新增和编辑的写法

这段代码展示了在前端使用 Vue.js 进行表单验证和数据提交的过程。当表单验证通过后,根据是否有详细信息决定是更新已有角色还是新增角色。提交数据时,根据是否有修改来决定发送 PUT 请求添加新角色还是 POST 请求更新已有角色。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

 confirm() {
      this.$refs["form"].validate(valid => {
        if (valid) {
          if (this.detail) {
            // 判断是否有修改 有则传
            let data = { id: this.detail };
            const form = this.editForm;
            let isEdit = false;
            for (let i in form) {
              if (form[i]) {
                isEdit = true;
                data[i] = form[i];
              }
            }
            if (isEdit) {
              request("post", "cms/role/update", data).then(res => {
                if (res.code == "200") {
                  this.$message.success(this.$t("tag.editSuccess"));
                  this.$emit("roleChange", { show: false, isAdd: true });
                  this.$refs["form"].resetFields();
                  this.editForm ={
                    name: "",
                    remark: ""
                  }
                } else {
                  return false;
                }
              });
            }else{
              this.$emit("roleChange", { show: false, isAdd: false });
              this.$refs["form"].resetFields();
            }
          } else {
            let data = {
              name: this.form.name
            };
            if (this.form.remark) {
              data.remark = this.form.remark;
            }
            this.isLoading=true;
            request("put", "cms/role/add", data).then(res => {
              if (res.code == "200") {
                this.$message.success(this.$t("tag.addSuccess"));
                this.$emit("roleChange", { show: false, isAdd: true });
                this.$refs["form"].resetFields();
                this.editForm ={
                    name: "",
                    remark: ""
                  }
              }
              this.isLoading=false;
            }).catch(err=>{
              this.isLoading=false;
            });
          }
          
        }
      });
    },
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值