优化系统设置中的警告
parent
4318e8d0da
commit
5c3501f08d
|
@ -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,
|
||||
|
|
|
@ -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] = [
|
||||
{
|
||||
|
|
|
@ -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] = [
|
||||
{
|
||||
|
|
|
@ -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] = [
|
||||
{
|
||||
|
|
|
@ -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] = [
|
||||
{
|
||||
|
|
|
@ -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] = [
|
||||
{
|
||||
|
|
|
@ -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] = [
|
||||
|
|
|
@ -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] = [
|
||||
{
|
||||
|
|
|
@ -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 });
|
||||
},
|
||||
},
|
||||
};
|
||||
|
|
Loading…
Reference in New Issue