useragreement.vue 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  1. <template>
  2. <view class="content">
  3. 我是i协议
  4. </view>
  5. </template>
  6. <script>
  7. import {
  8. getOrderList
  9. } from "../../utils/service.js";
  10. export default {
  11. components: {
  12. },
  13. data() {
  14. return {
  15. cells: [
  16. {
  17. icon: 'setting-fill',
  18. title: '企业管理'
  19. },
  20. {
  21. icon: 'setting-fill',
  22. title: '资质管理'
  23. },
  24. {
  25. icon: 'setting-fill',
  26. title: '用户协议'
  27. },
  28. {
  29. icon: 'setting-fill',
  30. title: '关于我们'
  31. },
  32. ],
  33. };
  34. },
  35. onLoad(e) {
  36. },
  37. methods: {
  38. goClick(index) {
  39. switch (index) {
  40. case 0:
  41. uni.navigateTo({
  42. url: '/pages/aboutme/aboutme'
  43. })
  44. break;
  45. case 1:
  46. uni.navigateTo({
  47. url: '/pages/aboutme/aboutme'
  48. })
  49. break;
  50. case 2:
  51. uni.navigateTo({
  52. url: '/pages/aboutme/aboutme'
  53. })
  54. break;
  55. case 3:
  56. uni.navigateTo({
  57. url: '/pages/aboutme/aboutme'
  58. })
  59. break;
  60. default:
  61. uni.navigateTo({
  62. url: '/pages/aboutme/aboutme'
  63. })
  64. break;
  65. }
  66. }
  67. },
  68. };
  69. </script>
  70. <style lang="scss" scoped>
  71. .flex-box {
  72. display: flex;
  73. align-items: center;
  74. .box {
  75. width: 330rpx;
  76. height: 120rpx;
  77. border: 1px solid black;
  78. border-radius: 10rpx;
  79. }
  80. }
  81. .login {
  82. font-size: 40rpx;
  83. font-weight: bold;
  84. }
  85. </style>