AndroidUnlockAuth.vue 7.2 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. {{ $t('为保证') }} {{ $t('感应解锁') }} {{ $t('的正常使用,请依次开以下权限,开启后可以显著提高解锁成功率,且不会明显增加手机电量消耗') }}
  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 common = require('@/common/common.js');
  31. import permision from "@/js_sdk/wa-permission/permission.js"
  32. // import mixin from '@/mixin/index.js'; // 引入 mixin
  33. export default {
  34. // mixins:[mixin],
  35. props: {
  36. value: {
  37. type: Boolean,
  38. default: false
  39. },
  40. authStepList: {
  41. type: Array,
  42. default: []
  43. },
  44. },
  45. created(){
  46. // bluetooth.initBluetooth()
  47. // this.bluetoothClose()
  48. },
  49. data() {
  50. return {
  51. showDialog: this.value,
  52. permisionCheckObj: {},
  53. isOpenAllPermission:false,//是否打开所有需要权限
  54. }
  55. },
  56. // computed: {
  57. // authStepList() {
  58. // const lang = v => this.$t(v)
  59. // return [
  60. // { title: (this.$t('位置权限')), type: 'location', desc: '打开手机定位,并运行APP始终使用' },
  61. // { title: (this.$t('电池优化')), type: 'battery', desc: '打开电池优化设置, 将弗兰克APP加入保护名单' },
  62. // // { title: (this.$t('后台运行')), type: 'backstage', desc: '打开后台运行权限 清选择手动控制' },
  63. // // { title: (this.$t('打开应用锁')), type: 'appLock', desc: this.$t('打开应用权限锁') }
  64. // ]
  65. // }
  66. // },
  67. watch: {
  68. value(newValue) {
  69. this.showDialog = newValue
  70. // if (newValue) {
  71. // this._initCheckdPermission()
  72. // }
  73. }
  74. },
  75. methods: {
  76. // async _initCheckdPermission() {
  77. // this.authStepList=app.globalData.permissionArr
  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 = this.$t('已获得授权')
  88. // } else if (result == 0) {
  89. // strStatus = this.$t('未获得授权')
  90. // } else {
  91. // strStatus = this.$t('被永久拒绝权限')
  92. // }
  93. // permision.gotoAppPermissionSetting()
  94. // uni.showModal({
  95. // content: permisionID + strStatus,
  96. // showCancel: false
  97. // });
  98. },
  99. enablePermissions({ type }) {
  100. console.log(type,'type');
  101. if (!this.permisionCheckObj[type]) {
  102. permision.gotoAppPermissionSetting()
  103. }
  104. },
  105. linkTo() {
  106. // const app = getApp();
  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>