1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889 |
- <template>
- <view class="page-container">
- <view class="center-image">
- <image class="" src="/static/my/group.png" mode="widthFix"></image>
- </view>
- <view class="tips">
- <text>群发助手可同时发送信息给多个</text>
- <text>好友/群聊,无需复制粘贴重复操作</text>
- </view>
- <view class="new_add">
- <button @click="goPath" class="new_add_btn"> + 新建群发</button>
- </view>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- }
- },
- methods: {
- goPath() {
- uni.navigateTo({
- url: '/pages/push/sendall'
- })
- },
- }
- }
- </script>
- <style scoped>
- .new_add {
- margin: 10rpx auto;
- display: flex;
- justify-content: center;
- align-items: center;
- }
- .new_add_btn {
- height: 80rpx;
- padding: 0 200rpx;
- border-radius: 40rpx;
- background: #2da2fd;
- color: #fff;
- font-size: 12px;
- display: flex;
- justify-content: center;
- align-items: center;
- }
- .tips {
- text-align: center;
- display: flex;
- flex-direction: column;
- align-items: center;
- width: 90vw;
- margin: 0 auto;
- margin-bottom: 60rpx;
- }
- .tips text {
- font-size: 14px;
- font-weight: 500;
- color: #333;
- }
- .page-container {
- background: #fff;
- min-height: 100vh;
- }
- .center-image {
- width: 94vw;
- height: auto;
- margin: 0 auto;
- padding-top: 200rpx;
- padding-bottom: 50rpx;
- display: flex;
- justify-content: center;
- align-items: center;
- }
- .center-image image {
- width: 100%;
- height: auto;
- }
- </style>
|