AndroidUnlockAuth.vue 7.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282
  1. <template>
  2. <u-popup v-model="showDialog" mode="bottom" border-radius="28" @close="close">
  3. <view class="dialog-content">
  4. <view class="title">{{ $t('开启感应解锁') }}</view>
  5. <view class="tips">
  6. 为保证 感应解锁 的正常使用,请依次开以下权限,开启后可以显著提高解锁成功率,且不会明显增加手机电量消耗
  7. </view>
  8. <view class="authorization-wrap">
  9. <view class="corner-mark">{{ $t('授权引导') }}</view>
  10. <view class="step-item-container">
  11. <view v-for="(item, idx) in authStepList" :key="idx" @tap="enablePermissions(item)" class="step-item">
  12. <view :class="['icon', `icon_${item.type}`]" />
  13. <view class="desc-wrap">
  14. <view class="title-row">
  15. <view class="title">{{ item.title }}</view>
  16. <view :class="['turn-on-switch', item.state && 'is-open']">
  17. {{ item.state ? $t('已开启') : $t('未开启') }}
  18. </view>
  19. </view>
  20. <view class="desc">{{ item.desc }}</view>
  21. </view>
  22. </view>
  23. </view>
  24. </view>
  25. <view class="btn" @tap="linkTo">{{ $t('我已开启') }}</view>
  26. </view>
  27. </u-popup>
  28. </template>
  29. <script>
  30. var app = getApp();
  31. var common = require('@/common/common.js');
  32. import permision from "@/js_sdk/wa-permission/permission.js"
  33. // import mixin from '@/mixin/index.js'; // 引入 mixin
  34. export default {
  35. // mixins:[mixin],
  36. props: {
  37. value: {
  38. type: Boolean,
  39. default: false
  40. }
  41. },
  42. created(){
  43. // bluetooth.initBluetooth()
  44. // this.bluetoothClose()
  45. },
  46. data() {
  47. return {
  48. showDialog: this.value,
  49. permisionCheckObj: {},
  50. authStepList:[],
  51. isOpenAllPermission:false,//是否打开所有需要权限
  52. }
  53. },
  54. // computed: {
  55. // authStepList() {
  56. // const lang = v => this.$t(v)
  57. // return [
  58. // { title: ('位置权限'), type: 'location', desc: '打开手机定位,并运行APP始终使用' },
  59. // { title: ('电池优化'), type: 'battery', desc: '打开电池优化设置, 将弗兰克APP加入保护名单' },
  60. // // { title: ('后台运行'), type: 'backstage', desc: '打开后台运行权限 清选择手动控制' },
  61. // // { title: ('打开应用锁'), type: 'appLock', desc: '打开应用权限锁' }
  62. // ]
  63. // }
  64. // },
  65. watch: {
  66. value(newValue) {
  67. this.showDialog = newValue
  68. if (newValue) {
  69. this._initCheckdPermission()
  70. }
  71. }
  72. },
  73. methods: {
  74. async _initCheckdPermission() {
  75. this.authStepList=app.globalData.permissionArr
  76. },
  77. // vue的method里编写如下代码
  78. async requestAndroidPermission(permisionID) {
  79. const AUTHORIZ = 1 // 已授权
  80. const result = await permision.requestAndroidPermission(permisionID)
  81. console.log(123456, result)
  82. return result == AUTHORIZ
  83. // var strStatus
  84. // if (result == 1) {
  85. // strStatus = "已获得授权"
  86. // } else if (result == 0) {
  87. // strStatus = "未获得授权"
  88. // } else {
  89. // strStatus = "被永久拒绝权限"
  90. // }
  91. // permision.gotoAppPermissionSetting()
  92. // uni.showModal({
  93. // content: permisionID + strStatus,
  94. // showCancel: false
  95. // });
  96. },
  97. enablePermissions({ type }) {
  98. console.log(type,'type');
  99. // if (!this.permisionCheckObj[type]) {
  100. // permision.gotoAppPermissionSetting()
  101. // }
  102. },
  103. linkTo() {
  104. // let isOpenAllPermission=false
  105. // app.globalData.permissionArr.map(item=>{
  106. // if(!item.state) isOpenAllPermission=true
  107. // })
  108. // if (!isOpenAllPermission) {
  109. // this.close()
  110. // uni.navigateTo({ url: '/pages/bluetoothUnlock/bluetoothPair' })
  111. // } else {
  112. // permision.gotoAppPermissionSetting()
  113. // }
  114. uni.navigateTo({ url: '/pages/bluetoothUnlock/bluetoothPair' })
  115. },
  116. close() {
  117. this.$emit('input', false)
  118. },
  119. }
  120. }
  121. </script>
  122. <style lang="scss" scoped>
  123. .dialog-content {
  124. width: 100%;
  125. height: 100%;
  126. background: #F1F3F4;
  127. padding: 40rpx 32rpx;
  128. .title {
  129. font-family: PingFangSC, PingFang SC;
  130. font-weight: 600;
  131. font-size: 40rpx;
  132. color: #060809;
  133. }
  134. .tips {
  135. font-family: PingFangSC, PingFang SC;
  136. font-weight: 400;
  137. font-size: 24rpx;
  138. color: #828DA2;
  139. line-height: 40rpx;
  140. margin: 32rpx 0 40rpx;
  141. }
  142. .authorization-wrap {
  143. background: #fff;
  144. width: 100%;
  145. border-radius: 40rpx;
  146. position: relative;
  147. .corner-mark {
  148. width: 224rpx;
  149. height: 100rpx;
  150. background: #0A59F7;
  151. border-radius: 40rpx 0 0 0;
  152. display: flex;
  153. color: #fff;
  154. line-height: 86rpx;
  155. text-align: center;
  156. justify-content: flex-end;
  157. &::after {
  158. content: "";
  159. width: 86rpx;
  160. height: 80rpx;
  161. background: url('https://qiniu.bms16.com/FibAaPERzqi6m95EP2jREUKixjUi');
  162. background-size: 100%;
  163. }
  164. }
  165. .step-item-container {
  166. background: #fff;
  167. border-top-left-radius: 40rpx;
  168. padding: 30rpx 24rpx;
  169. margin-top: -24rpx;
  170. }
  171. .step-item {
  172. width: 100%;
  173. background: #F4F5F6;
  174. border-radius: 24rpx;
  175. padding: 32rpx 28rpx;
  176. margin-bottom: 24rpx;
  177. display: flex;
  178. align-items: center;
  179. &:last-child {
  180. margin-bottom: 0;
  181. }
  182. .desc-wrap {
  183. flex: 1;
  184. margin-left: 24rpx;
  185. }
  186. .title-row {
  187. display: flex;
  188. justify-content: space-between;
  189. margin-bottom: 24rpx;
  190. .title {
  191. font-family: PingFangSC, PingFang SC;
  192. font-weight: 500;
  193. font-size: 32rpx;
  194. color: #060809;
  195. font-weight: bold;
  196. }
  197. .turn-on-switch {
  198. background: #FF791A;
  199. border-radius: 20rpx;
  200. font-size: 22rpx;
  201. color: #FFFFFF;
  202. display: flex;
  203. align-items: center;
  204. justify-content: center;
  205. padding: 8rpx 20rpx;
  206. &.is-open {
  207. background: #2ADA62;
  208. }
  209. }
  210. }
  211. .desc {
  212. font-size: 24rpx;
  213. color: #060809;
  214. }
  215. .icon {
  216. width: 66rpx;
  217. height: 70rpx;
  218. }
  219. .icon_location {
  220. background: url('https://qiniu.bms16.com/FpNU0wp-E5Iin60nT8_NwT1_h_xm');
  221. background-size: 100% 100%;
  222. }
  223. .icon_battery {
  224. background: url('https://qiniu.bms16.com/FjD4CXHuNUL85_JYI7w2MDucjeI-');
  225. background-size: 100% 100%;
  226. }
  227. .icon_backstage {
  228. background: url('https://qiniu.bms16.com/Fo7RGbv1gokn1iUQpF8tca5aUWkD');
  229. background-size: 100% 100%;
  230. }
  231. .icon_appLock {
  232. background: url('https://qiniu.bms16.com/FoWg_FjfV5_v9fxvFQ2dHzXOCDPD');
  233. background-size: 100% 100%;
  234. }
  235. }
  236. }
  237. .btn {
  238. margin-top: 40rpx;
  239. width: 100%;
  240. height: 80rpx;
  241. background: #060809;
  242. border-radius: 40rpx;
  243. color: #fff;
  244. display: flex;
  245. align-items: center;
  246. justify-content: center;
  247. font-family: PingFangSC, PingFang SC;
  248. font-weight: 500;
  249. font-size: 32rpx;
  250. &:active {
  251. opacity: 0.8;
  252. }
  253. }
  254. }
  255. </style>