会员认证
Showing
3 changed files
with
45 additions
and
14 deletions
| 1 | <template> | 1 | <template> |
| 2 | <view :class="{ 'lock-scroll': popupShow }"> | 2 | <view :class="{ 'lock-scroll': popupShow }"> |
| 3 | <view v-if="showDirectly&&directUnderFlag==0"> | 3 | <view v-if="showDirectly&&directUnderFlag==0"> |
| 4 | <view class="flexbox"> | 4 | <view class="head-box"> |
| 5 | <view> | 5 | <view class="flexbox "> |
| 6 | 有效日期至 | 6 | <view class="title">{{ form.name }}</view> |
| 7 | <text class="text-primary">{{ form?.validityDate?.slice(0, 10) }}</text> | ||
| 8 | </view> | ||
| 9 | <view> | 7 | <view> |
| 10 | <text v-if="activeStatus==0&&authenticationStatusa" class="text-danger">未激活</text> | 8 | <text v-if="activeStatus==0&&authenticationStatusa" class="text-danger">未激活</text> |
| 11 | <text v-else> | 9 | <text v-else> |
| ... | @@ -18,7 +16,14 @@ | ... | @@ -18,7 +16,14 @@ |
| 18 | </text> | 16 | </text> |
| 19 | </view> | 17 | </view> |
| 20 | </view> | 18 | </view> |
| 21 | <view class="flexbox" style="justify-content: flex-end;padding: 0 30rpx 40rpx;"> | 19 | <view class="flexbox"> |
| 20 | <view> | ||
| 21 | 有效日期至 | ||
| 22 | <text class="highlight">{{ form?.validityDate?.slice(0, 10) }}</text> | ||
| 23 | </view> | ||
| 24 | |||
| 25 | </view> | ||
| 26 | <view class="flexbox" style="justify-content: flex-end;padding: 20rpx 40rpx 30rpx 40rpx;"> | ||
| 22 | <button v-if="activeStatus==0&&authenticationStatusa" class="btn-red" size="mini" | 27 | <button v-if="activeStatus==0&&authenticationStatusa" class="btn-red" size="mini" |
| 23 | style="margin: 0 20rpx 0 0;" @click="payTheFees">激活 | 28 | style="margin: 0 20rpx 0 0;" @click="payTheFees">激活 |
| 24 | </button> | 29 | </button> |
| ... | @@ -45,6 +50,9 @@ | ... | @@ -45,6 +50,9 @@ |
| 45 | </view> | 50 | </view> |
| 46 | </view> | 51 | </view> |
| 47 | </view> | 52 | </view> |
| 53 | |||
| 54 | </view> | ||
| 55 | |||
| 48 | <view class="mainbox"> | 56 | <view class="mainbox"> |
| 49 | <uni-list> | 57 | <uni-list> |
| 50 | <uni-list-item v-if="authenticationStatusa != 1&&authenticationStatusa != 0&&authenticationStatusa != 3" | 58 | <uni-list-item v-if="authenticationStatusa != 1&&authenticationStatusa != 0&&authenticationStatusa != 3" |
| ... | @@ -121,6 +129,7 @@ | ... | @@ -121,6 +129,7 @@ |
| 121 | </uni-list-item> | 129 | </uni-list-item> |
| 122 | </uni-list> | 130 | </uni-list> |
| 123 | </view> | 131 | </view> |
| 132 | |||
| 124 | <!-- 弹窗添加触摸事件拦截 --> | 133 | <!-- 弹窗添加触摸事件拦截 --> |
| 125 | <uni-popup ref="applyPopup" type="center" @close="onPopupClose" @open="onPopupOpen" | 134 | <uni-popup ref="applyPopup" type="center" @close="onPopupClose" @open="onPopupOpen" |
| 126 | @touchmove.stop.prevent="() => {}"> | 135 | @touchmove.stop.prevent="() => {}"> |
| ... | @@ -511,7 +520,6 @@ function payTheFees() { | ... | @@ -511,7 +520,6 @@ function payTheFees() { |
| 511 | .frrr { | 520 | .frrr { |
| 512 | width: 100%; | 521 | width: 100%; |
| 513 | text-align: right; | 522 | text-align: right; |
| 514 | text-align: right; | ||
| 515 | display: flex; | 523 | display: flex; |
| 516 | flex-wrap: wrap; | 524 | flex-wrap: wrap; |
| 517 | justify-content: flex-end; | 525 | justify-content: flex-end; |
| ... | @@ -543,14 +551,34 @@ function payTheFees() { | ... | @@ -543,14 +551,34 @@ function payTheFees() { |
| 543 | color: #999; | 551 | color: #999; |
| 544 | } | 552 | } |
| 545 | 553 | ||
| 546 | .flexbox { | 554 | .head-box { |
| 547 | padding: 30rpx; | 555 | width: calc(100% - 60rpx); |
| 556 | margin: 0 auto; | ||
| 548 | background-color: #fff; | 557 | background-color: #fff; |
| 558 | border-radius: 30rpx; | ||
| 559 | margin-top: 20rpx; | ||
| 560 | padding-top: 20rpx; | ||
| 561 | |||
| 562 | .title { | ||
| 563 | font-size: 40rpx; | ||
| 564 | font-weight: bold; | ||
| 565 | } | ||
| 566 | } | ||
| 567 | |||
| 568 | .flexbox { | ||
| 569 | padding: 10rpx 30rpx; | ||
| 549 | justify-content: space-between; | 570 | justify-content: space-between; |
| 550 | } | 571 | } |
| 551 | 572 | ||
| 573 | .highlight { | ||
| 574 | color: orange; | ||
| 575 | } | ||
| 576 | |||
| 552 | .mainbox { | 577 | .mainbox { |
| 553 | margin: 30rpx; | 578 | margin: 30rpx; |
| 579 | padding: 70rpx 20rpx; | ||
| 580 | border-radius: 30rpx; | ||
| 581 | background-color: #ffff; | ||
| 554 | } | 582 | } |
| 555 | 583 | ||
| 556 | .apply-dialog { | 584 | .apply-dialog { |
| ... | @@ -616,5 +644,8 @@ function payTheFees() { | ... | @@ -616,5 +644,8 @@ function payTheFees() { |
| 616 | .btn-red, .btn-red-kx { | 644 | .btn-red, .btn-red-kx { |
| 617 | padding: 0 !important; | 645 | padding: 0 !important; |
| 618 | width: 140rpx; | 646 | width: 140rpx; |
| 647 | border-radius: 30rpx; | ||
| 648 | height: 55rpx; | ||
| 649 | line-height: 55rpx; | ||
| 619 | } | 650 | } |
| 620 | </style> | 651 | </style> | ... | ... |
| ... | @@ -47,13 +47,13 @@ | ... | @@ -47,13 +47,13 @@ |
| 47 | <view class="payRow "> | 47 | <view class="payRow "> |
| 48 | <radio-group @change="onPayTypeChange"> | 48 | <radio-group @change="onPayTypeChange"> |
| 49 | <label class="radioItem"> | 49 | <label class="radioItem"> |
| 50 | <radio :checked="payType === '1'" class="custom-radio" value="1"/> | 50 | <radio :checked="payType === '0'" class="custom-radio" value="0"/> |
| 51 | <view class="payInfo"> | 51 | <view class="payInfo"> |
| 52 | <image :src="config.baseUrl_api + '/fs/static/min.png'" class="icon" mode="widthFix"></image> | 52 | <image :src="config.baseUrl_api + '/fs/static/min.png'" class="icon" mode="widthFix"></image> |
| 53 | <text>民生付</text> | 53 | <text>民生付</text> |
| 54 | </view> | 54 | </view> |
| 55 | </label> | 55 | </label> |
| 56 | <label class="radioItem mt10" > | 56 | <label class="radioItem mt10"> |
| 57 | <radio :checked="payType === '3'" class="custom-radio" value="3"/> | 57 | <radio :checked="payType === '3'" class="custom-radio" value="3"/> |
| 58 | <view class="payInfo"> | 58 | <view class="payInfo"> |
| 59 | <image :src="config.baseUrl_api + '/fs/static/min.png'" class="icon" mode="widthFix"></image> | 59 | <image :src="config.baseUrl_api + '/fs/static/min.png'" class="icon" mode="widthFix"></image> |
| ... | @@ -67,11 +67,11 @@ | ... | @@ -67,11 +67,11 @@ |
| 67 | <view v-if="payType === '3'" class="card transfer-form"> | 67 | <view v-if="payType === '3'" class="card transfer-form"> |
| 68 | <view class="form-item"> | 68 | <view class="form-item"> |
| 69 | <text class="form-label">联系人</text> | 69 | <text class="form-label">联系人</text> |
| 70 | <input class="form-input" v-model="form.contactPerson" placeholder="请输入联系人" /> | 70 | <input v-model="form.contactPerson" class="form-input" placeholder="请输入联系人"/> |
| 71 | </view> | 71 | </view> |
| 72 | <view class="form-item"> | 72 | <view class="form-item"> |
| 73 | <text class="form-label">联系电话</text> | 73 | <text class="form-label">联系电话</text> |
| 74 | <input class="form-input" v-model="form.contactTel" type="number" placeholder="请输入联系电话" /> | 74 | <input v-model="form.contactTel" class="form-input" placeholder="请输入联系电话" type="number"/> |
| 75 | </view> | 75 | </view> |
| 76 | </view> | 76 | </view> |
| 77 | 77 | ... | ... |
| ... | @@ -949,7 +949,7 @@ const confirmLogout = () => { | ... | @@ -949,7 +949,7 @@ const confirmLogout = () => { |
| 949 | padding-bottom: 20rpx; | 949 | padding-bottom: 20rpx; |
| 950 | 950 | ||
| 951 | .logOutBtn { | 951 | .logOutBtn { |
| 952 | background-image: linear-gradient(135deg, #dbbb69 10%, #f0deb0 100%);; | 952 | background-image: linear-gradient(135deg, #dbbb69 10%, #f0deb0 100%); |
| 953 | backdrop-filter: blur(4px); | 953 | backdrop-filter: blur(4px); |
| 954 | width: 80%; | 954 | width: 80%; |
| 955 | border: 1px solid #dadada; | 955 | border: 1px solid #dadada; | ... | ... |
-
Please register or sign in to post a comment