message-custom.vue 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232
  1. <template>
  2. <div class="custom">
  3. <template v-if="isCustom.businessID === 'red_envelope_message'">
  4. <div class="evaluate" @click="lqhb(isCustom)">
  5. <div class="evaluatered">通用红包</div>
  6. <div class="time">
  7. {{
  8. isCustom.redEnvelopeExpireTime
  9. ? $moment(isCustom.redEnvelopeExpireTime).format("YYYY-MM-DD") + "过期"
  10. : ""
  11. }}
  12. </div>
  13. </div>
  14. </template>
  15. <template v-else-if="isCustom.businessID === 'order'">
  16. <div class="evaluate">
  17. <div @click="product(isCustom)">
  18. <div class="left">
  19. <img
  20. :src="isCustom.imageUrl"
  21. style="width: 80px; height: 80px; border-radius: 10px"
  22. />
  23. <div class="right">
  24. <div class="label">
  25. {{ isCustom.title }}
  26. </div>
  27. <div class="label">描述:{{ isCustom.spuDesc }}</div>
  28. <div style="font-weight: 400; font-size: 28rpx">
  29. 价格:{{ isCustom.price.toFixed(2) }}元/{{ isCustom.unit }}
  30. </div>
  31. </div>
  32. </div>
  33. </div>
  34. </div>
  35. </template>
  36. <template v-else>
  37. <span v-html="content.custom" />
  38. </template>
  39. </div>
  40. </template>
  41. <script lang="ts" setup>
  42. import { watchEffect, ref } from "../../../../adapter-vue";
  43. import {
  44. TUITranslateService,
  45. IMessageModel,
  46. TUIStore,
  47. } from "@tencentcloud/chat-uikit-engine";
  48. import { isUrl, JSONToObject } from "../../../../utils/index";
  49. import { CHAT_MSG_CUSTOM_TYPE } from "../../../../constant";
  50. import { ICustomMessagePayload } from "../../../../interface";
  51. import Icon from "../../../common/Icon.vue";
  52. import star from "../../../../assets/icon/star-light.png";
  53. import * as mesApi from "@/api/message/index";
  54. import TUIChatConfig from "../../config";
  55. const featureConfig = TUIChatConfig.getFeatureConfig();
  56. interface Props {
  57. messageItem: IMessageModel;
  58. content: any;
  59. }
  60. const props = withDefaults(defineProps<Props>(), {
  61. messageItem: undefined,
  62. content: undefined,
  63. });
  64. const custom = ref();
  65. const message = ref<IMessageModel>();
  66. const extension = ref();
  67. const isCustom = ref<ICustomMessagePayload>({
  68. businessID: "",
  69. });
  70. watchEffect(() => {
  71. custom.value = props.content;
  72. message.value = props.messageItem;
  73. const { payload } = props.messageItem;
  74. isCustom.value = payload.data || "";
  75. isCustom.value = JSONToObject(payload.data);
  76. if (payload.data === CHAT_MSG_CUSTOM_TYPE.SERVICE) {
  77. extension.value = JSONToObject(payload.extension);
  78. }
  79. });
  80. const openLink = (url: any) => {
  81. window.open(url);
  82. };
  83. const lqhb = (record) => {
  84. console.log(record);
  85. let aa = record;
  86. aa.businessID = "red_envelope_message_gq";
  87. if (!message.value) return;
  88. const messageModel = TUIStore.getMessageModel(message.value.ID);
  89. messageModel.modifyMessage(aa);
  90. };
  91. const product = (record) => {
  92. if (record.saleType == 2) {
  93. webUni.webView.redirectTo({
  94. url: `/subpages/home/carpoolGoods/product-details?id=` + record.id,
  95. });
  96. } else {
  97. webUni.webView.redirectTo({
  98. url: `/subpages/home/supply-hall/product-details?id=` + record.id,
  99. });
  100. }
  101. };
  102. </script>
  103. <style lang="scss" scoped>
  104. @import "../../../../assets/styles/common";
  105. .evaluatered {
  106. position: relative;
  107. left: 40px;
  108. font-size: 20px;
  109. color: #fff;
  110. }
  111. .time {
  112. letter-spacing: 0.1em;
  113. position: relative;
  114. top: 30px;
  115. font-weight: 500;
  116. font-size: 24rpx;
  117. color: #ffffff;
  118. text-align: left;
  119. font-style: normal;
  120. }
  121. .name {
  122. font-weight: bold;
  123. font-size: 16px;
  124. margin-right: 10px;
  125. }
  126. .value {
  127. font-size: 16px;
  128. margin-right: 10px;
  129. }
  130. a {
  131. color: #679ce1;
  132. }
  133. .custom {
  134. font-size: 14px;
  135. h1 {
  136. font-size: 14px;
  137. color: #000;
  138. }
  139. h1,
  140. a,
  141. p {
  142. font-size: 14px;
  143. }
  144. .evaluate {
  145. min-width: 240px;
  146. width: 240px;
  147. .left {
  148. display: flex;
  149. flex-direction: row;
  150. align-items: center;
  151. justify-content: center;
  152. background: #7a7a7d29;
  153. border-radius: 15px;
  154. padding: 15px;
  155. }
  156. .right {
  157. display: flex;
  158. flex-direction: column;
  159. align-items: flex-start;
  160. height: 75px;
  161. width: 70%;
  162. justify-content: center;
  163. line-height: 25px;
  164. margin-left: 10px;
  165. .label {
  166. font-weight: bold;
  167. font-size: 14px;
  168. width: 100px;
  169. height: auto;
  170. word-wrap: break-word;
  171. overflow: hidden;
  172. text-overflow: ellipsis;
  173. white-space: nowrap;
  174. }
  175. }
  176. ul {
  177. display: flex;
  178. padding: 10px 0;
  179. }
  180. &-list {
  181. display: flex;
  182. flex-direction: row;
  183. &-item {
  184. padding: 0 2px;
  185. }
  186. }
  187. }
  188. .order {
  189. display: flex;
  190. main {
  191. padding-left: 5px;
  192. p {
  193. font-family: PingFangSC-Regular;
  194. width: 145px;
  195. line-height: 17px;
  196. font-size: 14px;
  197. color: #999;
  198. letter-spacing: 0;
  199. margin-bottom: 6px;
  200. word-break: break-word;
  201. }
  202. span {
  203. font-family: PingFangSC-Regular;
  204. line-height: 25px;
  205. color: #ff7201;
  206. }
  207. }
  208. img {
  209. width: 67px;
  210. height: 67px;
  211. }
  212. }
  213. }
  214. </style>