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.
		
		
		
	
	
		
		
			
	
    
		
			
				
					
						                                                 | 
						 | 
						<template>	<view class="page">		<text>商户相关</text>		<button @click="goPage(0)">商户登录</button>		<button @click="goPage(0)">商户主页</button>		<text>用户相关</text>		<button @click="goPage(0)">用户支付页面</button>		<button @click="goPage(0)">用户支付页面2</button>		<text>代理商相关</text>		<button @click="goPage(0)">代理商登录</button>		<button @click="goPage(0)">代理商主页</button>	</view></template>
<script>	export default {		data() {			return {				bgColor: '#bgColor',				value: 1,				show:false,				title:'',				content:''			};		},		methods: {			goPage(num) {							}		}	}</script>
<style lang="scss">	.page{		display: flex;		flex-direction: column;		justify-content: center;		align-items: center;		text{			font-size: 38rpx;			margin-top: 28rpx;			margin-bottom: 10rpx;		}		button{			margin-top: 10rpx;		}	}</style>
  |