xiufu
This commit is contained in:
parent
95c78d6214
commit
52496ea8b3
@ -226,7 +226,7 @@ export default {
|
||||
kahao: "Card number",
|
||||
kaihuhang: "Bank of deposit",
|
||||
shurukaihuhang: "Please enter the Bank of deposit",
|
||||
shuruzhifubao: "Please enter Alipay account / password.",
|
||||
shuruzhifubao: "Please enter Alipay account.",
|
||||
saomabangding: "Scan code binding",
|
||||
zhu: "Notes",
|
||||
weixinbangding: "Open the mobile wechat, scan the left QR code for wechat account binding",
|
||||
|
@ -229,7 +229,7 @@ export default {
|
||||
kahao:"卡号",
|
||||
kaihuhang:"开户行",
|
||||
shurukaihuhang:"请输入开户行",
|
||||
shuruzhifubao:"请输入支付宝账号/密码",
|
||||
shuruzhifubao:"请输入支付宝账号",
|
||||
saomabangding:"扫码绑定",
|
||||
zhu:"注",
|
||||
weixinbangding:"打开手机微信扫描左侧二维码 进行微信账户绑定",
|
||||
|
BIN
src/static/images/info2.png
Normal file
BIN
src/static/images/info2.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 252 KiB |
BIN
src/static/images/info3.png
Normal file
BIN
src/static/images/info3.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 147 KiB |
BIN
src/static/images/info4.png
Normal file
BIN
src/static/images/info4.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 203 KiB |
BIN
src/static/images/info5.png
Normal file
BIN
src/static/images/info5.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 188 KiB |
BIN
src/static/images/infotop.png
Normal file
BIN
src/static/images/infotop.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 1.4 MiB |
@ -104,10 +104,10 @@
|
||||
</div>
|
||||
</div>
|
||||
<div class="picbox">
|
||||
<div class="picitem picitem0">1</div>
|
||||
<div class="picitem picitem1">2</div>
|
||||
<div class="picitem picitem3">3</div>
|
||||
<div class="picitem picitem2">4</div>
|
||||
<div class="picitem picitem0"></div>
|
||||
<div class="picitem picitem1"></div>
|
||||
<div class="picitem picitem3"></div>
|
||||
<div class="picitem picitem2"></div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
@ -259,7 +259,9 @@ export default defineComponent({
|
||||
.top {
|
||||
width: 100%;
|
||||
height: 512px;
|
||||
background: gray;
|
||||
// background: gray;
|
||||
background-image: url("../../static/images/infotop.png");
|
||||
background-size: cover;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
justify-content: center;
|
||||
@ -378,24 +380,31 @@ export default defineComponent({
|
||||
height: 301px;
|
||||
margin-bottom: 75px;
|
||||
position: relative;
|
||||
background: yellowgreen;
|
||||
break-inside: avoid;
|
||||
}
|
||||
.picitem0 {
|
||||
margin-top: 191px;
|
||||
left: -100px;
|
||||
background-image: url("../../static/images/info2.png");
|
||||
background-size: cover;
|
||||
}
|
||||
.picitem1 {
|
||||
width: 206px;
|
||||
height: 251px;
|
||||
background-image: url("../../static/images/info3.png");
|
||||
background-size: cover;
|
||||
}
|
||||
.picitem2 {
|
||||
width: 218px;
|
||||
height: 265px;
|
||||
left: 40px;
|
||||
background-image: url("../../static/images/info4.png");
|
||||
background-size: cover;
|
||||
}
|
||||
.picitem3 {
|
||||
left: 40px;
|
||||
background-image: url("../../static/images/info5.png");
|
||||
background-size: cover;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -50,7 +50,7 @@
|
||||
v-model="paytypeforign"
|
||||
class="accountlist"
|
||||
@change="onChange1"
|
||||
:default-value="1"
|
||||
:default-value="4"
|
||||
>
|
||||
<a-radio :value="4">
|
||||
<img
|
||||
@ -164,7 +164,7 @@
|
||||
>
|
||||
<a-input
|
||||
v-model:value="accountinfo.mname"
|
||||
class="shuru"
|
||||
class="shuru shuru2"
|
||||
:placeholder="lan.$t('shuruxingming')"
|
||||
/>
|
||||
</div>
|
||||
@ -179,14 +179,13 @@
|
||||
:placeholder="lan.$t('shurukahao')"
|
||||
/>
|
||||
</div>
|
||||
<div class="infoitem infoitem1">
|
||||
<div class="label label1 label2">
|
||||
<span style="color: red">*</span
|
||||
>{{ lan.$t(yinhangbic) }} /swift code
|
||||
</div>
|
||||
<div class="infoitem">
|
||||
<span class="label label1">
|
||||
<span style="color: red">*</span>{{ lan.$t('yinhangbic') }}
|
||||
</span>
|
||||
<a-input
|
||||
v-model:value="accountinfo.bankname"
|
||||
class="shuru shuru1"
|
||||
class="shuru shuru2"
|
||||
:placeholder="lan.$t('shurukaihuhang')"
|
||||
/>
|
||||
</div>
|
||||
@ -256,6 +255,7 @@ export default defineComponent({
|
||||
};
|
||||
const onChange1: (e: Changes) => void = (e: Changes) => {
|
||||
console.log("radio checked", e.target.value);
|
||||
accountinfo.value.type = e.target.value;
|
||||
paytypeforign.value = e.target.value;
|
||||
};
|
||||
function sub() {
|
||||
@ -469,6 +469,8 @@ export default defineComponent({
|
||||
}
|
||||
.label1 {
|
||||
margin-left: 40px;
|
||||
display: inline-block;
|
||||
width: 100px;
|
||||
}
|
||||
.label2 {
|
||||
width: 90px;
|
||||
@ -492,7 +494,7 @@ export default defineComponent({
|
||||
margin-left: -15px;
|
||||
}
|
||||
.shuru2 {
|
||||
margin-left: 18px;
|
||||
// margin-left: 18px;
|
||||
}
|
||||
.ewmbox {
|
||||
display: flex;
|
||||
|
Loading…
Reference in New Issue
Block a user