1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 |
- <script setup>
- import {
- onLaunch,
- onShow,
- onError,
- onHide
- } from '@dcloudio/uni-app';
- import {
- ShoproInit
- } from './sheep';
- import {
- autoSign,
- cancelAutoSign,
- resetSignStatusIfNeeded
- } from './sheep/hooks/useModal';
-
- onShow((options) => {
- autoSign()
-
-
- const args = plus.runtime.arguments;
- if (args) {}
-
- uni.getClipboardData({
- success: (res) => {},
- });
-
-
-
-
-
- });
- onHide(() => {
-
- cancelAutoSign()
- });
- onLaunch(() => {
-
- uni.hideTabBar();
-
- ShoproInit();
-
-
- resetSignStatusIfNeeded();
- });
- onError((err) => {
- console.log('AppOnError:', err);
- });
- </script>
- <style lang="scss">
- .uni-picker-container{
- z-index:999999;
- }
- .uni-picker-container .uni-picker-content{
- height:800rpx;
- }
- @import '@/sheep/scss/index.scss';
- </style>
|