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

72 lines
1.3 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. this.$utils.navigateTo('/mine/certifiedIndividual?type=person')
  30. },
  31. firmAuth() {
  32. this.$utils.navigateTo('/mine/certifiedIndividual?type=firm')
  33. },
  34. },
  35. }
  36. </script>
  37. <style scoped lang="scss">
  38. .authOption {
  39. .content {
  40. display: flex;
  41. justify-content: center;
  42. align-items: center;
  43. margin-top: 50%;
  44. .btns {
  45. display: flex;
  46. flex-direction: column;
  47. align-items: center;
  48. gap: 50rpx;
  49. .bottomBtn {
  50. width: 50vw;
  51. color: #ffffff;
  52. background: linear-gradient(to right, #3c69f1, #5f3bf5);
  53. }
  54. .firmBtn {
  55. width: 50vw;
  56. bordr-radius: 20rpx;
  57. border:1px solid black;
  58. }
  59. }
  60. }
  61. }
  62. </style>