AndroidUnlockAuth.vue 7.1 KB

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