chat.vue 15.4 KB
Newer Older
DCloud_JSON's avatar
DCloud_JSON 已提交
1
<template>
DCloud_JSON's avatar
DCloud_JSON 已提交
2 3 4
	<view class="page">
		<view class="container">
			<view v-if="isWidescreen" class="header">uni-im-chat</view>
DCloud_JSON's avatar
DCloud_JSON 已提交
5 6
			<text class="noData" v-if="msgList.length === 0">没有对话记录</text>
			<scroll-view :scroll-into-view="scrollIntoView" scroll-y="true" class="msg-list" :enable-flex="true">
DCloud_JSON's avatar
DCloud_JSON 已提交
7 8 9 10
				<view v-for="(msg,index) in msgList"  class="msg-item" :key="index">
					<view class="create_time-box">
						<uni-dateformat class="create_time" :date="msg.create_time" format="MM/dd hh:mm:ss"></uni-dateformat>
					</view>
DCloud_JSON's avatar
1.0.0  
DCloud_JSON 已提交
11 12 13 14
					<view :class="{reverse:!msg.isAi}">
						<view class="userInfo">
							<image class="avatar" :src="msg.isAi?'../../static/uni-ai.png':'../../static/avatar.png'" mode="widthFix"></image>
						</view>
DCloud_JSON's avatar
DCloud_JSON 已提交
15 16
						<view class="content">
							<uni-ai-msg :md="msg.content" :show-cursor="index == msgList.length-1 && msg.isAi && sseIndex"></uni-ai-msg>
DCloud_JSON's avatar
DCloud_JSON 已提交
17
						</view>
DCloud_JSON's avatar
1.0.0  
DCloud_JSON 已提交
18 19 20 21
						<uni-icons v-if="index == msgList.length-1 && !msg.isAi && msg.state != 100 && msgStateIcon(msg)"
							@click="msg.state == -100 ? retriesSendMsg() : ''" :color="msg.state===0?'#999':'#d22'"
							:type="msgStateIcon(msg)" class="msgStateIcon">
						</uni-icons>
DCloud_JSON's avatar
DCloud_JSON 已提交
22 23 24 25 26
					</view>
				</view>
				<view id="last-msg-item"></view>
			</scroll-view>

DCloud_JSON's avatar
DCloud_JSON 已提交
27 28 29 30 31 32 33 34 35 36 37 38 39
			<view class="foot-box">
				<view class="menu" v-if="isWidescreen">
					<view class="trash menu-item">
						<image @click="clear" src="@/static/remove.png" mode="heightFix"></image>
					</view>
					<view class="set-stream menu-item">
						<view class="title">
							<text>流式响应</text>
							<uni-icons @click="toStreamMD" class="help" type="help"></uni-icons>
							<text>:</text>
						</view>
						<switch :checked="stream" @change="changeStream" />
					</view>
DCloud_JSON's avatar
DCloud_JSON 已提交
40
				</view>
DCloud_JSON's avatar
DCloud_JSON 已提交
41 42 43 44 45 46 47 48 49 50 51 52 53
				
				<view class="foot-box-content">
					<view v-if="!isWidescreen" class="trash">
						<uni-icons @click="clear" type="trash" size="24" color="#888"></uni-icons>
					</view>
					<view class="textarea-box">
						<textarea v-model="content" class="textarea" :auto-height="!isWidescreen" :disabled="inputBoxDisabled"
							:placeholder="placeholderText" :maxlength="-1" placeholder-class="input-placeholder"></textarea>
					</view>
					<view class="send-btn-box">
						<text v-if="isWidescreen" class="send-btn-tip">↵ 发送 / shift + ↵ 换行</text>
						<button @click="beforeSendMsg" :disabled="inputBoxDisabled || !content" class="send" type="primary">发送</button>
					</view>
DCloud_JSON's avatar
DCloud_JSON 已提交
54
				</view>
DCloud_JSON's avatar
DCloud_JSON 已提交
55 56 57 58 59 60 61 62 63
			</view>
			
			<view v-if="!isWidescreen" id="set-stream">
				<view class="title">
					<text>流式响应</text>
					<uni-icons @click="toStreamMD" class="help" type="help"></uni-icons>
					<text>:</text>
				</view>
				<switch :checked="stream" @change="changeStream" />
DCloud_JSON's avatar
DCloud_JSON 已提交
64 65 66 67 68 69 70 71 72 73 74 75 76
			</view>
		</view>
	</view>
</template>

<script>
	export default {
		data() {
			return {
				scrollIntoView: "",
				msgList: [],
				content: "",
				sseIndex: 0,
DCloud_JSON's avatar
DCloud_JSON 已提交
77 78
				stream:false,
				isWidescreen:false
DCloud_JSON's avatar
DCloud_JSON 已提交
79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104
			}
		},
		computed: {
			inputBoxDisabled() {
				if (this.sseIndex !== 0) {
					return true
				}

				let length = this.msgList.length
				if (length) {
					return !this.msgList[length - 1].isAi
				} else {
					return false
				}
			},
			placeholderText() {
				if (this.inputBoxDisabled) {
					return 'uni-ai正在回复中'
				} else {
					// #ifdef H5
					return window.innerWidth > 960 ? '请输入内容,ctrl + enter 发送' : '请输入要发给uni-ai的内容'
					// #endif
					return '请输入要发给uni-ai的内容'
				}
			}
		},
105 106 107 108 109 110
		watch: {
			msgList:{
				handler(msgList) {
					uni.setStorageSync('uni-ai-msg', msgList)
				},
				deep:true
DCloud_JSON's avatar
DCloud_JSON 已提交
111 112 113 114 115 116 117 118 119 120 121 122 123
			}
		},
		async mounted() {
			// for (let i = 0; i < 15; i++) {
			// 	this.msgList.push({
			// 		isAi: i % 2 == true,
			// 		content: "1-" + i
			// 	})
			// }

			this.msgList = uni.getStorageSync('uni-ai-msg') || []

			// this.msgList.pop()
124
			// console.log('this.msgList', this.msgList);
DCloud_JSON's avatar
DCloud_JSON 已提交
125 126 127 128 129 130 131 132 133 134 135 136 137 138
			this.showLastMsg()
			
			// #ifdef H5
			//获得消息输入框对象
			let adjunctKeydown = false
			const textareaDom = document.querySelector('.textarea-box textarea');
			if (textareaDom) {
				//键盘按下时
				textareaDom.onkeydown = e => {
					// console.log('onkeydown', e.keyCode)
					if ([16, 17, 18, 93].includes(e.keyCode)) {
						//按下了shift ctrl alt windows键
						adjunctKeydown = true;
					}
DCloud_JSON's avatar
DCloud_JSON 已提交
139
					if (e.keyCode == 13 && !adjunctKeydown) {
DCloud_JSON's avatar
DCloud_JSON 已提交
140 141 142 143 144 145 146 147 148 149
						this.beforeSendMsg();
					}
				};
				textareaDom.onkeyup = e => {
					//松开adjunct键
					if ([16, 17, 18, 93].includes(e.keyCode)) {
						adjunctKeydown = false;
					}
				};
			}
DCloud_JSON's avatar
DCloud_JSON 已提交
150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194
			// #endif
			
			// 添加惰性函数,检查是否开通push
			this.changeStream.check = async ()=>{
				uni.getPushClientId({
					fail:()=> {
						this.stream = false
						uni.showModal({
							content: '你暂未开通uni-push。不支持此功能',
							showCancel: false,
							confirmText:"查看详情",
							complete() {
								let url = "https://uniapp.dcloud.net.cn/uniCloud/uni-ai-chat.html#%E6%B3%A8%E6%84%8F%E4%BA%8B%E9%A1%B9"
								// #ifndef H5
								uni.setClipboardData({
									data:url,
									showToast:false,
									success() {
										uni.showToast({
											title: '已复制文档链接,请到浏览器粘贴浏览',
											icon: 'none',
											duration:5000
										});
									}
								})
								// #endif
								// #ifdef H5
								window.open(url)
								// #endif
								
							}
						});
						console.log('你暂未开通uni-push。不支持此功能。详情:https://uniapp.dcloud.net.cn/uniCloud/uni-ai-chat.html#%E6%B3%A8%E6%84%8F%E4%BA%8B%E9%A1%B9');
					},
					success:()=>{
						this.changeStream.check = ()=>{}
					}
				})
			}
			
			uni.createMediaQueryObserver(this).observe({
				minWidth: 650,
			}, matches => {
				this.isWidescreen = matches;
			})
DCloud_JSON's avatar
DCloud_JSON 已提交
195 196
		},
		methods: {
197 198 199
			// updateLastMsg(){
				
			// },
DCloud_JSON's avatar
DCloud_JSON 已提交
200
			changeStream(e){
DCloud_JSON's avatar
DCloud_JSON 已提交
201 202
				this.changeStream.check()
				
203
				// console.log('e',e.detail.value);
DCloud_JSON's avatar
DCloud_JSON 已提交
204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235
				this.stream = e.detail.value
			},
			retriesSendMsg() {
				this.send()
			},
			beforeSendMsg() {
				if(!this.content){
					return uni.showToast({
						title: '内容不能为空',
						icon: 'none'
					});
				}
				
				this.msgList.push({
					isAi: false,
					content: this.content,
					state: 0,
					create_time: Date.now()
				})
				this.showLastMsg()
				// 清空文本内容
				this.$nextTick(() => {
					this.content = ''
				})
				this.send()
			},
			async send() {
				let messages = []
				// 复制一份,消息列表数据
				let msgs = [...this.msgList]
				// 带总结的消息 index
				let findIndex = [...msgs].reverse().findIndex(item => item.summarize)
236
				// console.log('findIndex', findIndex)
DCloud_JSON's avatar
DCloud_JSON 已提交
237 238
				if (findIndex != -1) {
					let aiSummaryIndex = msgs.length - findIndex - 1
239
					// console.log('aiSummaryIndex', aiSummaryIndex)
DCloud_JSON's avatar
DCloud_JSON 已提交
240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264
					msgs[aiSummaryIndex].content = msgs[aiSummaryIndex].summarize
					// 拿最后一条带直接的消息作为与ai对话的msg body
					msgs = msgs.splice(aiSummaryIndex, msgs.length - 1)
				} else {
					// 如果未总结过就直接从末尾拿10条
					msgs = msgs.splice(-10)
				}

				messages = msgs.map(item => {
					let role = "user"
					if (item.isAi) {
						role = item.summarize ? 'system' : 'assistant'
					}
					return {
						content: item.content,
						role
					}
				})

				console.log('send to ai messages:', messages);
				
				
				let SSEChannel = false;
				if(this.stream){
					SSEChannel = new uniCloud.SSEChannel() // 创建消息通道
265
					// console.log('SSEChannel',SSEChannel);
DCloud_JSON's avatar
DCloud_JSON 已提交
266
					SSEChannel.on('message', (message) => { // 监听message事件
267
						// console.log('on message', message);
DCloud_JSON's avatar
DCloud_JSON 已提交
268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284
						if (this.sseIndex === 0) {
							this.msgList.push({
								isAi: true,
								content: message,
								create_time: Date.now()
							})
							this.showLastMsg()
						} else {
							let length = this.msgList.length,
								lastMsg = this.msgList[length - 1]
							lastMsg.content +=  "\n" + message
							this.msgList.splice(length - 1, 1, lastMsg)
							this.showLastMsg()
						}
						this.sseIndex++
					})
					SSEChannel.on('end', (e) => { // 监听end事件,如果云端执行end时传了message,会在客户端end事件内收到传递的消息
285
						// console.log('on end', e);
DCloud_JSON's avatar
DCloud_JSON 已提交
286
						if(e && e.summarize){
DCloud_JSON's avatar
DCloud_JSON 已提交
287 288 289 290 291 292 293 294 295 296 297
							let length = this.msgList.length,
								lastMsg = this.msgList[length - 1]
							lastMsg.summarize = e.summarize
							this.msgList.splice(length - 1, 1, lastMsg)
						}
						this.sseIndex = 0
						this.showLastMsg()
					})
					await SSEChannel.open() // 等待通道开启
				}
				
DCloud_JSON's avatar
1.0.0  
DCloud_JSON 已提交
298 299 300 301

				const uniAiChat = uniCloud.importObject("uni-ai-chat",{
					customUI:true
				})
DCloud_JSON's avatar
DCloud_JSON 已提交
302
				uniAiChat.send({
DCloud_JSON's avatar
1.0.0  
DCloud_JSON 已提交
303 304
					messages,
					SSEChannel
DCloud_JSON's avatar
DCloud_JSON 已提交
305 306 307 308 309 310
				})
				.then(res => {
					let index = this.msgList.length - 1
					let lastItem = this.msgList[index]
					lastItem.state = 100
					this.msgList.splice(index, 1, lastItem)
DCloud_JSON's avatar
DCloud_JSON 已提交
311

DCloud_JSON's avatar
DCloud_JSON 已提交
312
					if (!SSEChannel) {
313
						// console.log(res, res.reply);
DCloud_JSON's avatar
DCloud_JSON 已提交
314 315
						this.msgList.push({
							isAi: true,
DCloud_JSON's avatar
1.0.0  
DCloud_JSON 已提交
316 317
							content: res.reply,
							summarize: res.summarize,
DCloud_JSON's avatar
DCloud_JSON 已提交
318 319 320 321 322 323 324 325 326 327 328
							create_time: Date.now()
						})
						this.showLastMsg()
					}
				})
				.catch(e => {
					console.log(e);
					let index = this.msgList.length - 1
					let lastItem = this.msgList[index]
					lastItem.state = -100
					this.msgList.splice(index, 1, lastItem)
DCloud_JSON's avatar
DCloud_JSON 已提交
329

DCloud_JSON's avatar
DCloud_JSON 已提交
330 331 332 333 334
					uni.showModal({
						content: JSON.stringify(e.message),
						showCancel: false
					});
				})
DCloud_JSON's avatar
DCloud_JSON 已提交
335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373
			},
			showLastMsg() {
				this.$nextTick(() => {
					this.scrollIntoView = "last-msg-item"
					this.$nextTick(() => {
						this.scrollIntoView = ""
					})
				})
			},
			msgStateIcon(msg) {
				switch (msg.state) {
					case 0:
						//	发送中
						return 'spinner-cycle'
						break;
					case -100:
						//	发送失败
						return 'refresh-filled'
						break;
					case -200:
						//	禁止发送(内容不合法)
						return 'info-filled'
						break;
					default:
						return false
						break;
				}
			},
			clear() {
				uni.showModal({
					title: "确认要清空聊天记录?",
					content: '本操作不可撤销',
					complete: (e) => {
						if (e.confirm) {
							this.msgList = []
						}
					}
				});

DCloud_JSON's avatar
DCloud_JSON 已提交
374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392
			},
			toStreamMD(){
				let url = "https://uniapp.dcloud.net.cn/uniCloud/uni-ai.html#chat-completion-stream"
				// #ifndef H5
				uni.setClipboardData({
					data:url,
					showToast:false,
					success() {
						uni.showToast({
							title: '已复制文档链接,请到浏览器粘贴浏览',
							icon: 'none',
							duration:5000
						});
					}
				})
				// #endif
				// #ifdef H5
				window.open(url)
				// #endif
DCloud_JSON's avatar
DCloud_JSON 已提交
393 394 395 396 397 398 399 400 401
			}
		}
	}
</script>

<style lang="scss">
	/* #ifndef APP-NVUE */
	view,
	textarea,
DCloud_JSON's avatar
DCloud_JSON 已提交
402
	button,
DCloud_JSON's avatar
DCloud_JSON 已提交
403
	.page
DCloud_JSON's avatar
DCloud_JSON 已提交
404
	{
DCloud_JSON's avatar
DCloud_JSON 已提交
405
		display: flex;
DCloud_JSON's avatar
DCloud_JSON 已提交
406
		box-sizing: border-box;
DCloud_JSON's avatar
DCloud_JSON 已提交
407
	}
DCloud_JSON's avatar
DCloud_JSON 已提交
408 409
	/* #endif */
	
DCloud_JSON's avatar
DCloud_JSON 已提交
410 411 412 413 414 415 416

	/* #ifndef APP-NVUE */
	page,
	/* #endif */
	.page,
	.container {
		background-color: #efefef;
DCloud_JSON's avatar
DCloud_JSON 已提交
417 418
		flex: 1;
		
DCloud_JSON's avatar
DCloud_JSON 已提交
419 420 421
		/* #ifdef H5 */
		height: calc(100vh - 44px);
		/* #endif */
DCloud_JSON's avatar
DCloud_JSON 已提交
422
		flex-direction: column;
DCloud_JSON's avatar
DCloud_JSON 已提交
423 424 425
		align-items: center;
		justify-content: center;
	}
DCloud_JSON's avatar
DCloud_JSON 已提交
426 427 428

	/* #ifndef APP-NVUE */
	.container {
DCloud_JSON's avatar
DCloud_JSON 已提交
429
		background-color: #FAFAFA;
DCloud_JSON's avatar
DCloud_JSON 已提交
430 431 432 433 434 435
	}
	/* #endif */

	.foot-box {
		width: 750rpx;
		display: flex;
DCloud_JSON's avatar
DCloud_JSON 已提交
436
		flex-direction: column;
DCloud_JSON's avatar
DCloud_JSON 已提交
437 438
		padding: 10px 0px;
		background-color: #FFF;
DCloud_JSON's avatar
DCloud_JSON 已提交
439 440 441
	}
	.foot-box-content{
		justify-content: space-around;
DCloud_JSON's avatar
DCloud_JSON 已提交
442 443
	}

DCloud_JSON's avatar
DCloud_JSON 已提交
444
	.textarea-box {
DCloud_JSON's avatar
1.0.0  
DCloud_JSON 已提交
445
		padding: 8px 10px;
DCloud_JSON's avatar
DCloud_JSON 已提交
446 447 448 449 450 451 452 453 454
		background-color: #f9f9f9;
		border-radius: 5px;
	}

	.textarea-box .textarea {
		max-height: 100px;
		font-size: 14px;
		/* #ifndef APP-NVUE */
		overflow: auto;
DCloud_JSON's avatar
DCloud_JSON 已提交
455 456
		/* #endif */
		width: 450rpx;
DCloud_JSON's avatar
DCloud_JSON 已提交
457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475
	}

	/* #ifndef APP-NVUE */
	/*隐藏滚动条*/
	.textarea-box .textarea::-webkit-scrollbar {
		width: 0;
	}
	/* #endif */

	.input-placeholder {
		color: #bbb;
	}

	.trash,
	.send {
		width: 50px;
		height: 30px;
		justify-content: center;
		align-items: center;
DCloud_JSON's avatar
1.0.0  
DCloud_JSON 已提交
476
		flex-shrink: 0;
DCloud_JSON's avatar
DCloud_JSON 已提交
477 478 479
	}

	.trash {
DCloud_JSON's avatar
DCloud_JSON 已提交
480 481
		width: 30rpx;
		margin-left: 10rpx;
DCloud_JSON's avatar
DCloud_JSON 已提交
482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514
	}

	.send {
		color: #FFF;
		border-radius: 4px;
		display: flex;
		margin: 0;
		padding: 0;
		font-size: 14px;
		margin-right: 20rpx;
	}

	/* #ifndef APP-NVUE */
	.send::after {
		display: none;
	}

	/* #endif */


	.msg-list {
		flex: 1;
		height: 1px;
		width: 750rpx;
	}

	.userInfo {
		flex-direction: column;
	}

	.msg-item {
		position: relative;
		width: 750rpx;
DCloud_JSON's avatar
1.0.0  
DCloud_JSON 已提交
515
		flex-direction: column;
DCloud_JSON's avatar
DCloud_JSON 已提交
516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536
		padding: 0 15px;
		padding-bottom: 15px;
	}

	.msgStateIcon {
		position: relative;
		top: 5px;
		right: 5px;
		align-self: center;
	}

	.avatar {
		width: 40px;
		border-radius: 2px;
	}

	.create_time {
		font-size: 12px;
		padding: 5px;
		padding-top: 0;
		color: #aaa;
DCloud_JSON's avatar
DCloud_JSON 已提交
537 538 539 540 541
		justify-content: center;
		width:750rpx;
		/* #ifdef MP */
		display: flex;
		/* #endif */
DCloud_JSON's avatar
DCloud_JSON 已提交
542 543 544
	}

	.content {
DCloud_JSON's avatar
DCloud_JSON 已提交
545 546 547
		/* #ifndef APP-NVUE */
		max-width: 550rpx;
		/* #endif */
DCloud_JSON's avatar
DCloud_JSON 已提交
548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590
		background-color: #FFF;
		border-radius: 5px;
		padding: 12px 10px;
		margin-left: 10px;
		/* #ifndef APP-NVUE */
		word-break: break-all;
		user-select: text;
		cursor: text;
		/* #endif */
	}

	/* #ifndef APP-NVUE */
	.content {
		display: inline;
	}
	.content * {
		display: inline;
	}
	/* #endif */


	.reverse {
		flex-direction: row-reverse;
	}

	.reverse .content {
		margin-left: 0;
		margin-right: 10px;
	}

	.reverse-align {
		align-items: flex-end;
	}

	.noData {
		margin-top: 15px;
		text-align: center;
		width: 750rpx;
		color: #aaa;
		font-size: 12px;
		justify-content: center;
	}
	
DCloud_JSON's avatar
DCloud_JSON 已提交
591
	#set-stream{
DCloud_JSON's avatar
DCloud_JSON 已提交
592
		z-index: 999;
DCloud_JSON's avatar
DCloud_JSON 已提交
593
		padding:0 5px;
DCloud_JSON's avatar
DCloud_JSON 已提交
594 595
		justify-content: center;
		align-items: center;
DCloud_JSON's avatar
DCloud_JSON 已提交
596 597 598 599 600 601 602 603
		position: fixed;
		bottom: 50px;
		right: 0;
	}
	#set-stream .title{
		font-size: 12px;
		position: relative;
		left: 10rpx;
DCloud_JSON's avatar
DCloud_JSON 已提交
604
	}
DCloud_JSON's avatar
DCloud_JSON 已提交
605 606 607 608
	#set-stream switch{
		transform: scale(0.5);
	}
	
DCloud_JSON's avatar
DCloud_JSON 已提交
609
	/* #ifdef H5 */
DCloud_JSON's avatar
DCloud_JSON 已提交
610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651
	@media screen and (min-width:650px){
		.foot-box{
			border-top: solid 1px #dde0e2;
		}
		.page{
			width: 100vw;
			flex-direction: row;
		}
		.page * {
			max-width: 950px;
		}
		
		.container, {
			box-shadow: 0 0 5px #e0e1e7;
			margin-top: 44px;
			border-radius: 10px;
			overflow: hidden;
		}
		
		.container .header{
			height: 44px;
			line-height: 44px;
			border-bottom: 1px solid #F0F0F0;
			width: 100vw;
			justify-content: center;
			font-weight: 500;
		}
		
		.content {
			background-color: #f9f9f9;
		}
		
		.foot-box,
		.foot-box-content,
		.msg-list,
		.msg-item,
		// .create_time,
		.noData,
		.textarea-box,
		.textarea,
		textarea-box {
			width: 100% !important;
DCloud_JSON's avatar
DCloud_JSON 已提交
652
		}
DCloud_JSON's avatar
DCloud_JSON 已提交
653 654 655
		
		.create_time-box {
			margin-top: 15px;
DCloud_JSON's avatar
DCloud_JSON 已提交
656 657
			justify-content: center;
		}
DCloud_JSON's avatar
DCloud_JSON 已提交
658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711
		.create_time{
			display: flex;
		}
		
		.textarea-box,
		.textarea,
		textarea,
		textarea-box {
			height: 120px;
		}
		
		.container,
		.foot-box,
		.textarea-box {
			background-color: #FFF;
		}
		
		.foot-box-content{
			flex-direction: column;
			justify-content: center;
			align-items: flex-end;
			padding-bottom: 0;
		}
		
		.menu {
			padding:0 10px;
		}
		.menu-item{
			height:20px;
			justify-content: center;
			align-items: center;
			align-content: center;
			display: flex;
			margin-right: 10px;
			cursor: pointer;
		}
		.trash {
			opacity: 0.8;
		}
		.trash image{
			height: 15px;
		}
		
		.set-stream .title {
			font-size: 12px;
		}
		.set-stream switch {
			transform: scale(0.6);
			position: relative;
			left: -5px;
		}
		
		.textarea-box,.textarea-box *{
			// border: 1px solid #000;
DCloud_JSON's avatar
DCloud_JSON 已提交
712
		}
DCloud_JSON's avatar
DCloud_JSON 已提交
713 714 715 716 717 718
		
		.send-btn-box .send-btn-tip{
			color: #919396;
			margin-right: 8px;
			font-size: 12px;
			line-height: 28px;
DCloud_JSON's avatar
DCloud_JSON 已提交
719 720 721
		}
	}
	/* #endif */
DCloud_JSON's avatar
DCloud_JSON 已提交
722
</style>