6
0
Fork 0
jiqu-library-miniprogram/src/pages/code/index.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>