App.vue 8.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272
  1. <script>
  2. // +----------------------------------------------------------------------
  3. // | CRMEB [ CRMEB赋能开发者,助力企业发展 ]
  4. // +----------------------------------------------------------------------
  5. // | Copyright (c) 2016~2021 https://www.crmeb.com All rights reserved.
  6. // +----------------------------------------------------------------------
  7. // | Licensed CRMEB并不是自由软件,未经许可不能去掉CRMEB相关版权
  8. // +----------------------------------------------------------------------
  9. // | Author: CRMEB Team <admin@crmeb.com>
  10. // +----------------------------------------------------------------------
  11. import {
  12. checkLogin
  13. } from "./libs/login";
  14. import {
  15. HTTP_REQUEST_URL
  16. } from './config/app';
  17. import {
  18. getconfig,
  19. history
  20. } from '@/api/public.js'
  21. import Routine from './libs/routine.js';
  22. export default {
  23. globalData: {
  24. spid: 0,
  25. code: 0,
  26. isLogin: false,
  27. userInfo: {},
  28. MyMenus: [],
  29. balance_func_status: 0, //余额开关
  30. recharge_switch: 0, // 充值开关
  31. store_user_min_recharge: 0, //最小充值
  32. yue_pay_status: 0, //余额支付开关
  33. alipay_open: 0, //支付宝支付开关
  34. routine_logo: '', //首页logo
  35. site_logo: '',
  36. site_name: '', //名称
  37. fid: '', //一级分类id
  38. uid: '',
  39. hide_mer_status: 0,
  40. member_status: 0,
  41. copy_command_status: 0, //是否开启自动获取剪切板内容
  42. arrival_notice: 0, //是否开启到货通知
  43. is_phone_login: 0,
  44. auto_arrival: 0,
  45. mer_location: 0,
  46. statusBarHeight:0,
  47. mer_location: 0,
  48. store_street_theme: 1,
  49. sys_intention_agree: '',
  50. copyright_status: '',
  51. copyright_context: '',
  52. copyright_image: '',
  53. open_update_info: 0,
  54. recommend_switch: 0,
  55. svip_switch_status: 0,
  56. community_reply_status: 0,
  57. community_reply_auth: 0,
  58. community_app_switch: [],
  59. navigation: {},
  60. imgColor: '',
  61. ...uni.getStorageSync('GLOBAL_DATA') || {}
  62. },
  63. onLaunch: function(option) {
  64. this.globalData.statusBarHeight = uni.getSystemInfoSync().statusBarHeight + 'px';
  65. this.globalData.uid = this.$store.state.app.uid
  66. let that = this;
  67. // #ifdef MP
  68. if (HTTP_REQUEST_URL == '') {
  69. console.error(
  70. "请配置根目录下的config.js文件中的 'HTTP_REQUEST_URL'\n\n请修改开发者工具中【详情】->【AppID】改为自己的Appid\n\n请前往后台【小程序】->【小程序配置】填写自己的 appId and AppSecret"
  71. );
  72. return false;
  73. }
  74. if (option.query.hasOwnProperty('scene')) {
  75. switch (option.scene) {
  76. //扫描小程序码
  77. case 1047:
  78. console.log(option, 'val')
  79. let val = that.$util.getUrlParams(decodeURIComponent(option.query.scene));
  80. that.globalData.code = val;
  81. that.globalData.uid = val
  82. break;
  83. //长按图片识别小程序码
  84. case 1048:
  85. that.globalData.code = option.query.scene;
  86. break;
  87. //手机相册选取小程序码
  88. case 1049:
  89. that.globalData.code = option.query.scene;
  90. break;
  91. //直接进入小程序
  92. case 1001:
  93. that.globalData.spid = option.query.scene;
  94. break;
  95. }
  96. }
  97. // #endif
  98. // 获取导航高度;
  99. uni.getSystemInfo({
  100. success: function(res) {
  101. that.globalData.navHeight = res.statusBarHeight * (750 / res.windowWidth) + 91;
  102. }
  103. });
  104. // #ifdef MP
  105. let menuButtonInfo = uni.getMenuButtonBoundingClientRect();
  106. that.globalData.navH = menuButtonInfo.top * 2 + menuButtonInfo.height / 2;
  107. const version = uni.getSystemInfoSync().SDKVersion
  108. if (Routine.compareVersion(version, '2.21.2') >= 0) {
  109. that.$Cache.set('MP_VERSION_ISNEW', true)
  110. } else {
  111. that.$Cache.set('MP_VERSION_ISNEW', false)
  112. }
  113. // #endif
  114. that.getConfigData()
  115. },
  116. onShow() {
  117. let that = this
  118. // 记录H5和公众号
  119. if (this.$store.state.app.token) {
  120. // 浏览记录
  121. // #ifdef H5
  122. history({
  123. page: location.pathname + location.search,
  124. }).then(() => {});
  125. //#endif
  126. };
  127. // #ifndef H5
  128. // setTimeout(()=>{
  129. // if(that.globalData.copy_command_status == 1){
  130. // uni.getClipboardData({
  131. // success: function (res) {
  132. // if(/^(\/@[1-9]{1}).*\*\//.test(res.data)){
  133. // that.$store.commit("PARSE_PWD", res.data)
  134. // }
  135. // },fail: function (res) {
  136. // // 内容获取失败
  137. // }
  138. // })
  139. // }
  140. // },1500)
  141. // #endif
  142. },
  143. methods: {
  144. // 微信分享;
  145. setOpenShare: function(data) {
  146. let that = this;
  147. let href = location.href;
  148. href = href.indexOf("?") === -1 ? href + "?spid=" + this.globalData.uid : href + "&spid=" + this.globalData.uid;
  149. if (that.$wechat.isWeixin()) {
  150. let configAppMessage = {
  151. desc: data.share_info,
  152. title: data.share_title,
  153. link: href,
  154. imgUrl: data.share_pic
  155. };
  156. that.$wechat.wechatEvevt(["updateAppMessageShareData", "updateTimelineShareData"], configAppMessage);
  157. }
  158. },
  159. // 获取配置
  160. getConfigData(){
  161. getconfig().then(res => {
  162. uni.$emit('update', res.data)
  163. this.$store.commit('GLOBAL_DATA', res.data);
  164. this.globalData.balance_func_status = res.data.balance_func_status
  165. this.globalData.recharge_switch = res.data.recharge_switch
  166. this.globalData.routine_logo = res.data.routine_logo
  167. this.globalData.site_logo = res.data.site_logo
  168. this.globalData.community_reply_status = res.data.community_reply_status
  169. this.globalData.login_logo = res.data.login_logo
  170. this.globalData.site_name = res.data.site_name
  171. this.globalData.store_user_min_recharge = res.data.store_user_min_recharge
  172. this.globalData.yue_pay_status = res.data.yue_pay_status
  173. this.globalData.sys_intention_agree = res.data.sys_intention_agree
  174. this.globalData.mer_intention_open = res.data.mer_intention_open
  175. this.globalData.alipay_open = res.data.alipay_open
  176. this.globalData.hide_mer_status = res.data.hide_mer_status
  177. this.globalData.mer_location = res.data.mer_location
  178. this.globalData.arrival_notice = res.data.procudt_increase_status
  179. this.globalData.auto_arrival = res.data.sys_extension_type
  180. this.globalData.member_status = res.data.member_status
  181. this.globalData.copy_command_status = res.data.copy_command_status
  182. this.globalData.is_phone_login = res.data.is_phone_login
  183. this.globalData.mer_location = res.data.mer_location
  184. this.globalData.store_street_theme = res.data.store_street_theme
  185. this.globalData.copyright_status = res.data.copyright_status
  186. this.globalData.copyright_image = res.data.copyright_image
  187. this.globalData.copyright_context = res.data.copyright_context
  188. this.globalData.open_update_info = res.data.open_update_info
  189. this.globalData.recommend_switch = res.data.recommend_switch
  190. this.globalData.svip_switch_status = res.data.svip_switch_status
  191. this.globalData.navigation = res.data.navigation
  192. this.globalData.community_app_switch = res.data.community_app_switch
  193. this.globalData.community_reply_auth = res.data.community_reply_auth
  194. this.$store.commit("VIEW_COLOR", res.data.global_theme.theme)
  195. this.$store.commit("KEY_COLOR",'_' + res.data.global_theme.type)
  196. try {
  197. uni.setStorageSync('SUBSCRIBE_MESSAGE', res.data.tempid);
  198. } catch (e) {
  199. // error
  200. }
  201. // #ifdef H5
  202. this.setOpenShare(res.data);
  203. // #endif
  204. }).catch(err => {});
  205. }
  206. },
  207. onHide: function() {
  208. //console.log('App Hide')
  209. },
  210. watch: {
  211. // 记录H5和公众号
  212. $route(n) {
  213. if (this.$store.state.app.token) {
  214. // 浏览记录
  215. history({
  216. page: location.pathname + location.search,
  217. }).then(() => {});
  218. }
  219. },
  220. }
  221. }
  222. </script>
  223. <style lang="scss">
  224. /* #ifndef APP-PLUS-NVUE || APP-NVUE */
  225. @import "@/plugin/animate/animate.min.css";
  226. @import 'static/css/base.css';
  227. @import 'static/iconfont/iconfont.css';
  228. @import 'static/css/style.scss';
  229. view {
  230. box-sizing: border-box;
  231. }
  232. .bg-color-red {
  233. background-color: #e93323 !important;
  234. }
  235. .syspadding {
  236. padding-top: var(--status-bar-height);
  237. }
  238. .flex {
  239. display: flex;
  240. }
  241. .uni-scroll-view::-webkit-scrollbar {
  242. /* 隐藏滚动条,但依旧具备可以滚动的功能 */
  243. display: none
  244. }
  245. ::-webkit-scrollbar {
  246. width: 0;
  247. height: 0;
  248. color: transparent;
  249. }
  250. ::-moz-scrollbar {
  251. width: 0;
  252. height: 0;
  253. color: transparent;
  254. }
  255. .empty-txt {
  256. line-height: 100rpx;
  257. font-size: 22rpx;
  258. color: #999;
  259. text-align: center;
  260. }
  261. .product-con .conter img {
  262. display: block;
  263. }
  264. .open-location {
  265. height: 100vh;
  266. }
  267. uni-tabbar{
  268. bottom: 0;
  269. }
  270. /*#endif*/
  271. </style>