AndroidUnlockAuth.vue 7.5 KB

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