12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- <template>
- <view class='content'>
- <view class='identity flex items-center'>
- <view style='width:100%;' class='flex items-center'>
- <u--image class='image' :showLoading="true" src="../../../static/mine/huozhurenzheng/shenfen.png" width="32px"
- height="32px"></u--image>
- <view style='width:100%;'>
- <view style='font-size:21px;'>身份信息</view>
- <view class='flex flex-space-between' style='width:100%;color:#999999;font-size:14px;'>您还未认证身份信息<u-icon name="arrow-right" color="#7E7E7E" size="10"></u-icon></view>
- </view>
- </view>
- </view>
- <view>
- <view>所属企业(0)</view>
- <view>
- <view>
- <view>公司</view>
- <view>状态</view>
- </view>
- <view>
- <view>可垫付运费</view>
- <view>编辑</view>
- <view>删除</view>
- </view>
-
- </view>
- <view>
- <u--image class='image weibangding' :showLoading="true" src="../../../static/mine/huozhurenzheng/weibangding.png" width="141px"
- height="141px"></u--image>
- </view>
- </view>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
-
- }
- },
- methods: {
-
- }
- }
- </script>
- <style lang="scss" scoped>
- .content{
- height:90vh;
- }
- .identity{
- background: url('~@/static/mine/huozhurenzheng/bg.png') no-repeat;
- background-size:100%;
- height:120px;
- padding:0 30px;
- }
- .u-image {
- justify-content:center;
- }
- </style>
|