123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124 |
- import Vue from 'vue'
- import App from './App'
- import store from './store'
- import globalMixin from './mixin/global'
- Vue.prototype.$store = store
- Vue.config.productionTip = false
- Vue.mixin({
- data() {
- return {
- common: {
- seamingImgUrl(url) {
- if (!url) return ''
- // return url.startsWith('https://') ? url : 'https://www.tuanfengkeji.cn:9527/dts-admin-api/admin/storage/fetch/' + url
- if (url.startsWith('http://')) {
- return url.replace('http://', 'https://')
- } else if (url.startsWith('https://')) {
- return url
- } else if (url.startsWith('//')) {
- return 'https:' + url
- }
- // https://tuanfengkeji.oss-cn-beijing.aliyuncs.com/tfshop/
- // https://jufeng-shop-1317254189.cos.ap-guangzhou.myqcloud.com/
- return 'https://tuanfengkeji.oss-cn-beijing.aliyuncs.com/tfshop/' + url
- }
- }
- }
- },
- methods: {
- setData(obj) {
- const that = this
- let keys = []
- let val, data
- Object.keys(obj).forEach(function (key) {
- keys = key.split('.')
- val = obj[key]
- data = that.$data
- keys.forEach(function (key2, index) {
- if (index + 1 == keys.length) {
- that.$set(data, key2, val)
- } else if (!data[key2]) {
- that.$set(data, key2, {})
- }
- data = data[key2]
- })
- })
- },
- $showToast(text, icon) {
- uni.showToast({
- title: text,
- duration: 2000,
- icon: icon || 'none'
- })
- },
- go(url, param) {
- if (!url) return
- if (param) url = `${url}?detail=${encodeURIComponent(JSON.stringify(param)?.replace(/%/g, '%25'))}`
- uni.navigateTo({
- url
- })
- },
- $getJumpParam(loadParam) {
- if (typeof loadParam === 'object' && loadParam?.detail) return JSON.parse(decodeURIComponent(loadParam.detail))
- return {}
- },
- $copy(text, title = '复制成功') {
- uni.setClipboardData({
- data: text,
- success: () => {
- uni.showToast({
- title
- })
- }
- })
- },
- $redirectTo(url) {
- if (!url) return
- uni.redirectTo({ url })
- },
- $switchTab(url) {
- if (!url) return
- uni.switchTab({ url })
- },
- getSize(selecter) {
- const _this = this
- return new Promise((resolve, reject) => {
- const query = uni.createSelectorQuery().in(_this)
- query
- .select(selecter)
- .boundingClientRect((data) => {
- resolve(data)
- })
- .exec()
- })
- },
- empty() {
- uni.showToast({
- title: '功能升级中...',
- icon: 'none'
- })
- },
- isLogin() {
- return !!(this.$store.getters.userInfo && this.$store.getters.userInfo.token)
- }
- }
- })
- Vue.use(globalMixin)
- Vue.config.ignoredElements.push('wx-open-launch-weapp')
- App.mpType = 'app'
- const app = new Vue({
- ...App,
- store
- })
- app.$mount()
|