赞
踩
当用户进行操作时会被触发,中断用户操作,提示用户进行输入的对话框。
调用$prompt
方法即可打开消息提示,它模拟了系统的 prompt
。可以用inputPattern
字段自己规定匹配模式,或者用inputValidator
规定校验函数,可以返回Boolean
或String
,返回false
或字符串时均表示校验未通过,同时返回的字符串相当于定义了inputErrorMessage
字段。此外,可以用inputPlaceholder
字段来定义输入框的占位符
- this.$prompt(
- "您确定要退卡吗,操作将重置卡内充值金额与赠送金额为0元。该操作为不可逆转操作,请与会员确认无误后进行,是否继续退卡操作?",
- "提示",
- {
- confirmButtonText: "确定",
- cancelButtonText: "取消",
- inputErrorMessage: "请手动输入'退卡'",
- inputPlaceholder: "如果确认操作,请手动输入'退卡'",
- inputValidator: value => {
- if (value == null) {
- return "请手动输入'退卡'";
- } else {
- if (value.trim().length < 1) {
- return "输入不能为空";
- } else if (value !== "退卡") {
- return "请手动输入'退卡'";
- }
- }
- },
- beforeClose: (action, instance, done) => {
- if (action == "confirm") {
- return this.$http
- .post("/api/xxx/xxxxx/xxxxx", {
- id: id
- })
- .then(({ data: res }) => {
- if (res.code == 0) {
- this.$message({
- message: "操作成功",
- type: "success",
- duration: 1500,
- onClose: () => {
- done();
- this.list();
- }
- });
- } else {
- return this.$message.error(res.msg);
- }
- })
- .catch(() => {});
- } else {
- done();
- }
- }
- }
- ).catch(err => {});
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。