Toggle navigation
Toggle navigation
This project
Loading...
Sign in
Hooke
/
data-table
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Graphs
Network
Create a new issue
Commits
Issue Boards
Authored by
hookehuyr
2023-03-14 14:42:52 +0800
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
fe0f7d0fb23c91b73e11604bac80d266ec7e331f
fe0f7d0f
1 parent
d716a8be
fix
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
src/views/index.vue
src/views/index.vue
View file @
fe0f7d0
<!--
* @Date: 2022-07-18 10:22:22
* @LastEditors: hookehuyr hookehuyr@gmail.com
* @LastEditTime: 2023-03-14 14:
18:5
7
* @LastEditTime: 2023-03-14 14:
41:1
7
* @FilePath: /data-table/src/views/index.vue
* @Description: 首页
-->
...
...
@@ -290,9 +290,9 @@ onMounted(async () => {
wx.ready(() => {
/**
* 微信分享卡片标题模式
*
0=使用表单名称作为分享标题,1
=自定义分享标题
*
form_name=使用表单名称作为分享标题,customize
=自定义分享标题
*/
const title =
!formSetting.value.wxzq_share_title_mode
? form_name.value : formSetting.value.wxzq_share_custom_title;
const title =
formSetting.value.wxzq_share_title_mode === 'form_name'
? form_name.value : formSetting.value.wxzq_share_custom_title;
// 自定义分享内容
sharePage({ title, desc: formSetting.value.wxzq_share_slogan, imgUrl: formSetting.value.wxzq_share_logo });
});
...
...
Please
register
or
login
to post a comment