|
@@ -27,7 +27,25 @@
|
|
|
|
|
|
|
|
<script setup lang="ts" name="TestIndex">
|
|
<script setup lang="ts" name="TestIndex">
|
|
|
import { ref } from 'vue'
|
|
import { ref } from 'vue'
|
|
|
|
|
+import { onShareAppMessage, onShareTimeline } from '@dcloudio/uni-app'
|
|
|
import PagesAutoImport from './components/pages-auto-import.vue'
|
|
import PagesAutoImport from './components/pages-auto-import.vue'
|
|
|
|
|
+/** 激活“分享给好友” */
|
|
|
|
|
+onShareAppMessage((options: Page.ShareAppMessageOption): Page.CustomShareContent => {
|
|
|
|
|
+ console.log('options:', options)
|
|
|
|
|
+ return {
|
|
|
|
|
+ title: '自定义分享标题',
|
|
|
|
|
+ path: '/pages/index/index?id=xxx',
|
|
|
|
|
+ imageUrl:
|
|
|
|
|
+ 'https://cip-shopping-page-0eysug01066a9e-1302818703.tcloudbaseapp.com/pretty-girl.png',
|
|
|
|
|
+ }
|
|
|
|
|
+})
|
|
|
|
|
+/** 激活“分享到朋友圈”, 注意:需要先激活“分享给好友” */
|
|
|
|
|
+onShareTimeline((): Page.ShareTimelineContent => {
|
|
|
|
|
+ return {
|
|
|
|
|
+ title: '自定义分享标题',
|
|
|
|
|
+ query: 'a=1&b=2',
|
|
|
|
|
+ }
|
|
|
|
|
+})
|
|
|
|
|
|
|
|
const list = ref([
|
|
const list = ref([
|
|
|
{
|
|
{
|