add-quanzi-over.vue 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  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="back">
  11. 返回
  12. </view>
  13. </view>
  14. </template>
  15. <script>
  16. export default {
  17. data() {
  18. return {
  19. }
  20. },
  21. onLoad() {
  22. },
  23. methods: {
  24. back() {
  25. uni.navigateBack()
  26. }
  27. }
  28. }
  29. </script>
  30. <style lang="scss">
  31. .add-luntan-over {
  32. padding: 80rpx 0;
  33. .over-btn {
  34. width: 606rpx;
  35. line-height: 92rpx;
  36. background: #0C66C2;
  37. border-radius: 12rpx;
  38. text-align: center;
  39. font-size: 32rpx;
  40. font-family: PingFangSC-Medium, PingFang SC;
  41. font-weight: 500;
  42. color: #FFFFFF;
  43. }
  44. .over-tips {
  45. font-size: 28rpx;
  46. font-family: PingFangSC-Regular, PingFang SC;
  47. font-weight: 400;
  48. color: #666666;
  49. margin-bottom: 102rpx;
  50. }
  51. .over-title {
  52. margin-bottom: 44rpx;
  53. image {
  54. width: 46rpx;
  55. height: 56rpx;
  56. margin-right: 10rpx;
  57. margin-top: -20rpx;
  58. }
  59. text {
  60. font-size: 40rpx;
  61. font-family: PingFangSC-Medium, PingFang SC;
  62. font-weight: 500;
  63. color: #222222;
  64. }
  65. }
  66. }
  67. </style>