index.js 283 B

1234567891011121314151617181920
  1. import { getSharePath } from "../../../../core/utils/index";
  2. Page({
  3. data: {
  4. src: ''
  5. },
  6. async onLoad(options) {
  7. this.setData({
  8. src: options.src
  9. });
  10. },
  11. onShareAppMessage() {
  12. return {
  13. title: '请选择',
  14. path: getSharePath()
  15. };
  16. }
  17. });