1
This commit is contained in:
parent
bcb8a68013
commit
93f7410a12
@ -1,6 +1,6 @@
|
||||
// 应用全局配置
|
||||
module.exports = {
|
||||
baseUrl: 'http://192.168.1.4:8080',
|
||||
baseUrl: 'http://192.168.1.17:8080',
|
||||
// baseUrl: 'http://localhost:8080',
|
||||
// 应用信息
|
||||
appInfo: {
|
||||
|
@ -25,6 +25,13 @@
|
||||
import subscribe from '@/pages/components/subscribe.vue'
|
||||
import mineIndex from '@/pages/mine/mine-index.vue'
|
||||
import myNotice from '@/pages/components/my-notice.vue'
|
||||
import {
|
||||
getSiteConfig
|
||||
} from '@/api/system/config.js'
|
||||
import constant from '@/utils/constant'
|
||||
import {
|
||||
setStrData
|
||||
} from '@/utils/auth.js'
|
||||
export default {
|
||||
components: {
|
||||
tabBarVue,
|
||||
@ -52,6 +59,7 @@
|
||||
},
|
||||
onLoad: function() {
|
||||
this.nowUserType = getUserType()
|
||||
this.selectSiteConfig("platform_tel")
|
||||
},
|
||||
methods: {
|
||||
updateParams(newVal) {
|
||||
@ -88,6 +96,29 @@
|
||||
this.queryParams.pageNo = 1
|
||||
this.total = 0
|
||||
},
|
||||
/**
|
||||
* 查询平台配置
|
||||
*/
|
||||
selectSiteConfig(code) {
|
||||
getSiteConfig({
|
||||
code: code
|
||||
}).then(res => {
|
||||
let jsonArray = JSON.parse(res.data)
|
||||
jsonArray.map((item) => {
|
||||
if (constant.customer_service == item.name) {
|
||||
setStrData(constant.customer_service, item.value)
|
||||
} else if (constant.wechat_img == item.name) {
|
||||
setStrData(constant.wechat_img, item.value)
|
||||
}
|
||||
})
|
||||
}).catch((e) => {
|
||||
uni.showToast({
|
||||
icon: 'error',
|
||||
duration: 2000,
|
||||
title: e
|
||||
});
|
||||
})
|
||||
}
|
||||
}
|
||||
}
|
||||
</script>
|
||||
|
@ -134,17 +134,17 @@
|
||||
<image src="@/static/mine/caise/shouce.png" mode="aspectFit"></image>
|
||||
<view>新人手册</view>
|
||||
</view>
|
||||
<view class="menu-item" @click="toggle('center')">
|
||||
<view class="menu-item" @click="toggle('center',customer_service)">
|
||||
<!-- <image src="@/static/mine/kefu.png" mode="aspectFit"></image> -->
|
||||
<image src="@/static/mine/caise/kefu.png" mode="aspectFit"></image>
|
||||
<view>联系客服</view>
|
||||
</view>
|
||||
<view class="menu-item" @click="toggle('center')">
|
||||
<view class="menu-item" @click="toggle('center',wechat_img)">
|
||||
<!-- <image src="@/static/mine/gognzhonghao.png" mode="aspectFit"></image> -->
|
||||
<image src="@/static/mine/caise/weixin.png" mode="aspectFit"></image>
|
||||
<view>公众号</view>
|
||||
</view>
|
||||
<view class="menu-item" @click="toggle('center')">
|
||||
<view class="menu-item" @click="toggle('center',customer_service)">
|
||||
<!-- <image src="@/static/mine/jairushequ.png" mode="aspectFit"></image> -->
|
||||
<image src="@/static/mine/caise/shequ.png" mode="aspectFit"></image>
|
||||
<view>加入社区</view>
|
||||
@ -160,7 +160,7 @@
|
||||
<!-- 普通弹窗 -->
|
||||
<uni-popup ref="popup" background-color="#fff">
|
||||
<view class="popup-content" :class="{ 'popup-height': type === 'left' || type === 'right' }">
|
||||
<image src="@/static/mine/erweima.jpg" mode="aspectFit"></image>
|
||||
<image :src="imageUrl+popupImgUrl" mode="aspectFit"></image>
|
||||
</view>
|
||||
</uni-popup>
|
||||
</view>
|
||||
@ -176,8 +176,10 @@
|
||||
formatNumberWithUnits,
|
||||
calculateTimeDifference
|
||||
} from '@/utils/common.js'
|
||||
import config from '@/config'
|
||||
import {
|
||||
getJSONData
|
||||
getJSONData,
|
||||
getStrData
|
||||
} from '@/utils/auth.js'
|
||||
import {
|
||||
bloggerDetail
|
||||
@ -203,7 +205,14 @@
|
||||
globalConfig: getApp().globalData.config,
|
||||
//是否已开通会员
|
||||
ifHasCard: false,
|
||||
userInfo: {}
|
||||
userInfo: {},
|
||||
imageUrl: config.baseUrl,
|
||||
//公众号二维码
|
||||
wechat_img: constant.wechat_img,
|
||||
//客服二维码
|
||||
customer_service: constant.customer_service,
|
||||
//弹窗照片
|
||||
popupImgUrl: "",
|
||||
}
|
||||
},
|
||||
mounted() {},
|
||||
@ -225,8 +234,9 @@
|
||||
}
|
||||
},
|
||||
methods: {
|
||||
toggle(type) {
|
||||
toggle(type, key) {
|
||||
this.type = type
|
||||
this.popupImgUrl = getStrData(key)
|
||||
// open 方法传入参数 等同在 uni-popup 组件上绑定 type属性
|
||||
this.$refs.popup.open(type)
|
||||
},
|
||||
|
Binary file not shown.
Before Width: | Height: | Size: 27 KiB |
@ -12,6 +12,10 @@ const constant = {
|
||||
//博主
|
||||
bz: '02',
|
||||
//通告主
|
||||
tgz: '01'
|
||||
tgz: '01',
|
||||
//微信公众号二维码
|
||||
wechat_img: 'wechat_img',
|
||||
//客服二维码
|
||||
customer_service: 'customer_service',
|
||||
}
|
||||
export default constant
|
Loading…
Reference in New Issue
Block a user