helpCenter.vue 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. <template>
  2. <view class="main">
  3. <view class="text">
  4. 1.第一步:打开手机设置,找到应用管理(以华为手机为例)
  5. </view>
  6. <img src="http://xoa.zzots.cn//files/20240807/0bae48ea8eb547a3a99878360dca02f4.png" alt="">
  7. <view class="text">
  8. 2.第二步:找到中泽OA应用
  9. </view>
  10. <img src="http://xoa.zzots.cn//files/20240807/9a72eb3356364ed8ae1b9f85c0a57807.png" alt="">
  11. <view class="text">
  12. 1.第三步:点击中泽OA,找到"权限"管理
  13. </view>
  14. <img src="http://xoa.zzots.cn//files/20240807/1a434c8f11114bcdaeb0c68d17a35848.png" alt="">
  15. <view class="text">
  16. 1.第四步:点击权限,找到"存储管理打开完成"
  17. </view>
  18. <img src="http://xoa.zzots.cn//files/20240807/92c35166950d4fd79c3b26f1fb550097.png" alt="">
  19. <view style="height: 150px;">
  20. </view>
  21. </view>
  22. </template>
  23. <script>
  24. export default {
  25. data() {
  26. return {
  27. }
  28. },
  29. methods: {
  30. }
  31. }
  32. </script>
  33. <style lang="less" scoped>
  34. .main {
  35. text-align: center;
  36. }
  37. .text {
  38. text-align: left;
  39. padding: 30rpx;
  40. border-bottom: 1px solid #D9D9D9;
  41. }
  42. img {
  43. margin: 0 auto;
  44. }
  45. </style>