Commit 52ce8aeeb479f38a186875f868ff336e3dd9d0f0

Authored by yangzhi
1 parent 755d1146

三方视频界面样式修改

uniapp-wuduhuajiao/pages/meeting/meeting.css
... ... @@ -49,10 +49,15 @@
49 49 flex: 1;
50 50 }
51 51 .bottom-input{
  52 + width: 650rpx;
52 53 margin-top: 20rpx;
  54 + display: flex;
  55 + align-items: center;
  56 + justify-content: space-between;
  57 + flex-direction: row;
53 58 }
54 59 .input {
55   - width: 650rpx;
  60 + width: 500rpx;
56 61 height: 80rpx;
57 62 background: #111118;
58 63 border-radius: 20px;
... ... @@ -60,6 +65,13 @@
60 65 padding: 10px;
61 66 font-size: 12px;
62 67 color: #ffffff;
  68 + flex: 1;
  69 +}
  70 +.submit-btn{
  71 + width: 110rpx;
  72 + margin-left: 10rpx;
  73 + flex: none;
  74 + padding: 0;
63 75 }
64 76 .name {
65 77 width: 100px;
... ...
uniapp-wuduhuajiao/pages/meeting/meeting.nvue
... ... @@ -102,7 +102,8 @@
102 102 </scroll-view>
103 103 <view class="bottom-input">
104 104 <input class="input" placeholder="想说点什么?" placeholder-style="color:#fff" v-model="messageContent"
105   - @confirm="sendMessage" confirm-type="send" :confirm-hold="true" />
  105 + @confirm="sendMessage" :confirm-hold="true" />
  106 + <button class="btn submit-btn">发送</button>
106 107 </view>
107 108 </view>
108 109 </view>
... ... @@ -198,7 +199,7 @@
198 199 ...mapState(['user', 'statistics', 'common']),
199 200 startBtnVisible() {
200 201 if (this.userId == this.meetingServiceUser.userId) {
201   - return !this.meetingServiceUser.meeting && this.meetingBusinessUser.userId;
  202 + return !this.meetingServiceUser.meeting;
202 203 }
203 204 return false;
204 205 },
... ...