Browse Source

我的页

master
tianyi 1 month ago
parent
commit
262c7a8ac3
  1. 21
      components/tab-bar/myCenter.vue

21
components/tab-bar/myCenter.vue

@ -3,6 +3,16 @@
<view>22222222</view> <view>22222222</view>
<view style="margin-top: 200px;" @click="navigatorTo('addgoods')">新增商品</view> <view style="margin-top: 200px;" @click="navigatorTo('addgoods')">新增商品</view>
<view style="margin-top: 200px;" @click="navigatorTo('merchant')">商家入驻</view> <view style="margin-top: 200px;" @click="navigatorTo('merchant')">商家入驻</view>
<view style="margin-top: 100px;" @click="navigatorTo('jianzhizhuce')">兼职注册</view>
<!-- 购物车弹窗 -->
<uni-popup ref="jianzhiPopup" background-color="rgba(2, 171, 255, 1)" borderRadius="40px 40px 40px 40px">
<view class="jianzhi-content" @tap="navigatorTo('partTimeReg')">
<img src="https://jewel-shop.oss-cn-beijing.aliyuncs.com/faf25c687bc1417282ebac719fd1bfba.png" alt="" style="width: 100%;height: 100%;">
<view style="position: absolute;bottom: -50px;left: 130px;" @tap.stop="$refs.jianzhiPopup.close()">
<uni-icons type="close" size="40" color="#fff"></uni-icons>
</view>
</view>
</uni-popup>
</view> </view>
</template> </template>
@ -26,6 +36,12 @@
url = '/package1/myCenter/addGoods' url = '/package1/myCenter/addGoods'
}else if(e=='merchant'){ }else if(e=='merchant'){
url = '/package1/myCenter/myMerchant' url = '/package1/myCenter/myMerchant'
}else if(e == 'partTimeReg'){
url = '/package1/myCenter/partTimeJobRegister'
this.$refs.jianzhiPopup.close()
}else if(e=='jianzhizhuce'){
this.$refs.jianzhiPopup.open()
return
} }
uni.navigateTo({ uni.navigateTo({
url: url url: url
@ -46,4 +62,9 @@
height: 100%; height: 100%;
font-size: 28rpx; font-size: 28rpx;
} }
.jianzhi-content{
width: 300px;
height: 350px;
position: relative;
}
</style> </style>
Loading…
Cancel
Save