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

76 lines
1.4 KiB

11 months ago
11 months ago
10 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. },
  38. },
  39. }
  40. </script>
  41. <style scoped lang="scss">
  42. .authOption {
  43. .content {
  44. display: flex;
  45. justify-content: center;
  46. align-items: center;
  47. margin-top: 50%;
  48. .btns {
  49. display: flex;
  50. flex-direction: column;
  51. align-items: center;
  52. gap: 50rpx;
  53. .bottomBtn {
  54. width: 50vw;
  55. color: #ffffff;
  56. background: linear-gradient(to right, #3c69f1, #5f3bf5);
  57. }
  58. .firmBtn {
  59. width: 50vw;
  60. bordr-radius: 20rpx;
  61. border:1px solid black;
  62. }
  63. }
  64. }
  65. }
  66. </style>