message-custom.vue 7.0 KB

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