zxl
2025-05-23 5d5b0f7ab0f34019e11901ddcd59cd8b51ea9ff9
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
<template>
 
  <div class="layout">
    <div class="row">
      <div class="col">
        <Card :padding="0">
            <Divider orientation="left">登录设置</Divider>
            <div class="form-list">
              <Form
                ref="formValidate"
                label-width="120"
                label-position="right"
                :model="formValidate"
                :rules="ruleValidate"
              >
                <FormItem  label="买家PC端域名" prop="pc">
                  <Input  v-model="formValidate.pc" class="w200" />
                </FormItem>
                <FormItem label="买家WAP端域名" prop="wap">
                  <Input  v-model="formValidate.wap" class="w200" />
                </FormItem>
                <FormItem label="登录回调域名" prop="callbackUrl">
                  <Input maxlength="300" v-model="formValidate.callbackUrl"  class="w200" />
                </FormItem>
                <FormItem label="操作" >
                  <Button @click="setupSetting">保存设置</Button>
                </FormItem>
              </Form>
            </div>
        </Card>
      </div>
    </div>
  </div>
 
</template>
<script>
import { setSetting } from "@/api/index";
import { handleSubmit } from "../setting/validate";
 
export default {
  data() {
    return {
      ruleValidate: {}, // 验证规则
      formValidate: {
        pc:"",
        wap:"",
        callbackUrl:""
      } // 表单数据
    };
  },
  props: ["res", "type"],
  created() {
    this.init();
  },
  methods: {
    submit(name) {
      let that = this;
      if (handleSubmit(that, name)) {
        this.setupSetting();
      }
    },
    // 保存设置
    setupSetting() {
      setSetting(this.type, this.formValidate).then((res) => {
        if (res.success) {
          this.$Message.success("保存成功!");
        } else {
          this.$Message.error("保存失败!");
        }
      });
    },
    // 实例化数据
    init() {
      this.res = JSON.parse(this.res);
 
      this.$set(this, "formValidate", { ...this.res });
      Object.keys(this.formValidate).forEach((item) => {
        if (item.indexOf("pId") < 0) {
          this.ruleValidate[item] = [
            {
              required: true,
              message: "请填写必填项",
              trigger: "blur",
            },
          ];
        }
      });
    },
  },
};
</script>
 
<style lang="scss" scoped>
@import "../setting/style.scss";
 
.label-item {
  display: flex;
}
 
 
.form-list{
  padding:  16px;
 
}
.pay-title {
  text-align: center;
  margin: 10px 0;
}
 
.col {
  width: 100%;
}
.layout {
  padding: 20px;
 
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.row {
  width: 600px;
  margin-right: 10px;
  display: flex;
  margin-bottom: 20px;
  /deep/ .ivu-card-body {
    padding: 0 16px !important;
  }
}
 
.label-item {
  display: flex;
}
.label-item {
  display: flex;
  align-items: center;
}
 
.icon-item {
  width: 100%;
  padding: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.ivu-form-item {
  display: flex;
 
  align-items: center;
}
.ivu-row {
  width: 100%;
}
</style>