uni-auth 1.1.5 → 1.1.7

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "uni-auth",
3
- "version": "1.1.5",
3
+ "version": "1.1.7",
4
4
  "main": "src/index.js",
5
5
  "type": "module",
6
6
  "scripts": {
@@ -1,14 +1,17 @@
1
1
  <template>
2
2
  <!-- #ifdef APP-PLUS -->
3
+ <!-- #ifndef APP-IOS -->
3
4
  <view class="auth-pop" :style="{ marginTop: safeH }" v-if="isPermissionAlertShow">
4
5
  <view class="title">{{ type }}权限使用说明</view>
5
6
  <view class="msg">{{ contentEnum['android'][type] }}</view>
6
7
  </view>
7
8
  <!-- #endif -->
9
+ <!-- #endif -->
8
10
  </template>
9
11
 
10
12
  <script setup>
11
13
  // #ifdef APP-PLUS
14
+ // #ifndef APP-IOS
12
15
  import { onMounted, onUnmounted, computed, ref } from 'vue'
13
16
  import { contentEnum, safeHeight } from '../common/index.js'
14
17
  const type = ref('')
@@ -40,6 +43,7 @@ onUnmounted(() => {
40
43
  permissionListener.value.stop()
41
44
  })
42
45
  // #endif
46
+ // #endif
43
47
  </script>
44
48
 
45
49
  <style scoped>