create_group.vue 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  1. <template>
  2. <view class="page-container">
  3. <view class="center-image">
  4. <image class="" src="/static/my/group.png" mode="widthFix"></image>
  5. </view>
  6. <view class="tips">
  7. <text>群发助手可同时发送信息给多个</text>
  8. <text>好友/群聊,无需复制粘贴重复操作</text>
  9. </view>
  10. <view class="new_add">
  11. <button @click="goPath" class="new_add_btn">&nbsp;&nbsp;+&nbsp;&nbsp;新建群发</button>
  12. </view>
  13. </view>
  14. </template>
  15. <script>
  16. export default {
  17. data() {
  18. return {
  19. }
  20. },
  21. methods: {
  22. goPath() {
  23. uni.navigateTo({
  24. url: '/pages/push/sendall'
  25. })
  26. },
  27. }
  28. }
  29. </script>
  30. <style scoped>
  31. .new_add {
  32. margin: 10rpx auto;
  33. display: flex;
  34. justify-content: center;
  35. align-items: center;
  36. }
  37. .new_add_btn {
  38. height: 80rpx;
  39. padding: 0 200rpx;
  40. border-radius: 40rpx;
  41. background: #2da2fd;
  42. color: #fff;
  43. font-size: 12px;
  44. display: flex;
  45. justify-content: center;
  46. align-items: center;
  47. }
  48. .tips {
  49. text-align: center;
  50. display: flex;
  51. flex-direction: column;
  52. align-items: center;
  53. width: 90vw;
  54. margin: 0 auto;
  55. margin-bottom: 60rpx;
  56. }
  57. .tips text {
  58. font-size: 14px;
  59. font-weight: 500;
  60. color: #333;
  61. }
  62. .page-container {
  63. background: #fff;
  64. min-height: 100vh;
  65. }
  66. .center-image {
  67. width: 94vw;
  68. height: auto;
  69. margin: 0 auto;
  70. padding-top: 200rpx;
  71. padding-bottom: 50rpx;
  72. display: flex;
  73. justify-content: center;
  74. align-items: center;
  75. }
  76. .center-image image {
  77. width: 100%;
  78. height: auto;
  79. }
  80. </style>