143 lines
3.4 KiB
Vue
143 lines
3.4 KiB
Vue
<template>
|
|
<view class="page">
|
|
<u-navbar title="店铺管理" :border-bottom="false" :background="bgc" title-color='#000' title-size='36'
|
|
height='38'></u-navbar>
|
|
<view class="box">
|
|
<view class="shuju">
|
|
<view class="ddje">
|
|
<view class="shu">
|
|
全部店铺
|
|
</view>
|
|
<view class="sb">
|
|
0
|
|
</view>
|
|
</view>
|
|
<text style="width: 1px;height: 60rpx;background: #979797;margin-top: 24rpx;"></text>
|
|
<view class="ddje">
|
|
<view class="shu">
|
|
我的店铺
|
|
</view>
|
|
<view class="sb">
|
|
0
|
|
</view>
|
|
</view>
|
|
<text style="width: 1px;height: 60rpx;background: #979797;margin-top: 24rpx;"></text>
|
|
<view class="ddje">
|
|
<view class="shu">
|
|
下级店铺
|
|
</view>
|
|
<view class="sb">
|
|
0
|
|
</view>
|
|
</view>
|
|
</view>
|
|
|
|
<view class="tulist">
|
|
<image src="../../../static/image/dp1.png" mode="" @click="btnshop(1)"></image>
|
|
<image src="../../../static/image/ap2.png" mode="" @click="btnshop(2)"></image>
|
|
<!-- <image src="../../../static/image/ap3.png" mode="" @click="btnshop(3)"></image> -->
|
|
<image src="../../../static/image/ap4.png" mode="" @click="btnshop(4)"></image>
|
|
<image src="../../../static/image/ap5.png" mode="" style="margin-right: 0rpx;" @click="btnshop(5)"></image>
|
|
<!-- <image src="../../../static/image/ap6.png" mode="" style="margin-top: 48rpx;" @click="btnshop(6)"></image> -->
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
data() {
|
|
return {
|
|
|
|
}
|
|
},
|
|
methods: {
|
|
btnshop(num){
|
|
if(num == 1){
|
|
uni.navigateTo({
|
|
url:'/pages/agentpages/shopguanli/myshop/index'
|
|
})
|
|
}else if(num == 2){
|
|
uni.navigateTo({
|
|
url:'/pages/agentpages/shopguanli/discipleshop/index'
|
|
})
|
|
}else if(num == 4){
|
|
uni.navigateTo({
|
|
url:'/pages/agentpages/shopguanli/setupshop/index'
|
|
})
|
|
}else if(num == 6){
|
|
uni.navigateTo({
|
|
url:'/pages/agentpages/shopguanli/member/index'
|
|
})
|
|
}else if(num ==5){
|
|
uni.navigateTo({
|
|
url:'/pages/income/index'
|
|
})
|
|
}
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss">
|
|
page {
|
|
background: linear-gradient(180deg, #25CE88 0%, rgba(255, 255, 255, 0) 100%);
|
|
}
|
|
|
|
.page {
|
|
width: 750rpx;
|
|
position: fixed;
|
|
top: 0;
|
|
left: 0;
|
|
.box{
|
|
width: 750rpx;
|
|
height: 1440rpx;
|
|
background: #F4F5F7;
|
|
border-radius: 0rpx 0rpx 0rpx 0rpx;
|
|
padding-top: 48rpx;
|
|
.tulist{
|
|
width: 680rpx;
|
|
height: 304rpx;
|
|
background: #FFFFFF;
|
|
border-radius: 24rpx 24rpx 24rpx 24rpx;
|
|
margin: auto;
|
|
margin-top: 40rpx;
|
|
padding: 30rpx 50rpx;
|
|
box-sizing: border-box;
|
|
image{
|
|
width: 96rpx;
|
|
height: 98rpx;
|
|
display: inline-block;
|
|
margin-right: 60rpx;
|
|
}
|
|
}
|
|
.shuju {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
padding: 40rpx 60rpx;
|
|
box-sizing: border-box;
|
|
width: 680rpx;
|
|
height: 172rpx;
|
|
background: #FFFFFF;
|
|
border-radius: 24rpx 24rpx 24rpx 24rpx;
|
|
margin: auto;
|
|
.ddje {
|
|
text-align: center;
|
|
|
|
.shu {
|
|
font-weight: 500;
|
|
font-size: 28rpx;
|
|
color: #3D3D3D;
|
|
}
|
|
|
|
.sb {
|
|
margin-top: 20rpx;
|
|
font-weight: 500;
|
|
font-size: 40rpx;
|
|
color: #3D3D3D;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
</style> |