优化系统设置中的警告

master
mahe 2023-05-09 11:05:40 +08:00
parent 4318e8d0da
commit 5c3501f08d
9 changed files with 40 additions and 29 deletions

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 });
},
},
};