12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- <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>
|