u-no-network.vue 5.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231
  1. <template>
  2. <view class="u-no-network" v-if="!isConnected" :style="{ 'z-index': uZIndex }" @touchmove.stop.prevent="() => {}">
  3. <view class="u-inner">
  4. <image class="u-error-icon" :src="image" mode="widthFix"></image>
  5. <view class="u-tips">{{ tips }}</view>
  6. <!-- 只有APP平台,才能跳转设置页,因为需要调用plus环境 -->
  7. <!-- #ifdef APP-PLUS -->
  8. <view class="u-to-setting">
  9. 请检查网络,或前往
  10. <text class="u-setting-btn" @tap="openSettings">设置</text>
  11. </view>
  12. <!-- #endif -->
  13. <view class="u-retry" :hover-stay-time="150" @tap="retry" hover-class="u-retry-hover">重试</view>
  14. </view>
  15. </view>
  16. </template>
  17. <script>
  18. /**
  19. * noNetwork 无网络提示
  20. * @description 该组件无需任何配置,引入即可,内部自动处理所有功能和事件。
  21. * @tutorial https://www.uviewui.com/components/noNetwork.html
  22. * @property {String} tips 没有网络时的提示语(默认哎呀,网络信号丢失)
  23. * @property {String Number} zIndex 组件的z-index值(默认1080)
  24. * @property {String} image 无网络的图片提示,可用的src地址或base64图片
  25. * @event {Function} retry 用户点击页面的"重试"按钮时触发
  26. * @example <u-no-network></u-no-network>
  27. */
  28. let networkType = 'none'; // 网络类型
  29. export default {
  30. name: 'u-no-network',
  31. props: {
  32. // 页面文字提示
  33. tips: {
  34. type: String,
  35. default: '哎呀,网络信号丢失'
  36. },
  37. // 一个z-index值,用于设置没有网络这个组件的层次,因为页面可能会有其他定位的元素层级过高,导致此组件被覆盖
  38. zIndex: {
  39. type: [Number, String],
  40. default: ''
  41. },
  42. // image 没有网络的图片提示
  43. image: {
  44. type: String,
  45. default: '/static/images/empty_network.png'
  46. }
  47. },
  48. data() {
  49. return {
  50. isConnected: true // 是否有网络连接
  51. };
  52. },
  53. computed: {
  54. uZIndex() {
  55. return this.zIndex ? this.zIndex : this.$u.zIndex.noNetwork;
  56. }
  57. },
  58. mounted() {
  59. this.isIOS = uni.getSystemInfoSync().platform === 'ios';
  60. uni.onNetworkStatusChange(res => {
  61. this.isConnected = res.isConnected;
  62. networkType = res.networkType;
  63. });
  64. uni.getNetworkType({
  65. success: res => {
  66. networkType = res.networkType;
  67. if (res.networkType == 'none') {
  68. this.isConnected = false;
  69. } else {
  70. this.isConnected = true;
  71. }
  72. }
  73. });
  74. },
  75. methods: {
  76. retry() {
  77. // 重新检查网络
  78. uni.getNetworkType({
  79. success: res => {
  80. networkType = res.networkType;
  81. if (res.networkType == 'none') {
  82. uni.showToast({
  83. title: '无网络连接',
  84. icon: 'none',
  85. position: 'top'
  86. });
  87. this.isConnected = false;
  88. } else {
  89. uni.showToast({
  90. title: '网络已连接',
  91. icon: 'none',
  92. position: 'top'
  93. });
  94. this.isConnected = true;
  95. }
  96. }
  97. });
  98. this.$emit('retry');
  99. },
  100. async openSettings() {
  101. if (networkType == 'none') {
  102. this.openSystemSettings();
  103. return;
  104. }
  105. },
  106. openAppSettings() {
  107. this.gotoAppSetting();
  108. },
  109. openSystemSettings() {
  110. // 以下方法来自5+范畴,如需深究,请自行查阅相关文档
  111. // https://ask.dcloud.net.cn/docs/
  112. if (this.isIOS) {
  113. this.gotoiOSSetting();
  114. } else {
  115. this.gotoAndroidSetting();
  116. }
  117. },
  118. network() {
  119. var result = null;
  120. var cellularData = plus.ios.newObject('CTCellularData');
  121. var state = cellularData.plusGetAttribute('restrictedState');
  122. if (state == 0) {
  123. result = null;
  124. } else if (state == 2) {
  125. result = 1;
  126. } else if (state == 1) {
  127. result = 2;
  128. }
  129. plus.ios.deleteObject(cellularData);
  130. return result;
  131. },
  132. gotoAppSetting() {
  133. if (this.isIOS) {
  134. var UIApplication = plus.ios.import('UIApplication');
  135. var application2 = UIApplication.sharedApplication();
  136. var NSURL2 = plus.ios.import('NSURL');
  137. var setting2 = NSURL2.URLWithString('app-settings:');
  138. application2.openURL(setting2);
  139. plus.ios.deleteObject(setting2);
  140. plus.ios.deleteObject(NSURL2);
  141. plus.ios.deleteObject(application2);
  142. } else {
  143. var Intent = plus.android.importClass('android.content.Intent');
  144. var Settings = plus.android.importClass('android.provider.Settings');
  145. var Uri = plus.android.importClass('android.net.Uri');
  146. var mainActivity = plus.android.runtimeMainActivity();
  147. var intent = new Intent();
  148. intent.setAction(Settings.ACTION_APPLICATION_DETAILS_SETTINGS);
  149. var uri = Uri.fromParts('package', mainActivity.getPackageName(), null);
  150. intent.setData(uri);
  151. mainActivity.startActivity(intent);
  152. }
  153. },
  154. gotoiOSSetting() {
  155. var UIApplication = plus.ios.import('UIApplication');
  156. var application2 = UIApplication.sharedApplication();
  157. var NSURL2 = plus.ios.import('NSURL');
  158. var setting2 = NSURL2.URLWithString('App-prefs:root=General');
  159. application2.openURL(setting2);
  160. plus.ios.deleteObject(setting2);
  161. plus.ios.deleteObject(NSURL2);
  162. plus.ios.deleteObject(application2);
  163. },
  164. gotoAndroidSetting() {
  165. var Intent = plus.android.importClass('android.content.Intent');
  166. var Settings = plus.android.importClass('android.provider.Settings');
  167. var mainActivity = plus.android.runtimeMainActivity();
  168. var intent = new Intent(Settings.ACTION_SETTINGS);
  169. mainActivity.startActivity(intent);
  170. }
  171. }
  172. };
  173. </script>
  174. <style lang="scss" scoped>
  175. @import '../../libs/css/style.components.scss';
  176. .u-no-network {
  177. background-color: #fff;
  178. position: fixed;
  179. top: 0;
  180. left: 0;
  181. right: 0;
  182. bottom: 0;
  183. }
  184. .u-inner {
  185. height: 100vh;
  186. @include vue-flex;
  187. flex-direction: column;
  188. align-items: center;
  189. justify-content: center;
  190. margin-top: -15%;
  191. }
  192. .u-tips {
  193. color: $u-tips-color;
  194. font-size: 28rpx;
  195. padding: 30rpx 0;
  196. }
  197. .u-error-icon {
  198. width: 300rpx;
  199. }
  200. .u-to-setting {
  201. color: $u-light-color;
  202. font-size: 26rpx;
  203. }
  204. .u-setting-btn {
  205. font-size: 26rpx;
  206. color: $u-type-primary;
  207. }
  208. .u-retry {
  209. margin-top: 30rpx;
  210. border: 1px solid $u-tips-color;
  211. color: $u-tips-color;
  212. font-size: 28rpx;
  213. padding: 6rpx 30rpx;
  214. border-radius: 3px;
  215. }
  216. .u-retry-hover {
  217. color: #fff;
  218. background-color: $u-tips-color;
  219. }
  220. </style>