帧视界壹通告,付费看视频的微信小程序
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.

77 lines
1.4 KiB

11 months ago
11 months ago
11 months ago
11 months ago
  1. <template>
  2. <view class="authOption">
  3. <!--顶部导航栏-->
  4. <navbar leftClick @leftClick="$utils.navigateBack" title="认证选择"/>
  5. <!--内容区-->
  6. <view class="content">
  7. <view class="btns">
  8. <view>
  9. <button @click="personAuth" class="bottomBtn">
  10. 个人认证
  11. </button>
  12. </view>
  13. <view>
  14. <button @click="firmAuth" class="firmBtn">
  15. 企业认证
  16. </button>
  17. </view>
  18. </view>
  19. </view>
  20. </view>
  21. </template>
  22. <script>
  23. export default {
  24. data() {
  25. return {}
  26. },
  27. methods: {
  28. personAuth() {
  29. uni.redirectTo({
  30. url: '/pages_mine/mine/certifiedIndividual?type=person'
  31. })
  32. },
  33. firmAuth() {
  34. uni.redirectTo({
  35. url: '/pages_mine/mine/certifiedIndividual?type=firm'
  36. })
  37. // this.$utils.navigateTo('/mine/certifiedIndividual?type=firm')
  38. },
  39. },
  40. }
  41. </script>
  42. <style scoped lang="scss">
  43. .authOption {
  44. .content {
  45. display: flex;
  46. justify-content: center;
  47. align-items: center;
  48. margin-top: 50%;
  49. .btns {
  50. display: flex;
  51. flex-direction: column;
  52. align-items: center;
  53. gap: 50rpx;
  54. .bottomBtn {
  55. width: 50vw;
  56. color: #ffffff;
  57. background: linear-gradient(to right, #3c69f1, #5f3bf5);
  58. }
  59. .firmBtn {
  60. width: 50vw;
  61. bordr-radius: 20rpx;
  62. border:1px solid black;
  63. }
  64. }
  65. }
  66. }
  67. </style>