36 lines
834 B
Vue
36 lines
834 B
Vue
<template>
|
|
<view class="flex items-center justify-center flex-col pt-80rpx">
|
|
<image class="w-400rpx h-400rpx" src="http://zcs-test.oss-cn-chengdu.aliyuncs.com/product-spus/cover/2022-04-22/f6f96cba9ba86197e58ea3c2ce93b2a1.jpg" mode="scaleToFill"></image>
|
|
<view class="mt-20rpx">请用户通过微信扫码进入小程序生成订单</view>
|
|
<view class="grid grid-cols-2 gap-x-80rpx text-36rpx mt-120rpx">
|
|
<view @click="jump">门店管理</view>
|
|
<view>个人中心</view>
|
|
</view>
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
data() {
|
|
return {
|
|
|
|
};
|
|
},
|
|
methods:{
|
|
jump(){
|
|
uni.reLaunch({
|
|
url:'/pages/index/index'
|
|
})
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
<style>
|
|
page{
|
|
background: #ffffff;
|
|
}
|
|
</style>
|
|
<style lang="scss">
|
|
|
|
</style>
|