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.

48 lines
917 B

  1. <template>
  2. <view class="page">
  3. <text>商户相关</text>
  4. <button @click="goPage(0)">商户登录</button>
  5. <button @click="goPage(0)">商户主页</button>
  6. <text>用户相关</text>
  7. <button @click="goPage(0)">用户支付页面</button>
  8. <button @click="goPage(0)">用户支付页面2</button>
  9. <text>代理商相关</text>
  10. <button @click="goPage(0)">代理商登录</button>
  11. <button @click="goPage(0)">代理商主页</button>
  12. </view>
  13. </template>
  14. <script>
  15. export default {
  16. data() {
  17. return {
  18. bgColor: '#bgColor',
  19. value: 1,
  20. show:false,
  21. title:'',
  22. content:''
  23. };
  24. },
  25. methods: {
  26. goPage(num) {
  27. }
  28. }
  29. }
  30. </script>
  31. <style lang="scss">
  32. .page{
  33. display: flex;
  34. flex-direction: column;
  35. justify-content: center;
  36. align-items: center;
  37. text{
  38. font-size: 38rpx;
  39. margin-top: 28rpx;
  40. margin-bottom: 10rpx;
  41. }
  42. button{
  43. margin-top: 10rpx;
  44. }
  45. }
  46. </style>