add-luntan-over.vue 1.3 KB

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