123456789101112131415161718192021222324252627282930313233343536373839 |
- <script setup>
- import { onLaunch, onShow, onError } from '@dcloudio/uni-app';
- import { ShoproInit } from './sheep';
- onLaunch(() => {
-
- uni.hideTabBar();
-
- ShoproInit();
- });
- onError((err) => {
- console.log('AppOnError:', err);
- });
- onShow((options) => {
-
-
- const args = plus.runtime.arguments;
- if (args) {
- }
-
- uni.getClipboardData({
- success: (res) => { },
- });
-
-
-
- console.log(options,'options');
-
- });
- </script>
- <style lang="scss">
- @import '@/sheep/scss/index.scss';
- </style>
|