message-custom.vue 7.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314
  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">
  6. {{ titleImpl(isCustom.redEnvelopeExpireTime) }}
  7. </div>
  8. <div class="time">
  9. {{ timeImpl(isCustom.redEnvelopeExpireTime) }}
  10. <!-- {{
  11. isCustom.redEnvelopeExpireTime
  12. ? $moment(isCustom.redEnvelopeExpireTime).format("YYYY-MM-DD") +
  13. "过期"
  14. : ""
  15. }} -->
  16. </div>
  17. </div>
  18. </template>
  19. <template v-else-if="isCustom.businessID === 'red_envelope_message_gq'">
  20. <div class="evaluate">
  21. <div class="evaluatered">通用红包</div>
  22. <div class="time">已领取</div>
  23. </div>
  24. </template>
  25. <template v-else-if="isCustom.businessID === 'order'">
  26. <div class="evaluate">
  27. <div @click="product(isCustom)">
  28. <div class="left">
  29. <img
  30. :src="isCustom.imageUrl"
  31. style="width: 80px; height: 80px; border-radius: 10px"
  32. />
  33. <div class="right">
  34. <div class="label">
  35. {{ isCustom.title }}
  36. </div>
  37. <div class="label">描述:{{ isCustom.spuDesc }}</div>
  38. <div style="font-weight: 400; font-size: 28rpx">
  39. 价格:{{ isCustom.price.toFixed(2) }}元/{{ isCustom.unit }}
  40. </div>
  41. </div>
  42. </div>
  43. </div>
  44. </div>
  45. </template>
  46. <template v-else>
  47. <span v-html="content.custom" />
  48. </template>
  49. </div>
  50. </template>
  51. <script lang="ts" setup>
  52. import { watchEffect, ref } from "../../../../adapter-vue";
  53. import { Toast, TOAST_TYPE } from "../../../common/Toast/index";
  54. import {
  55. TUITranslateService,
  56. IMessageModel,
  57. TUIStore,
  58. } from "@tencentcloud/chat-uikit-engine";
  59. import { isUrl, JSONToObject } from "../../../../utils/index";
  60. import { CHAT_MSG_CUSTOM_TYPE } from "../../../../constant";
  61. import { ICustomMessagePayload } from "../../../../interface";
  62. import Icon from "../../../common/Icon.vue";
  63. import * as mesApi from "@/api/message/index";
  64. import moment from "moment";
  65. import TUIChatConfig from "../../config";
  66. const featureConfig = TUIChatConfig.getFeatureConfig();
  67. interface Props {
  68. messageItem: IMessageModel;
  69. content: any;
  70. }
  71. const props = withDefaults(defineProps<Props>(), {
  72. messageItem: undefined,
  73. content: undefined,
  74. });
  75. const custom = ref();
  76. const message = ref<IMessageModel>();
  77. const extension = ref();
  78. const isCustom = ref<ICustomMessagePayload>({
  79. businessID: "",
  80. });
  81. watchEffect(() => {
  82. custom.value = props.content;
  83. message.value = props.messageItem;
  84. const { payload } = props.messageItem;
  85. isCustom.value = payload.data || "";
  86. isCustom.value = JSONToObject(payload.data);
  87. if (payload.data === CHAT_MSG_CUSTOM_TYPE.SERVICE) {
  88. extension.value = JSONToObject(payload.extension);
  89. }
  90. });
  91. const openLink = (url: any) => {
  92. window.open(url);
  93. };
  94. function titleImpl(time) {
  95. if (time) {
  96. let expireTime = moment(time).format("YYYY-MM-DD");
  97. const now = moment();
  98. if (expireTime && now.isAfter(expireTime)) {
  99. return "已过期";
  100. } else if (expireTime) {
  101. return "通用红包";
  102. }
  103. return "";
  104. } else {
  105. return "";
  106. }
  107. }
  108. function timeImpl(time) {
  109. if (time) {
  110. let expireTime = moment(time).format("YYYY-MM-DD");
  111. const now = moment();
  112. console.log("oldTime", expireTime);
  113. if (expireTime && now.isAfter(expireTime)) {
  114. return expireTime + "过期不可领取";
  115. } else if (expireTime) {
  116. return expireTime + "过期";
  117. }
  118. return "";
  119. } else {
  120. return "";
  121. }
  122. }
  123. const lqhb = async (record) => {
  124. console.log("lqhb 函数开始执行");
  125. console.log("record.recordId:", record.recordId);
  126. // 检查过期时间
  127. const expireTime = record.redEnvelopeExpireTime
  128. ? moment(record.redEnvelopeExpireTime).format("YYYY-MM-DD")
  129. : null;
  130. const now = moment();
  131. const isOk = expireTime && !now.isAfter(expireTime);
  132. if (isOk) {
  133. try {
  134. console.log("开始请求接口");
  135. let res = await mesApi.default.receiveLq(record.recordId);
  136. console.log("接口响应:", res);
  137. if (res.code == 200) {
  138. if (res.data) {
  139. let text = props.messageItem.payload.data;
  140. let msg = JSON.parse(text);
  141. msg.businessID = "red_envelope_message_gq";
  142. props.messageItem.payload.data = JSON.stringify(msg);
  143. if (!message.value) return;
  144. const messageModel = TUIStore.getMessageModel(message.value.ID);
  145. messageModel.modifyMessage(props.messageItem.payload.data);
  146. Toast({
  147. message: TUITranslateService.t("红包领取成功,请在钱包余额查看!"),
  148. type: TOAST_TYPE.SUCCESS,
  149. });
  150. }
  151. } else {
  152. Toast({
  153. message: TUITranslateService.t("红包领取失败,请联系客服反馈!"),
  154. type: TOAST_TYPE.ERROR,
  155. });
  156. }
  157. } catch (error) {
  158. console.error("接口请求出错:", error);
  159. }
  160. }
  161. console.log("lqhb 函数执行结束");
  162. };
  163. const product = (record) => {
  164. if (record.saleType == 2) {
  165. webUni.webView.redirectTo({
  166. url: `/subpages/home/carpoolGoods/product-details?id=` + record.id,
  167. });
  168. } else {
  169. webUni.webView.redirectTo({
  170. url: `/subpages/home/supply-hall/product-details?id=` + record.id,
  171. });
  172. }
  173. };
  174. </script>
  175. <style lang="scss" scoped>
  176. @import "../../../../assets/styles/common";
  177. .evaluatered {
  178. position: relative;
  179. left: 40px;
  180. font-size: 20px;
  181. color: #fff;
  182. }
  183. .time {
  184. letter-spacing: 0.1em;
  185. position: relative;
  186. top: 30px;
  187. font-weight: 500;
  188. font-size: 24rpx;
  189. color: #ffffff;
  190. text-align: left;
  191. font-style: normal;
  192. }
  193. .name {
  194. font-weight: bold;
  195. font-size: 16px;
  196. margin-right: 10px;
  197. }
  198. .value {
  199. font-size: 16px;
  200. margin-right: 10px;
  201. }
  202. a {
  203. color: #679ce1;
  204. }
  205. .custom {
  206. font-size: 14px;
  207. h1 {
  208. font-size: 14px;
  209. color: #000;
  210. }
  211. h1,
  212. a,
  213. p {
  214. font-size: 14px;
  215. }
  216. .evaluate {
  217. min-width: 240px;
  218. width: 240px;
  219. .left {
  220. display: flex;
  221. flex-direction: row;
  222. align-items: center;
  223. justify-content: center;
  224. background: #7a7a7d29;
  225. border-radius: 15px;
  226. padding: 15px;
  227. }
  228. .right {
  229. display: flex;
  230. flex-direction: column;
  231. align-items: flex-start;
  232. height: 75px;
  233. width: 70%;
  234. justify-content: center;
  235. line-height: 25px;
  236. margin-left: 10px;
  237. .label {
  238. font-weight: bold;
  239. font-size: 14px;
  240. width: 100px;
  241. height: auto;
  242. word-wrap: break-word;
  243. overflow: hidden;
  244. text-overflow: ellipsis;
  245. white-space: nowrap;
  246. }
  247. }
  248. ul {
  249. display: flex;
  250. padding: 10px 0;
  251. }
  252. &-list {
  253. display: flex;
  254. flex-direction: row;
  255. &-item {
  256. padding: 0 2px;
  257. }
  258. }
  259. }
  260. .order {
  261. display: flex;
  262. main {
  263. padding-left: 5px;
  264. p {
  265. font-family: PingFangSC-Regular;
  266. width: 145px;
  267. line-height: 17px;
  268. font-size: 14px;
  269. color: #999;
  270. letter-spacing: 0;
  271. margin-bottom: 6px;
  272. word-break: break-word;
  273. }
  274. span {
  275. font-family: PingFangSC-Regular;
  276. line-height: 25px;
  277. color: #ff7201;
  278. }
  279. }
  280. img {
  281. width: 67px;
  282. height: 67px;
  283. }
  284. }
  285. }
  286. </style>