add-luntan-over.vue 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  1. <template>
  2. <view class="add-luntan-over u-flex-col u-col-center">
  3. <u-navbar :safeAreaInsetTop='true' title="帖子详情" @leftClick="toluntan" :placeholder = 'true'>
  4. </u-navbar>
  5. <view class="over-title u-flex">
  6. <image src="static/addluntanover.png" mode=""></image>
  7. <text>发布成功</text>
  8. </view>
  9. <view class="over-tips">
  10. 内容审核通过后将对所有人可见
  11. </view>
  12. <view class="over-btn" @click="toluntan">
  13. 去查看
  14. </view>
  15. </view>
  16. </template>
  17. <script>
  18. export default {
  19. data() {
  20. return {
  21. id: '',
  22. type: ''
  23. }
  24. },
  25. onLoad(options) {
  26. console.log(options);
  27. this.id = options.id
  28. this.type = options.type
  29. },
  30. methods: {
  31. toluntan() {
  32. if (this.type == 1) {
  33. uni.switchTab({
  34. url: '/pages/luntan/luntan'
  35. })
  36. } else {
  37. uni.navigateTo({
  38. url: "/pagesC/quanzi-info?id=" + this.id
  39. })
  40. }
  41. }
  42. }
  43. }
  44. </script>
  45. <style lang="scss">
  46. .add-luntan-over {
  47. padding: 80rpx 0;
  48. .over-btn {
  49. width: 606rpx;
  50. line-height: 92rpx;
  51. background: #0C66C2;
  52. border-radius: 12rpx;
  53. text-align: center;
  54. font-size: 32rpx;
  55. font-family: PingFangSC-Medium, PingFang SC;
  56. font-weight: 500;
  57. color: #FFFFFF;
  58. }
  59. .over-tips {
  60. font-size: 28rpx;
  61. font-family: PingFangSC-Regular, PingFang SC;
  62. font-weight: 400;
  63. color: #666666;
  64. margin-bottom: 102rpx;
  65. }
  66. .over-title {
  67. margin-bottom: 44rpx;
  68. image {
  69. width: 46rpx;
  70. height: 56rpx;
  71. margin-right: 10rpx;
  72. margin-top: -20rpx;
  73. }
  74. text {
  75. font-size: 40rpx;
  76. font-family: PingFangSC-Medium, PingFang SC;
  77. font-weight: 500;
  78. color: #222222;
  79. }
  80. }
  81. }
  82. </style>