You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

204 lines
3.8 KiB

<template>
<view class="page1">
<view class="title-gary"></view>
<view class="title">我的</view>
<view class="shop-box" @click="navigatorTo('xiugaixinxi')">
<view class="shop-left">
<image src="/static/image/xiangzi.png" alt="">
</view>
<view class="shop-center">
<!-- 入驻信息修改 副标题 -->
<view class="shop-name">张三的店</view>
<view class="shop-address">沧州医学高等专科学校</view>
</view>
<view class="shop-right">
<uni-icons type="right" size="22"></uni-icons>
</view>
</view>
<view class="list-box">
<view class="list-1">
<view class="list-icon">
<uni-icons type="wallet" size="22"></uni-icons>
</view>
<view class="list-name">
入驻审核
</view>
<view class="list-right">
<uni-icons type="right" size="22"></uni-icons>
</view>
</view>
<view class="list-1">
<view class="list-icon">
<uni-icons type="wallet" size="22"></uni-icons>
</view>
<view class="list-name">
业务信息
</view>
<view class="list-right">
<uni-icons type="right" size="22"></uni-icons>
</view>
</view>
<view class="list-1">
<view class="list-icon">
<uni-icons type="wallet" size="22"></uni-icons>
</view>
<view class="list-name">
联系我们
</view>
<view class="list-right">
<uni-icons type="right" size="22"></uni-icons>
</view>
</view>
<view class="list-1">
<view class="list-icon">
<uni-icons type="wallet" size="22"></uni-icons>
</view>
<view class="list-name">
系统设置
</view>
<view class="list-right">
<uni-icons type="right" size="22"></uni-icons>
</view>
</view>
<view class="list-1">
<view class="list-icon">
<uni-icons type="wallet" size="22"></uni-icons>
</view>
<view class="list-name">
用户协议
</view>
<view class="list-right">
<uni-icons type="right" size="22"></uni-icons>
</view>
</view>
</view>
<view class="list-box">
<view class="list-2">
退出登录
</view>
<view class="list-2">
注销当前账号
</view>
</view>
</view>
</template>
<script>
export default {
data() {
return {
}
},
props:{
},
watch: {
},
methods: {
navigatorTo(e){
let url = ""
if(e=='addgoods'){
url = '/package1/myCenter/addGoods'
}else if(e=='merchant'){
url = '/package1/myCenter/myMerchant'
}else if(e == 'xiugaixinxi'){
url = '/pages/myCenter/shopDetail'
}
uni.navigateTo({
url: url
})
}
}
}
</script>
<style>
page{
width: 100%;
height: 100%;
font-size: 28rpx;
}
.page1 {
width: 100%;
height: 100%;
font-size: 28rpx;
}
.title-gary{
width: 100%;
height: 80rpx;
background: #777;
}
.title{
width: 100%;
height: 100rpx;
background: #fff;
line-height: 100rpx;
text-align: center;
}
.shop-box{
width: 100%;
height: 200rpx;
background: #fff;
border-top: 1px solid #eee;
display: flex;
}
.shop-left{
width: 100rpx;
height: 100rpx;
padding: 50rpx;
}
.shop-left image{
width: 100rpx;
height: 100rpx;
background-size: 100%;
}
.shop-center{
flex: 1;
line-height: 60rpx;
}
.shop-right{
width: 10%;
line-height: 200rpx;
text-align: center;
}
.shop-name{
margin-top: 50rpx;
font-weight: 700;
font-size: 30rpx;
}
.list-1{
display: flex;
width: 100%;
height: 100rpx;
line-height: 100rpx;
border-bottom: 1px solid #eee;
}
.list-box{
width: 100%;
height: auto;
background: #fff;
margin-top: 20rpx;
}
.list-2{
width: 100%;
height: 100rpx;
line-height: 100rpx;
text-align: center;
border-bottom: 1px solid #eee;
}
.list-icon{
width: 100rpx;
height: 100rpx;
text-align: center;
}
.list-name{
flex: 1;
}
.list-right{
width: 50rpx;
height: 100rpx;
}
</style>