123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147 |
- import Vue from 'vue'
- import App from './App'
- import uView from 'uview-ui'
- Vue.use(uView)
- import store from './store'
- import globalMixin from './mixin/global'
- Vue.config.productionTip = false
- // echar引入
- import * as echarts from 'echarts'
- Vue.prototype.$echarts = echarts
- Vue.prototype.$baseImgUrl = 'https://www.tuanfengkeji.cn:9527/dts-admin-api/admin/storage/fetch/'
- Vue.filter('replacestar', function (value) {
- if (!value) return ''
- let str = value
- str = str.replace(new RegExp('[^0-9]+', 'g'), '')
- if (str.length == 11) {
- str = str.toString().replace(/(\d{3})\d*(\d{4})/, '$1****$2')
- } else {
- str = str.toString().replace(/(\d{3})\d*(\d{4})/, '$1****$2')
- }
- return str
- })
- 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()
- // import filters from './utils/filter' // 导入过滤器文件
- // Object.keys(filters).forEach((key) => {
- // // 通过Object.key方法取出过滤器中导出的每个方法并挂在vue.filter上
- // Vue.filter(key, filters[key])
- // })
|