Commit 52ce8aeeb479f38a186875f868ff336e3dd9d0f0

Authored by yangzhi
1 parent 755d1146

三方视频界面样式修改

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