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

101 lines
1.8 KiB

11 months ago
11 months ago
11 months ago
11 months ago
11 months ago
11 months ago
11 months ago
11 months ago
11 months ago
11 months ago
11 months ago
11 months ago
  1. <template>
  2. <view class="publish">
  3. <view class="top" v-if="">
  4. <view class="title">
  5. 发布
  6. </view>
  7. <view class="type">
  8. <view class="post"
  9. @click="$utils.navigateTo('/publish/publishPost')">
  10. 发布帖子
  11. <image src="/static/image/publish/p2.png" mode=""></image>
  12. </view>
  13. <view class=""
  14. @click="$utils.navigateTo('/publish/actorRelease')">
  15. 发布名片
  16. <image src="/static/image/publish/p1.png" mode=""></image>
  17. </view>
  18. </view>
  19. </view>
  20. <tabber :select="1" />
  21. <showLogin ref="showLogin"/>
  22. </view>
  23. </template>
  24. <script>
  25. import tabber from '@/components/base/tabbar.vue'
  26. import showLogin from '@/components/config/showLogin.vue'
  27. import {
  28. mapState
  29. } from 'vuex'
  30. export default {
  31. components: {
  32. tabber,
  33. showLogin
  34. },
  35. computed: {
  36. ...mapState(['count']),
  37. },
  38. onShow() {
  39. this.$refs.showLogin.checkLogin()
  40. },
  41. data() {
  42. return {
  43. };
  44. }
  45. }
  46. </script>
  47. <style lang="scss">
  48. .publish {
  49. .top {
  50. height: 600rpx;
  51. background-image: $uni-linear-gradient-bg-color;
  52. padding: 0 20rpx;
  53. padding-top: calc(var(--status-bar-height) + 100rpx);
  54. .title {
  55. display: flex;
  56. color: #fff;
  57. justify-content: space-between;
  58. &>view {
  59. display: flex;
  60. justify-content: center;
  61. align-items: center;
  62. }
  63. }
  64. }
  65. .type{
  66. display: flex;
  67. justify-content: center;
  68. margin-top: 30rpx;
  69. &>view{
  70. width: 310rpx;
  71. height: 120rpx;
  72. background-color: #fff;
  73. margin: 10rpx;
  74. position: relative;
  75. border-radius: 20rpx;
  76. overflow: hidden;
  77. color: #fdcc4b;
  78. align-items: center;
  79. padding: 20rpx;
  80. display: flex;
  81. font-weight: 900;
  82. image{
  83. position: absolute;
  84. bottom: 0;
  85. right: 0;
  86. width: 100rpx;
  87. height: 100rpx;
  88. }
  89. }
  90. .post{
  91. background-color: #b7a6f6;
  92. color: #603af5;
  93. }
  94. }
  95. }
  96. </style>