From be6f1aee23c7d23bfee2db90d6b4f88280ec24c8 Mon Sep 17 00:00:00 2001 From: Wayne Date: Thu, 15 Aug 2024 14:22:34 +0800 Subject: [PATCH] 0001246 --- src/api/card.js | 7 ++++- src/api/index.js | 1 - src/views/Send/index.vue | 55 ++++++++++++++++++++++++++++++++++++---- 3 files changed, 56 insertions(+), 7 deletions(-) diff --git a/src/api/card.js b/src/api/card.js index 8aadade..c8046e4 100644 --- a/src/api/card.js +++ b/src/api/card.js @@ -2,4 +2,9 @@ import ajax from "./ajax"; export const getCardData = async () => ajax(`/Card/getCardData`); - \ No newline at end of file + +export const updateRemark = async (params) => + ajax(`/card/updateRemark`, params, "POST"); + +export const updateIsSend = async (params) => + ajax(`/card/updateIsSend`, params, "POST"); diff --git a/src/api/index.js b/src/api/index.js index 19a1344..4ddad48 100644 --- a/src/api/index.js +++ b/src/api/index.js @@ -100,4 +100,3 @@ export const getUserCateList = async () => export const updateUserCate = async (params) => ajax(`/UserCate/updateUserCate`, params, "POST"); - diff --git a/src/views/Send/index.vue b/src/views/Send/index.vue index 7b26fbc..98e81e1 100644 --- a/src/views/Send/index.vue +++ b/src/views/Send/index.vue @@ -7,6 +7,8 @@ import { onMounted, ref, computed, watch } from 'vue' import { getCard, getCusCard, getVipCard, updateSendCount, getFlexcard } from '@/api' +import { updateRemark, updateIsSend } from '@/api/card.js' + import { cardFactory } from '@/utils/card' import { genCard1 } from '@/utils/card2' @@ -29,7 +31,10 @@ const state = ref({ flexContent: {}, }) -const activeName = ref('0'); +const activeName = ref('0') + +const is_send = ref(0) +const remark = ref('') let flexRef = ref(null) @@ -63,6 +68,10 @@ onMounted(async () => { watch(() => activeName.value, function (newVal, oldVal) { if (newVal !== oldVal) { showFlex(newVal) + if(parseInt(newVal) < 2){ + is_send.value = 0 + remark.value = '' + } } }, { immediate: true }) @@ -93,7 +102,7 @@ async function showFlex(id) { let data = res2.data; data.ad_image = imageUrl.value + data.ad_image; state.value.flexContent = genAdCard(JSON.parse(card), data); - }else{ + } else { state.value.flexContent = JSON.parse(card) } } @@ -133,6 +142,9 @@ async function showFlex(id) { flexRef.value.innerHTML = '' flex2html("flex", state.value.flexContent) } + is_send.value = res.is_send + remark.value = res.remark + // if( card2Res.code === 200){ // if(card2Res.data.cus_card){ // state.flexContent = genCard1(JSON.parse(card2Res.data.cus_card)) @@ -147,14 +159,29 @@ async function showFlex(id) { } } +const handleOnChange = async () => { + // 更新 + let res = await updateIsSend({is_send:is_send.value,id:activeName.value}) + if(res.code !== 200){ + showToast('更新失敗') + } +} + +const handleOnBlur = async () => { + // 更新 + let res = await updateRemark({remark:remark.value,id:activeName.value}) + if(res.code !== 200){ + showToast('更新失敗') + } +} + const sendEcard = async () => { if (!liff.isLoggedIn()) { liff.login({ redirectUri: window.location.href }) } - + let content = JSON.parse(JSON.stringify(state.value.flexContent)) - // console.log('content', JSON.stringify(state.value.flexContent)) let res if (activeName.value === '0') { @@ -164,7 +191,15 @@ const sendEcard = async () => { 'text': '名片的文字、數字,都可連結,請多多指教!' }]) } else { - res = await liff.shareTargetPicker([content]) + if(is_send.value === 1){ + res = await liff.shareTargetPicker([content, + { + 'type': 'text', + 'text': remark.value + }]) + }else{ + res = await liff.shareTargetPicker([content]) + } } if (res.status === 'success') { @@ -266,6 +301,16 @@ const changeTpl = async (val) => { +
+ + + + + + +
分享好友