123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495 |
- <template>
- <view class="TUI-message-input-container">
- <view class="TUI-message-input">
- <!-- #ifdef H5 -->
- <image
- class="TUI-icon"
- @tap="handleEmoji"
- src="../../../../assets/icon/emoji.svg"
- ></image>
- <!-- #endif -->
- <!-- #ifndef H5 -->
- <image
- class="TUI-icon"
- @tap="handleSwitchAudio"
- src="../../../../assets/icon/audio.svg"
- ></image>
- <!-- #endif -->
- <view v-if="!isAudio" class="TUI-message-input-main">
- <textarea
- class="TUI-message-input-area"
- placeholder-class="input-placeholder"
- v-model="inputText"
- placeholder="请输入想要咨询的问题..."
- auto-height
- confirm-type="send"
- confirm-hold="true"
- @confirm="handleSendTextMessage"
- />
- </view>
- <view v-else class="TUI-message-input-main">
- <AudioMessage></AudioMessage>
- </view>
- <view class="TUI-message-input-functions" hover-class="none">
- <image
- class="TUI-icon"
- @tap="handleEmoji"
- src="../../../../assets/icon/emoji.svg"
- ></image>
- <view @tap="handleExtensions">
- <image
- class="TUI-icon"
- src="../../../../assets/icon/more.svg"
- ></image>
- </view>
- </view>
- </view>
- <view v-if="displayFlag === 'emoji'" class="TUI-Emoji-area">
- <Face
- :show="displayFlag === 'emoji'"
- @send="handleSend"
- @handleSendEmoji="handleSendTextMessage"
- ></Face>
- </view>
- <view v-if="displayFlag === 'extension'" class="TUI-Extensions">
- <!-- TODO: 这里功能还没实现
- <! <camera device-position="back" flash="off" binderror="error" style="width: 100%; height: 300px;"></camera>-->
- <view class="TUI-Extension-slot" @tap="handleSendImageMessage('camera')">
- <image
- class="TUI-Extension-icon"
- src="../../../../assets/icon/take-photo.svg"
- ></image>
- <view class="TUI-Extension-slot-name">拍照</view>
- </view>
- <view class="TUI-Extension-slot" @tap="handleSendImageMessage('album')">
- <image
- class="TUI-Extension-icon"
- src="../../../../assets/icon/send-img.svg"
- ></image>
- <view class="TUI-Extension-slot-name">图片</view>
- </view>
- <view class="TUI-Extension-slot" @tap="handleSendVideoMessage('album')">
- <image
- class="TUI-Extension-icon"
- src="../../../../assets/icon/take-video.svg"
- ></image>
- <view class="TUI-Extension-slot-name">视频</view>
- </view>
- <view class="TUI-Extension-slot" @tap="handleSendVideoMessage('camera')">
- <image
- class="TUI-Extension-icon"
- src="../../../../assets/icon/take-photo.svg"
- ></image>
- <view class="TUI-Extension-slot-name">录像</view>
- </view>
- <!-- #ifndef H5 -->
- <view v-if="(imType==1&&orderType==2)||imType==2" class="TUI-Extension-slot" @tap="handleCalling(1)">
- <image
- class="TUI-Extension-icon"
- src="../../../../assets/icon/audio-calling.svg"
- ></image>
- <view class="TUI-Extension-slot-name">语音通话</view>
- </view>
- <view v-if="(imType==1&&orderType==2)||imType==2" class="TUI-Extension-slot" @tap="handleCalling(2)">
- <image
- class="TUI-Extension-icon"
- src="../../../../assets/icon/take-video.svg"
- ></image>
- <view class="TUI-Extension-slot-name">视频通话</view>
- </view>
- <!-- #endif -->
- <view v-if="imType==1" class="TUI-Extension-slot" @tap="handleOrder()">
- <image
- class="TUI-Extension-icon"
- src="../../../../assets/icon/inquiry.svg"
- ></image>
- <view class="TUI-Extension-slot-name">问诊订单</view>
- </view>
- <view v-if="imType==2" class="TUI-Extension-slot" @tap="handleFollow()">
- <image
- class="TUI-Extension-icon"
- src="../../../../assets/icon/inquiry.svg"
- ></image>
- <view class="TUI-Extension-slot-name">随访单</view>
- </view>
- <view v-if="imType==2" class="TUI-Extension-slot" @tap="handleStoreOrder()">
- <image
- class="TUI-Extension-icon"
- src="../../../../assets/icon/inquiry.svg"
- ></image>
- <view class="TUI-Extension-slot-name">药品订单</view>
- </view>
- </view>
- </view>
- </template>
- <script lang="ts">
- import {
- defineComponent,
- watchEffect,
- reactive,
- toRefs,
- onMounted,
- computed,
- } from "vue";
- import Face from "./message/face.vue";
- import AudioMessage from "./message/audio.vue";
- import store from "@/store";
- const TUIChatInput = defineComponent({
- components: {
- Face,
- AudioMessage,
- },
- props: {
- text: {
- type: String,
- default: () => {
- return "";
- },
- },
- conversationData: {
- type: Object,
- default: () => {
- return "";
- },
- },
- },
- setup(props) {
- const TUIServer: any = uni.$TUIKit.TUIChatServer;
- const data = reactive({
- imType:computed(() => store.state.timStore.imType),
- orderType:computed(() => store.state.timStore.orderType),
- firstSendMessage: true,
- inputText: "",
- extensionArea: false,
- sendMessageBtn: false,
- displayFlag: "",
- isAudio: false,
- displayServiceEvaluation: false,
- displayCommonWords: false,
- displayOrderList: false,
- conversation: computed(() => store.state.timStore.conversation),
- });
- watchEffect(() => {
- data.inputText = props.text;
- });
- const handleSwitchAudio = () => {
- data.isAudio = !data.isAudio;
- };
- const handleEmoji = () => {
- data.displayFlag = data.displayFlag === "emoji" ? "" : "emoji";
- };
- const handleExtensions = (e: any) => {
- data.displayFlag = data.displayFlag === "extension" ? "" : "extension";
- };
- // 发送消息
- const handleSendTextMessage = (e: any) => {
- if (data.inputText.trimEnd()) {
- uni.$TUIKit.TUIChatServer.sendTextMessage(
- JSON.parse(JSON.stringify(data.inputText))
- );
- }
- data.inputText = " ";
- };
- const handleOrder = (value: any) => {
- uni.navigateTo({
- url: '/pages_order/inquiryOrderDetails?orderId='+store.state.timStore.orderId
- })
- };
- const handleFollow = (value: any) => {
- uni.navigateTo({
- url: '/pages_user/followDetails?followId='+store.state.timStore.followId
- })
- };
- const handleStoreOrder = (value: any) => {
- uni.navigateTo({
- url: '/pages_order/storeOrderDetail?orderId='+store.state.timStore.orderId
- })
- };
- // 处理需要合并的数据
- const handleSend = (emo: any) => {
- data.inputText += emo.name;
- // inputEle.value.focus();
- };
- const handleSendImageMessage = (type: any) => {
- uni.chooseImage({
- sourceType: [type],
- count: 1,
- success: (res) => {
- uni.getImageInfo({
- src: res.tempFilePaths[0],
- success(image) {
- console.error(image);
- setTimeout(function(){
- TUIServer.sendImageMessage(res, image);
- },500);
-
- },
- });
- },
- });
- };
- const handleSendVideoMessage = (type: any) => {
- uni.chooseVideo({
- sourceType: [type],
- // 来源相册或者拍摄
- maxDuration: 60,
- // 设置最长时间60s
- camera: "back",
- // 后置摄像头
- success: (res) => {
- if (res) {
- setTimeout(function(){
- TUIServer.sendVideoMessage(res);
- },500);
-
- }
- },
- });
- };
- const handleCalling = (value: any) => {
- // todo 目前支持单聊
- if (data.conversation.type === "GROUP") {
- uni.showToast({
- title: "群聊暂不支持",
- icon: "none",
- });
- return;
- }
- const { userID } = data.conversation.userProfile;
- // #ifdef APP-PLUS
- if (typeof uni.$TUICallKit === "undefined") {
- console.error(
- "请集成 TUICallKit 插件,使用真机运行并且自定义基座调试,请参考官网文档:https://cloud.tencent.com/document/product/269/83857"
- );
- uni.showToast({
- title: "请集成 TUICallKit 插件哦 ~ ",
- icon: "none",
- duration: 3000,
- });
- } else {
-
- uni.$TUICallKit.call(
- {
- userID: userID,
- callMediaType: value,
- },
- (res) => {
- console.log(JSON.stringify(res));
- }
- );
- }
- // #endif
-
- // #ifdef MP-WEIXIN
- if (typeof uni.$TUICallKit !== "undefined" && uni.$TUICallKit.value !== null) {
- console.log(uni.$TUICallKit)
- uni.$TUICallKit.value.call({
- userID: userID,
- type: value
- })
- } else {
- console.error(
- "请集成 TUICallKit 插件哦~,请参考官网文档:https://cloud.tencent.com/document/product/269/83858"
- );
- uni.showToast({
- title: "请集成 TUICallKit 插件哦 ~ ",
- icon: "none",
- duration: 3000,
- });
- }
- // #endif
-
- // #ifdef H5
- uni.showToast({
- title: "暂不支持",
- icon: "none",
- });
- // #endif
- };
- return {
- ...toRefs(data),
- handleExtensions,
- handleSendImageMessage,
- handleSendTextMessage,
- handleSendVideoMessage,
- handleEmoji,
- handleSend,
- handleSwitchAudio,
- handleCalling,
- handleOrder,
- handleFollow,
- handleStoreOrder
- };
- },
- });
- export default TUIChatInput;
- </script>
- <style lang="scss" scoped>
- .TUI-message-input-container {
- background-color: #f1f1f1;
- padding-bottom: 20rpx;
- }
- .TUI-message-input {
- display: flex;
- padding: 16rpx;
- background-color: #f1f1f1;
- width: 100vw;
- }
- .TUI-commom-function {
- display: flex;
- flex-wrap: nowrap;
- width: 750rpx;
- height: 106rpx;
- background-color: #f1f1f1;
- align-items: center;
- }
- .TUI-commom-function-item {
- display: flex;
- width: 136rpx;
- justify-content: center;
- align-items: center;
- font-size: 24rpx;
- color: #ffffff;
- height: 48rpx;
- margin-left: 16rpx;
- border-radius: 24rpx;
- background-color: #00c8dc;
- }
- .TUI-commom-function-item:first-child {
- margin-left: 48rpx;
- }
- .TUI-message-input-functions {
- display: flex;
- }
- .TUI-message-input-main {
- background-color: #fff;
- flex: 1;
- min-height: 66rpx;
- margin: 0 10rpx;
- padding: 0 5rpx;
- border-radius: 5rpx;
- display: flex;
- align-items: center;
- }
- .TUI-message-input-area {
- width: 100%;
- height: 100%;
- }
- .TUI-icon {
- width: 56rpx;
- height: 56rpx;
- margin: 0 16rpx;
- }
- .TUI-Extensions {
- display: flex;
- width: 100%;
- overflow-y: scroll;
- flex-wrap: wrap;
- width: 100vw;
- height: 400rpx;
- margin-left: 14rpx;
- margin-right: 14rpx;
- }
- .TUI-Extension-slot {
- width: 128rpx;
- height: 170rpx;
- margin-left: 26rpx;
- margin-right: 26rpx;
- margin-top: 24rpx;
- }
- .TUI-Extension-icon {
- width: 128rpx;
- height: 128rpx;
- }
- .TUI-sendMessage-btn {
- display: flex;
- align-items: center;
- margin: 0 10rpx;
- }
- .TUI-Emoji-area {
- width: 100vw;
- height: 450rpx;
- }
- .TUI-Extension-slot-name {
- line-height: 34rpx;
- font-size: 24rpx;
- color: #333333;
- letter-spacing: 0;
- text-align: center;
- }
- .record-modal {
- height: 300rpx;
- width: 60vw;
- background-color: #000;
- opacity: 0.8;
- position: fixed;
- top: 670rpx;
- z-index: 9999;
- left: 20vw;
- border-radius: 24rpx;
- display: flex;
- flex-direction: column;
- }
- .record-modal .wrapper {
- display: flex;
- height: 200rpx;
- box-sizing: border-box;
- padding: 10vw;
- }
- .record-modal .wrapper .modal-loading {
- opacity: 1;
- width: 40rpx;
- height: 16rpx;
- border-radius: 4rpx;
- background-color: #006fff;
- animation: loading 2s cubic-bezier(0.17, 0.37, 0.43, 0.67) infinite;
- }
- .modal-title {
- text-align: center;
- color: #fff;
- }
- @keyframes loading {
- 0% {
- transform: translate(0, 0);
- }
- 50% {
- transform: translate(30vw, 0);
- background-color: #f5634a;
- width: 40px;
- }
- 100% {
- transform: translate(0, 0);
- }
- }
- </style>
|