Browse Source

我的身份

pull/36/head
余菲 1 year ago
parent
commit
be0cbae371
4 changed files with 23 additions and 12 deletions
  1. +4
    -0
      app.wxss
  2. BIN
      assets/img/camera.png
  3. +4
    -1
      package_mine/pages/myId/index.wxml
  4. +15
    -11
      package_mine/pages/myId/index.wxss

+ 4
- 0
app.wxss View File

view { view {
box-sizing: border-box; box-sizing: border-box;
color: #333333; color: #333333;
font-family: SourceHanSansCN-Regular;
}
text {
font-family: SourceHanSansCN-Regular;
} }

BIN
assets/img/camera.png View File

Before After
Width: 77  |  Height: 77  |  Size: 4.4KB

+ 4
- 1
package_mine/pages/myId/index.wxml View File



<view class="empty_box" wx:else> <view class="empty_box" wx:else>
<image class="success_img" src="../../../assets/img/unapprove.png" mode="widthFix"></image> <image class="success_img" src="../../../assets/img/unapprove.png" mode="widthFix"></image>
<view class="tips_text">您当前还未申请身份, 请返回“我的”页面申请身份!</view>
<view class="tips_text">
<text style="line-height: 53rpx;">您当前还未申请身份,</text>
<text style="line-height: 53rpx;">请返回“我的”页面申请身份!</text>
</view>
<view class="return_btn" bindtap="returnList">我知道了</view> <view class="return_btn" bindtap="returnList">我知道了</view>
</view> </view>



+ 15
- 11
package_mine/pages/myId/index.wxss View File



.empty_box { .empty_box {
width: 100%; width: 100%;
padding: 130rpx 170rpx;
padding-top: 130rpx;
display: flex; display: flex;
flex-direction: column; flex-direction: column;
justify-content: flex-start; justify-content: flex-start;
.success_img { .success_img {
width: 224rpx; width: 224rpx;
height: 224rpx; height: 224rpx;
margin-bottom: 126rpx;
margin-bottom: 10rpx;
} }


.tips_text { .tips_text {
font-size: 26rpx;
font-weight: 800;
font-size: 30rpx;
color: #504E4E; color: #504E4E;
text-indent: 34rpx; text-indent: 34rpx;
color: #000000;
display: flex;
flex-direction: column;
justify-content: flex-start;
align-items: center;
} }
.return_btn { .return_btn {
width: 400rpx;
height: 88rpx;
margin-top: 260rpx;
width: 100%;
height: 90rpx;
margin-top: 470rpx;
border-radius: 40rpx; border-radius: 40rpx;
background-color: #4BE2AC;
line-height: 88rpx;
background-color: #3275E9;
line-height: 90rpx;
text-align: center; text-align: center;
color: #ffffff; color: #ffffff;
font-size: 24rpx;
font-weight: bold;
font-size: 32rpx;
font-family: Source Han Sans CN;
} }

Loading…
Cancel
Save