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

95 lines
1.7 KiB

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">
  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. </view>
  22. </template>
  23. <script>
  24. import tabber from '@/components/base/tabbar.vue'
  25. import {
  26. mapState
  27. } from 'vuex'
  28. export default {
  29. components: {
  30. tabber
  31. },
  32. computed: {
  33. ...mapState(['count']),
  34. },
  35. data() {
  36. return {
  37. };
  38. }
  39. }
  40. </script>
  41. <style lang="scss">
  42. .publish {
  43. .top {
  44. height: 600rpx;
  45. background-image: $uni-linear-gradient-bg-color;
  46. padding: 0 20rpx;
  47. padding-top: calc(var(--status-bar-height) + 100rpx);
  48. .title {
  49. display: flex;
  50. color: #fff;
  51. justify-content: space-between;
  52. &>view {
  53. display: flex;
  54. justify-content: center;
  55. align-items: center;
  56. }
  57. }
  58. }
  59. .type{
  60. display: flex;
  61. justify-content: center;
  62. margin-top: 30rpx;
  63. &>view{
  64. width: 310rpx;
  65. height: 120rpx;
  66. background-color: #fff;
  67. margin: 10rpx;
  68. position: relative;
  69. border-radius: 20rpx;
  70. overflow: hidden;
  71. color: #fdcc4b;
  72. align-items: center;
  73. padding: 20rpx;
  74. display: flex;
  75. font-weight: 900;
  76. image{
  77. position: absolute;
  78. bottom: 0;
  79. right: 0;
  80. width: 100rpx;
  81. height: 100rpx;
  82. }
  83. }
  84. .post{
  85. background-color: #b7a6f6;
  86. color: #603af5;
  87. }
  88. }
  89. }
  90. </style>