|
@@ -2,14 +2,9 @@
|
2
|
2
|
<div class="page" :class="{ 'page--iphoneX': iphoneX }">
|
3
|
3
|
<div class="form-card">
|
4
|
4
|
<section class="form-item">
|
5
|
|
- <div class="label">姓名:</div>
|
|
5
|
+ <div class="label"><span class="required">*</span>姓名:</div>
|
6
|
6
|
<div class="box">
|
7
|
|
- <input
|
8
|
|
- type="text"
|
9
|
|
- :disabled="true"
|
10
|
|
- v-model="form.name"
|
11
|
|
- placeholder=" "
|
12
|
|
- />
|
|
7
|
+ <input type="text" v-model="form.name" placeholder=" " />
|
13
|
8
|
</div>
|
14
|
9
|
</section>
|
15
|
10
|
<section class="form-item">
|
|
@@ -20,9 +15,8 @@
|
20
|
15
|
<div class="box">
|
21
|
16
|
<input
|
22
|
17
|
type="text"
|
23
|
|
- :disabled="true"
|
24
|
18
|
v-model="form.wechat"
|
25
|
|
- placeholder=" "
|
|
19
|
+ placeholder="请输入"
|
26
|
20
|
/>
|
27
|
21
|
</div>
|
28
|
22
|
</section>
|
|
@@ -55,9 +49,8 @@
|
55
|
49
|
<div class="box">
|
56
|
50
|
<input
|
57
|
51
|
type="text"
|
58
|
|
- :disabled="true"
|
59
|
|
- v-model="form.zhihang"
|
60
|
|
- placeholder=" "
|
|
52
|
+ v-model="form.bankBranch"
|
|
53
|
+ placeholder="请输入"
|
61
|
54
|
/>
|
62
|
55
|
</div>
|
63
|
56
|
</section>
|
|
@@ -69,28 +62,28 @@
|
69
|
62
|
<div class="box">
|
70
|
63
|
<input
|
71
|
64
|
type="text"
|
72
|
|
- :disabled="true"
|
73
|
|
- v-model="form.kahao"
|
74
|
|
- placeholder=" "
|
|
65
|
+ v-model="form.bankAccount"
|
|
66
|
+ placeholder="请输入"
|
75
|
67
|
/>
|
76
|
68
|
</div>
|
77
|
69
|
</section>
|
78
|
70
|
<section class="form-item">
|
79
|
71
|
<div class="label">
|
80
|
72
|
<span class="required">*</span>
|
81
|
|
- 银行卡号:
|
|
73
|
+ 验证码:
|
82
|
74
|
</div>
|
83
|
75
|
<div class="box code-box">
|
84
|
76
|
<input
|
85
|
77
|
type="text"
|
86
|
|
- :disabled="true"
|
87
|
78
|
v-model="form.code"
|
88
|
|
- placeholder=" "
|
|
79
|
+ placeholder="请输入"
|
89
|
80
|
/>
|
90
|
81
|
<span class="get-code">{{ codeStr }}</span>
|
91
|
82
|
</div>
|
92
|
83
|
</section>
|
93
|
|
- <p class="tel">店长手机号:173****1879</p>
|
|
84
|
+ <p class="tel">
|
|
85
|
+ 店长手机号:{{ shopInfo.managerTelephone | hideTel }}
|
|
86
|
+ </p>
|
94
|
87
|
</div>
|
95
|
88
|
<div class="btns">
|
96
|
89
|
<div class="btn" @click="saveOk">保存</div>
|
|
@@ -104,97 +97,142 @@ import MyImage from "../../components/image/index";
|
104
|
97
|
export default {
|
105
|
98
|
name: "",
|
106
|
99
|
components: { MyImage },
|
|
100
|
+ filters: {
|
|
101
|
+ hideTel(v) {
|
|
102
|
+ return v.replace(/(\d{3})(\d{4})(\d{4})/, "$1****$3") || "";
|
|
103
|
+ },
|
|
104
|
+ },
|
107
|
105
|
// 数据
|
108
|
106
|
data() {
|
109
|
107
|
return {
|
110
|
108
|
form: {
|
111
|
109
|
name: "",
|
112
|
110
|
wechat: "",
|
113
|
|
- yinhang: "",
|
114
|
|
- zhihang: "",
|
115
|
|
- kahao: "",
|
|
111
|
+ bank: "",
|
|
112
|
+ bankBranch: "",
|
|
113
|
+ bankAccount: "",
|
116
|
114
|
code: "",
|
117
|
115
|
},
|
118
|
116
|
opts: [
|
119
|
|
- // { key: "待关联", value: 0 },
|
120
|
|
- { key: "招商", value: 1 },
|
121
|
|
- { key: "工商", value: 2 },
|
|
117
|
+ { key: "工商银行", value: "工商银行" },
|
|
118
|
+ { key: "农业银行", value: "农业银行" },
|
|
119
|
+ { key: "建设银行", value: "建设银行" },
|
|
120
|
+ { key: "招商银行", value: "招商银行" },
|
|
121
|
+ { key: "中国银行", value: "中国银行" },
|
|
122
|
+ { key: "浦发银行", value: "浦发银行" },
|
|
123
|
+ { key: "广发银行", value: "广发银行" },
|
|
124
|
+ { key: "民生银行", value: "民生银行" },
|
|
125
|
+ { key: "平安银行", value: "平安银行" },
|
|
126
|
+ { key: "光大银行", value: "光大银行" },
|
|
127
|
+ { key: "兴业银行", value: "兴业银行" },
|
|
128
|
+ { key: "中信银行", value: "中信银行" },
|
|
129
|
+ { key: "上海银行", value: "上海银行" },
|
122
|
130
|
],
|
123
|
131
|
submitLoading: false,
|
124
|
132
|
timeing: false,
|
125
|
133
|
codeStr: "发送验证码",
|
|
134
|
+ shopInfo: {},
|
126
|
135
|
};
|
127
|
136
|
},
|
128
|
137
|
|
129
|
138
|
onLoad(opts) {
|
130
|
139
|
this.getData();
|
131
|
140
|
},
|
132
|
|
- getCode() {
|
133
|
|
- if (this.timeing) {
|
134
|
|
- return;
|
135
|
|
- }
|
136
|
|
- let phoneReg = /^[1][1-9][0-9]{9}$/;
|
137
|
|
- if (!this.form.mobile) {
|
138
|
|
- return this.fn.showToast("请输入手机号");
|
139
|
|
- }
|
140
|
|
- if (!phoneReg.test(this.form.mobile)) {
|
141
|
|
- return this.fn.showToast("手机号格式不正确");
|
142
|
|
- }
|
143
|
|
- this.sendCode();
|
144
|
|
- this.downTime();
|
145
|
|
- },
|
146
|
|
- sendCode() {
|
147
|
|
- this.api
|
148
|
|
- .get("/Login/SendSms", { mobile: this.form.mobile })
|
149
|
|
- .then((res) => {});
|
150
|
|
- },
|
151
|
|
- downTime() {
|
152
|
|
- this.timeing = true;
|
153
|
|
- let t = 60;
|
154
|
|
- this.codeStr = t + "s重新获取";
|
155
|
|
- this.timer = setInterval(() => {
|
156
|
|
- t--;
|
157
|
|
- if (t === 0) {
|
158
|
|
- clearInterval(this.timer);
|
159
|
|
- this.codeStr = "发送验证码";
|
160
|
|
- this.timeing = false;
|
161
|
|
- } else {
|
162
|
|
- this.codeStr = t + "s重新获取";
|
163
|
|
- }
|
164
|
|
- }, 1000);
|
165
|
|
- },
|
166
|
141
|
|
167
|
142
|
onShow() {},
|
168
|
143
|
|
169
|
144
|
// 函数
|
170
|
145
|
methods: {
|
|
146
|
+ getData() {
|
|
147
|
+ this.api.get("/Shop/GetInfo", {}, { pass: true }).then((res) => {
|
|
148
|
+ if (res.success && res.data) {
|
|
149
|
+ this.shopInfo = res.data;
|
|
150
|
+ }
|
|
151
|
+ });
|
|
152
|
+ },
|
|
153
|
+ getCode() {
|
|
154
|
+ if (this.timeing) {
|
|
155
|
+ return;
|
|
156
|
+ }
|
|
157
|
+ let phoneReg = /^[1][1-9][0-9]{9}$/;
|
|
158
|
+ if (!this.form.mobile) {
|
|
159
|
+ return this.fn.showToast("请输入手机号");
|
|
160
|
+ }
|
|
161
|
+ if (!phoneReg.test(this.form.mobile)) {
|
|
162
|
+ return this.fn.showToast("手机号格式不正确");
|
|
163
|
+ }
|
|
164
|
+ this.sendCode();
|
|
165
|
+ this.downTime();
|
|
166
|
+ },
|
|
167
|
+ sendCode() {
|
|
168
|
+ if(!this.shopInfo.managerTelephone){
|
|
169
|
+ return this.fn.showToast('未获取到店长手机号');
|
|
170
|
+ }
|
|
171
|
+ this.api
|
|
172
|
+ .get("/Login/SendSms", {
|
|
173
|
+ mobile: this.shopInfo.managerTelephone,
|
|
174
|
+ })
|
|
175
|
+ .then((res) => {});
|
|
176
|
+ },
|
|
177
|
+ downTime() {
|
|
178
|
+ this.timeing = true;
|
|
179
|
+ let t = 60;
|
|
180
|
+ this.codeStr = t + "s重新获取";
|
|
181
|
+ this.timer = setInterval(() => {
|
|
182
|
+ t--;
|
|
183
|
+ if (t === 0) {
|
|
184
|
+ clearInterval(this.timer);
|
|
185
|
+ this.codeStr = "发送验证码";
|
|
186
|
+ this.timeing = false;
|
|
187
|
+ } else {
|
|
188
|
+ this.codeStr = t + "s重新获取";
|
|
189
|
+ }
|
|
190
|
+ }, 1000);
|
|
191
|
+ },
|
171
|
192
|
pickerChange(e) {
|
172
|
193
|
let val = this.opts[e.detail.value];
|
173
|
|
- this.form.yinhang = val.value;
|
|
194
|
+ this.form.bank = val.value;
|
174
|
195
|
},
|
175
|
196
|
saveOk() {
|
176
|
197
|
if (this.submitLoading) {
|
177
|
198
|
return;
|
178
|
199
|
}
|
179
|
|
- if (!this.form.managerTelephone) {
|
180
|
|
- return this.fn.showToast("请输入店长电话");
|
|
200
|
+ if (!this.form.name) {
|
|
201
|
+ return this.fn.showToast("请输入姓名");
|
|
202
|
+ }
|
|
203
|
+ if (!this.form.wechat) {
|
|
204
|
+ return this.fn.showToast("请输入微信号");
|
|
205
|
+ }
|
|
206
|
+ if (!this.form.bank) {
|
|
207
|
+ return this.fn.showToast("请选择银行");
|
181
|
208
|
}
|
182
|
|
- // if (!this.form.iDCard) {
|
183
|
|
- // return this.fn.showToast("请上传身份证照");
|
184
|
|
- // }
|
185
|
|
- // if (this.form.iDCard.length !== 2) {
|
186
|
|
- // return this.fn.showToast("请分别上传身份证照正反面");
|
187
|
|
- // }
|
188
|
|
- if (this.user.parentInviteCode) {
|
189
|
|
- this.form.invitedCode = this.user.parentInviteCode;
|
|
209
|
+ if (!this.form.bankBranch) {
|
|
210
|
+ return this.fn.showToast("请输入开户支行");
|
|
211
|
+ }
|
|
212
|
+ if (!this.form.bankAccount) {
|
|
213
|
+ return this.fn.showToast("请输入银行卡号");
|
|
214
|
+ }
|
|
215
|
+ if (!this.form.code) {
|
|
216
|
+ return this.fn.showToast("请输入验证码");
|
190
|
217
|
}
|
191
|
|
- console.log(this.form);
|
192
|
218
|
this.submitLoading = true;
|
193
|
219
|
uni.showLoading({
|
194
|
220
|
title: "提交中...",
|
195
|
221
|
});
|
196
|
|
- let data = { ...this.form };
|
197
|
|
- this.api.post("/Shop/Set", data, { pass: true }).then((res) => {
|
|
222
|
+ let data = {
|
|
223
|
+ mobile:this.shopInfo.managerTelephone,
|
|
224
|
+ smsCode:this.form.code,
|
|
225
|
+ account:{
|
|
226
|
+ name:this.form.name,
|
|
227
|
+ wechat:this.form.wechat,
|
|
228
|
+ bank:this.form.bank,
|
|
229
|
+ bankBranch:this.form.bankBranch,
|
|
230
|
+ bankAccount:this.form.bankAccount,
|
|
231
|
+ userId:this.user.id,
|
|
232
|
+ appId:this.user.appId,
|
|
233
|
+ }
|
|
234
|
+ };
|
|
235
|
+ this.api.post("/User/BindAccount", data, { pass: true }).then((res) => {
|
198
|
236
|
this.submitLoading = false;
|
199
|
237
|
uni.hideLoading();
|
200
|
238
|
if (res.success) {
|
|
@@ -474,7 +512,7 @@ export default {
|
474
|
512
|
}
|
475
|
513
|
}
|
476
|
514
|
}
|
477
|
|
-.tel{
|
|
515
|
+.tel {
|
478
|
516
|
border-top: 1px solid #f1f1f1;
|
479
|
517
|
padding-top: px(60);
|
480
|
518
|
text-align: center;
|