| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- <script>
- import { getStatusBar } from '@/utils/index';
- export default {
- onLaunch: function() {
- console.log('App Launch')
- getStatusBar();
- },
- onShow: function() {
- console.log('App Show')
- },
- onHide: function() {
- console.log('App Hide')
- },
- getPhoneNumber: function({ params, success, fail }) {
- console.log("获取手机号码",params,success,fail)
- const { iv, encryptedData } = params;
- // ...
- // 开发者服务端解密 encryptedData,得到手机号
- // ...
- const result = {
- phoneNumber: '13580006666',
- }
- // 回调前端模板
- success(result)
- },
- }
- </script>
- <style>
- .skeleton-line{
- background: linear-gradient(90deg, #f1f2f4 25%, #e6e6e6 37%, #f1f2f4 50%);
- background-size: 400% 100%;
- border-radius: 3px;
- height: 30upx;
- width: 100%;
- margin-top: 20upx;
- }
- .skeleton-line.short{
- width: 60%;
- }
- .skeleton-line.max{
- height: 80upx;
- }
- .animate {
- animation: skeleton 1.8s ease infinite
- }
- @keyframes skeleton {
- 0% {
- background-position: 100% 50%
- }
- 100% {
- background-position: 0 50%
- }
- }
- </style>
|