代码拉取完成,页面将自动刷新
同步操作将从 小程序/hycw_h5 强制同步,此操作会覆盖自 Fork 仓库以来所做的任何修改,且无法恢复!!!
确定后同步将在后台操作,完成时将刷新页面,请耐心等待。
import Vue from 'vue'
import App from './App'
import MescrollBody from "@/common/mescroll-uni/mescroll-body.vue";
import Mixin from "@/common/mescroll-uni/mescroll-mixins.js";
// import moment from 'moment'
// Vue.prototype.moment = moment
Vue.config.productionTip = false
// import uView from 'uview-ui'
// Vue.use(uView)
// 分享
import wechat from '@/utils/wxsdk.js'
Object.assign(Vue.prototype, {
'$wechat':wechat
})
// 配置公共方法
import common from '@/common/common.js'
Vue.prototype.$noMultipleClicks = common.noMultipleClicks;
// 注入微信支付
import jwx from '@/common/jwx'
Vue.prototype.$jwx = jwx
// Vue.prototype.req = function(param, backpage, backtype) {
// // console.log(param1)
// uni.getNetworkType({
// success: function(res) {
// if (res.networkType == 'none') {
// uni.showToast({
// title: '网络连接异常,请检查网络',
// icon: 'none',
// })
// return
// }
// }
// });
// var _self = this,
// url = param.url,
// method = 'get',
// header = {},
// data = param.data || {},
// Loading = param.Loading || false;
// var token = uni.getStorageSync('token')
// // var token = '1ff272fb1da965f92ef9ebaa36d07777'
// //拼接完整请求地址
// var requestUrl = this.siteBaseUrl + url;
// // console.log(method,'method')
// if (method) {
// method = method.toUpperCase(); //小写改为大写
// // console.log(token,11)
// if (method == "POST") {
// header = {
// 'content-type': "application/x-www-form-urlencoded",
// 'token': token
// };
// } else {
// header = {
// 'content-type': "application/json"
// };
// }
// } else {
// method = "GET";
// header = {
// 'content-type': "application/json"
// };
// }
// // if(param.header){
// // header = param.header
// // }
// // console.log(header,'he')
// //用户交互:加载圈
// // console.log(!Loading)
// if (!Loading) {
// uni.showLoading({
// title: '加载中...'
// });
// }
// //网络请求
// uni.request({
// url: requestUrl,
// method: method,
// header: header,
// data: data,
// success: res => {
// // console.log(res.data)
// if (res.data.status == 1) { //返回结果码code判断:1成功,-1错误
// // uni.showToast({
// // title: res.data.msg,
// // icon: 'none',
// // })
// } else if (res.data.status == 0) {
// setTimeout(function(){
// uni.showToast({
// title: res.data.msg,
// icon: 'none',
// })
// },500)
// } else if (res.data.status < 0) {
// var pages = getCurrentPages();
// var pid='';
// for (var a = 0; a < pages.length; a++) {
// console.log(pages[a].route )
// if (pages[a].route == "pages/user/index"||pages[a].route == "pages/user/invitation"||pages[a].route == "pages/jishi/jishi"||pages[a].route == "pages/sangdai/sangdai"||pages[a].route == "pages/shouye/detail"||pages[a].route == "pages/shouye/index"||pages[a].route == "pages/user/invitation"||pages[a].route == "pages/user/my_coupon") {
// uni.setStorageSync('lgurl', pages[a].route)
// uni.setStorageSync('lgurldata', JSON.stringify(pages[a].options))
// if(pages[a].options){
// if(pages[a].options.pid){
// pid = pages[a].options.pid
// }
// }
// }
// }
// setTimeout(function(){
// uni.showToast({
// title: '请先登录',
// icon: 'none',
// })
// },500)
// uni.redirectTo({
// url:'/pages/user/login?pid='+pid
// })
// }else{
// return;
// }
// typeof param.success == "function" && param.success(res.data);
// },
// fail: (e) => {
// console.log("网络请求fail:" + JSON.stringify(e));
// typeof param.fail == "function" && param.fail(e.data);
// },
// complete: () => {
// // setTimeout(function(){
// uni.hideLoading();
// // },500)
// typeof param.complete == "function" && param.complete();
// return;
// }
// });
// }
// 正式服
// Vue.prototype.siteBaseUrl = 'https://mhadmin.xingqq.cn/api/';
// 上传图片正式服
// Vue.prototype.uploadURL = "https://mhadmin.xingqq.cn"
// 测试服
// Vue.prototype.siteBaseUrl = 'https://yymh.hayougaming.com/mmh'
// 上传图片测试服
// Vue.prototype.uploadURL = "https://testmhadmin.xingqq.cn"
// 本地
// Vue.prototype.siteBaseUrl = 'http://www.qhcw.com/api/';
// 本地图片测试服
// Vue.prototype.uploadURL = "http://www.qhcw.com"
Vue.config.productionTip = false
Vue.component("mescroll-body", MescrollBody);
Vue.mixin(Mixin);
App.mpType = 'app'
// 全局过滤器(将时间戳转换为具体时间)
Vue.filter('formatTime', function (timestamp) {
const date = new Date(timestamp * 1000)
let year = date.getFullYear();
let month = date.getMonth() + 1;
let day = date.getDate();
let hour = date.getHours();
let minutes = date.getMinutes();
let seconds = date.getSeconds();
month = month > 9 ? month : '0' + month;
day = day > 9 ? day : '0' + day;
hour = hour > 9 ? hour : '0' + hour;
minutes = minutes > 9 ? minutes : '0' + minutes;
seconds = seconds > 9 ? seconds : '0' + seconds;
return `${year}-${month}-${day} ${hour}:${minutes}:${seconds}`;
})
const app = new Vue({
...App
})
app.$mount()
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。