<template>
|
<view class="">
|
<view class="content chuany-flex chuany-align-end chuany-justify-center">
|
<up-avatar src="/static/avatar.jpg" shape="circle" size='80'></up-avatar>
|
</view>
|
<fui-list>
|
<fui-list-cell arrow>
|
<view class="fui-list__item">
|
<text>姓名</text>
|
<text class="fui-text__explain">李丽</text>
|
</view>
|
</fui-list-cell>
|
<fui-list-cell arrow>
|
<view class="fui-list__item">
|
<text>手机号</text>
|
<text class="fui-text__explain">13215465785</text>
|
</view>
|
</fui-list-cell>
|
<fui-list-cell arrow @click="goApply">
|
<text>申请接单</text>
|
</fui-list-cell>
|
</fui-list>
|
</view>
|
</template>
|
|
<script setup>
|
import {ref} from 'vue';
|
// let src = "http://pic2.sc.chinaz.com/Files/pic/pic9/202002/hpic2119_s.jpg"
|
const goApply = ()=>{
|
uni.navigateTo({
|
url: '/pages/mine/apply'
|
});
|
}
|
</script>
|
|
<style>
|
.content {
|
height: 300rpx;
|
background-color: #d8d8d8;
|
}
|
|
.fui-list__item {
|
flex: 1;
|
width: 100%;
|
display: flex;
|
align-items: center;
|
justify-content: space-between;
|
}
|
|
.fui-text__explain {
|
font-size: 28rpx;
|
color: #7F7F7F;
|
flex-shrink: 0;
|
}
|
</style>
|