Commit a371c696 authored by 何毅恒's avatar 何毅恒

c

parent 3dca1b68
......@@ -62,13 +62,15 @@ const downLoad = () => {
};
// jssdk 微信分享
const wxJssdk = () => {
let obj = {
title: informationDetail.value.title,
link: "https://testhelp.gelifood.com/index.html#/articleDetails?id=" + id,
desc: "",
imgUrl: "../../assets/img/helpImg.png",
};
globalProperties.$wx.wxShare(obj);
if (globalProperties.$wx.isWeixin()) {
let obj = {
title: informationDetail.value.title,
link: "https://testhelp.gelifood.com/index.html#/articleDetails?id=" + id,
desc: "",
imgUrl: "../../assets/img/helpImg.png",
};
globalProperties.$wx.wxShare(obj);
}
};
</script>
<style scoped lang='scss'>
......
......@@ -123,7 +123,7 @@ let informationListParam = ref({
category_id_1: "", // 1级分类id
category_id_2: "", // 2级分类id
title: "", //
is_show:1
is_show: 1,
});
let informationList = ref([]);
const getInformationList = async () => {
......@@ -143,13 +143,15 @@ const selectSecondClassifyItem = (row) => {
// jssdk 微信分享
const wxJssdk = () => {
let obj = {
title: "帮助中心",
link: "https://testhelp.gelifood.com/index.html",
desc: "",
imgUrl: "../../assets/img/helpImg.png",
};
globalProperties.$wx.wxShare(obj);
if (globalProperties.$wx.isWeixin()) {
let obj = {
title: "帮助中心",
link: "https://testhelp.gelifood.com/index.html",
desc: "",
imgUrl: "../../assets/img/helpImg.png",
};
globalProperties.$wx.wxShare(obj);
}
};
const value = ref("");
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment