Files
app-govern/common/js/share.js

20 lines
363 B
JavaScript
Raw Normal View History

2023-01-11 16:33:13 +08:00
export default {
2023-04-04 08:47:19 +08:00
data() {
return {};
2023-01-11 16:33:13 +08:00
},
// #ifdef MP
2023-04-04 08:47:19 +08:00
onShareAppMessage(res) {
2023-01-11 16:33:13 +08:00
return {
2023-04-04 08:47:19 +08:00
title: '荣创科技',
path: '/pages/index/index',
2023-01-11 16:33:13 +08:00
};
},
2023-04-04 08:47:19 +08:00
onShareTimeline() {
2023-01-11 16:33:13 +08:00
return {
2023-04-04 08:47:19 +08:00
title: '荣创科技',
path: '/pages/index/index',
2023-01-11 16:33:13 +08:00
};
},
// #endif
};