This commit is contained in:
Yer
2023-05-09 11:42:44 +08:00
24 changed files with 1990 additions and 45 deletions

View File

@@ -165,6 +165,8 @@ export default {
return h("Tag", { props: { color: "green" } }, "审核通过");
} else if (params.row.applyStatus == "SUCCESS") {
return h("Tag", { props: { color: "blue" } }, "提现成功");
} else if (params.row.applyStatus == "ERROR") {
return h("Tag", { props: { color: "blue" } }, "提现失败");
} else {
return h("Tag", { props: { color: "red" } }, "审核拒绝");
}
@@ -249,6 +251,8 @@ export default {
return "审核通过(提现成功)";
} else if (val === "FAIL_AUDITING") {
return "审核拒绝";
} else if (val === "ERROR") {
return "提现失败";
} else {
return "未知状态";
}

View File

@@ -87,7 +87,10 @@ import ossManage from "@/views/sys/oss-manage/ossManage";
export default {
title: "基础设置",
props: {
res:Object,
res:{
type:null,
default:""
},
type:''
},
components: {
@@ -108,7 +111,8 @@ export default {
staticPageWapAddress: "",
},
selected: "", // 已选数据
ruleValidate: {} // 验证规则
ruleValidate: {}, // 验证规则
result:""
};
},
created() {
@@ -146,10 +150,9 @@ export default {
},
/**添加必填项 */
init() {
this.res = JSON.parse(this.res);
this.$set(this, "formValidate", { ...this.res });
Object.keys(this.res).forEach((item) => {
this.result = JSON.parse(this.res);
this.$set(this, "formValidate", { ...this.result });
Object.keys(this.result).forEach((item) => {
this.ruleValidate[item] = [
{
required: true,

View File

@@ -85,6 +85,7 @@ export default {
showProgress: false,
intervalProgress: null,
ruleValidate: {}, // 验证规则
result:""
};
},
created() {
@@ -152,12 +153,12 @@ export default {
// 实例化数据
init() {
this.res = JSON.parse(this.res);
this.result = JSON.parse(this.res);
Object.keys(this.res).map((item) => {
this.res[item] += "";
Object.keys(this.result).map((item) => {
this.result[item] += "";
});
this.$set(this, "formValidate", { ...this.res });
this.$set(this, "formValidate", { ...this.result });
Object.keys(this.formValidate).forEach((item) => {
this.ruleValidate[item] = [
{

View File

@@ -23,6 +23,7 @@ export default {
formValidate: { // 表单数据
httpUrl: ""
},
result:"",
};
},
props: ["res", "type"],
@@ -49,9 +50,9 @@ export default {
},
// 实例化数据
init() {
this.res = JSON.parse(this.res);
this.result = JSON.parse(this.res);
this.$set(this, "formValidate", {...this.res});
this.$set(this, "formValidate", {...this.result});
Object.keys(this.formValidate).forEach((item) => {
this.ruleValidate[item] = [
{

View File

@@ -52,6 +52,7 @@ export default {
data() {
return {
ruleValidate: {}, // 验证规则
result:"",
formValidate: { // 表单数据
type: "",
kdniaoEbusinessID: "",
@@ -85,8 +86,8 @@ export default {
},
// 实例化数据
init() {
this.res = JSON.parse(this.res);
this.$set(this, "formValidate", { ...this.res });
this.result = JSON.parse(this.res);
this.$set(this, "formValidate", { ...this.result });
Object.keys(this.formValidate).forEach((item) => {
this.ruleValidate[item] = [
{

View File

@@ -56,6 +56,7 @@ export default {
closeAfterSale: "",
closeComplaint:""
},
result:""
};
},
props: ["res", "type"],
@@ -82,11 +83,11 @@ export default {
},
// 实例化数据
init() {
this.res = JSON.parse(this.res);
Object.keys(this.res).map((item) => {
this.res[item] += "";
this.result = JSON.parse(this.res);
Object.keys(this.result).map((item) => {
this.result[item] += "";
});
this.$set(this, "formValidate", { ...this.res });
this.$set(this, "formValidate", { ...this.result });
Object.keys(this.formValidate).forEach((item) => {
this.ruleValidate[item] = [
{

View File

@@ -114,6 +114,7 @@ export default {
tencentCOSBucket: "",
tencentCOSEndPoint: "",
},
result:""
};
},
props: ["res", "type"],
@@ -140,9 +141,9 @@ export default {
},
// 实例化数据
init() {
this.res = JSON.parse(this.res);
this.result = JSON.parse(this.res);
this.$set(this, "formValidate", {...this.res});
this.$set(this, "formValidate", {...this.result});
Object.keys(this.formValidate).forEach((item) => {
this.ruleValidate[item] = [
{

View File

@@ -74,6 +74,7 @@ export default {
return {
ruleValidate: {}, // 验证规则
formValidate: {}, // 表单数据
result: "",
};
},
props: ["res", "type"],
@@ -115,15 +116,15 @@ export default {
},
// 实例化数据
init() {
this.res = JSON.parse(this.res);
Object.keys(this.res).map((item) => {
this.result = JSON.parse(this.res);
Object.keys(this.result).map((item) => {
if (item == "pointSettingItems") {
return false;
}
this.res[item] += "";
this.result[item] += "";
});
this.$set(this, "formValidate", {...this.res});
this.$set(this, "formValidate", {...this.result});
Object.keys(this.formValidate).forEach((item) => {
this.ruleValidate[item] = [

View File

@@ -62,6 +62,7 @@ import {handleSubmit} from "./validate";
export default {
data() {
return {
result: "",
ruleValidate: {}, // 验证规则
formValidate: { // 表单数据
accessKeyId: "",
@@ -103,9 +104,9 @@ export default {
},
// 实例化数据
init() {
this.res = JSON.parse(this.res);
this.result = JSON.parse(this.res);
this.$set(this, "formValidate", {...this.res});
this.$set(this, "formValidate", {...this.result});
Object.keys(this.formValidate).forEach((item) => {
this.ruleValidate[item] = [
{

View File

@@ -1,7 +1,7 @@
<template>
<div class="layout">
<Form ref="formValidate" :label-width="150" label-position="right" :model="formValidate" :rules="ruleValidate">
<Form ref="formValidate" :label-width="150" label-position="right" :model="formValidate">
<FormItem label="提现审核是否开启">
<i-switch v-model="formValidate.apply" style="margin-top:7px;"><span slot="open"></span>
<span slot="close"></span>
@@ -35,6 +35,7 @@ import { handleSubmit } from "./validate";
export default {
data() {
return {
result:"",
formValidate: { // 表单数据
apply: true,
minPrice: "",
@@ -70,8 +71,8 @@ export default {
},
// 实例化数据
init() {
this.res = JSON.parse(this.res);
this.$set(this, "formValidate", { ...this.res });
this.result = JSON.parse(this.res);
this.$set(this, "formValidate", { ...this.result });
},
},
};