This commit is contained in:
parent
adb80b05c2
commit
99062299fa
|
@ -13,15 +13,15 @@
|
|||
<view class="user_name">
|
||||
<view class="user_name_de">
|
||||
<view style="display: flex; ">
|
||||
<view style="width: 50%;">
|
||||
<view style="margin-right: 10px;">
|
||||
{{ userName }}
|
||||
</view>
|
||||
|
||||
<view class="sf_textA" v-if="yhsf == '文艺工作者'">
|
||||
<image src="../../static/sfFws.png"></image>
|
||||
<image src="../../static/sfFws.png" mode="heightFix"></image>
|
||||
</view>
|
||||
<view class="sf_textB" v-if="yhsf == '文艺爱好者'">
|
||||
<image src="../../static/sfRc.png"></image>
|
||||
<image src="../../static/sfRc.png" mode="heightFix"></image>
|
||||
</view>
|
||||
</view>
|
||||
|
||||
|
@ -430,15 +430,11 @@
|
|||
|
||||
|
||||
.sf_textA {
|
||||
width: 146rpx;
|
||||
height: 48rpx;
|
||||
margin-top: 12rpx;
|
||||
height: 50rpx;
|
||||
}
|
||||
|
||||
.sf_textB {
|
||||
width: 166rpx;
|
||||
height: 48rpx;
|
||||
margin-top: 12rpx;
|
||||
height: 50rpx;
|
||||
}
|
||||
|
||||
.sf_textC {
|
||||
|
|
|
@ -179,6 +179,11 @@
|
|||
// 因为异步问题 res 打印出来的是 最后的结果
|
||||
console.log("res", res.data);
|
||||
this.userInfoObj = res.data;
|
||||
if(!res.data.association){
|
||||
this.userInfoObj.association = {
|
||||
name: ''
|
||||
}
|
||||
}
|
||||
if(res.data.artAtt==""){
|
||||
this.userInfoObj.artAtt= JSON.stringify([""])
|
||||
}
|
||||
|
|
|
@ -35,7 +35,7 @@
|
|||
</u--input>
|
||||
</u-form-item>
|
||||
<u-form-item prop="imgCode" ref="item1" class="data_itm" v-if="tab == 0">
|
||||
<u-row justify="space-between" gutter="10" customStyle="width: 100%">
|
||||
<u-row justify="space-between" gutter="10" customStyle="width: 100%">
|
||||
<u-col span="6">
|
||||
<u--input placeholder="请输入验证码" border="bottom" clearable v-model="userInfo.imgCode">
|
||||
</u--input>
|
||||
|
@ -136,6 +136,7 @@
|
|||
appId: 'wx55b187e6ed92e2ac',
|
||||
phone: '',
|
||||
jscode: '',
|
||||
phone_code: ''
|
||||
},
|
||||
isWx: false,
|
||||
imgFile: '',
|
||||
|
@ -147,7 +148,6 @@
|
|||
},
|
||||
methods: {
|
||||
getImgFile() {
|
||||
// 获取手机号
|
||||
this.http.request('/auth/getCodes', {}, "GET").then(res => {
|
||||
if (res.code == 200) {
|
||||
this.imgFile = res.data.captchaImg
|
||||
|
@ -179,18 +179,88 @@
|
|||
url: '/pagesC/Login/RemeberPW'
|
||||
})
|
||||
},
|
||||
// close() {
|
||||
// this.show = false
|
||||
// uni.showToast({
|
||||
// title: '您拒绝了请求',
|
||||
// icon: "error",
|
||||
|
||||
|
||||
// 旧版微信登录
|
||||
// getPhoneNumber(e) {
|
||||
// if (e.detail.errMsg == "getPhoneNumber:ok") {
|
||||
// this.wxDate.phone_encryptedData = e.detail.encryptedData
|
||||
// this.wxDate.phone_iv = e.detail.iv
|
||||
// this.getNumber(e.detail.code)
|
||||
// } else if (e.detail.errMsg == "getPhoneNumber:fail user deny") {
|
||||
// uni.showToast({
|
||||
// title: '您拒绝了请求',
|
||||
// icon: "error",
|
||||
// });
|
||||
// }
|
||||
// },
|
||||
// getNumber(code) {
|
||||
// this.load = true
|
||||
// // 获取手机号
|
||||
// this.http.request('/auth/wx/getPhone?code=' + code, {}, "POST").then(res => {
|
||||
// if (res.code == 200) {
|
||||
// this.wxDate.phone = res.data.phone_info.phoneNumber
|
||||
// this.wechatLogin()
|
||||
// }
|
||||
// }).catch(e => {
|
||||
// this.load = false
|
||||
// uni.showToast({
|
||||
// title: e.data.message,
|
||||
// icon: "none",
|
||||
// });
|
||||
// })
|
||||
// },
|
||||
// wechatLogin() {
|
||||
// let _this = this
|
||||
// //检查登录态是否过期
|
||||
// uni.checkSession({
|
||||
// provider: 'weixin',
|
||||
// success: function(loginRes) {
|
||||
// console.log('checkSession成功', loginRes);
|
||||
// },
|
||||
// fail: function(loginRes) {
|
||||
// console.log('checkSession失败', loginRes);
|
||||
// },
|
||||
// });
|
||||
|
||||
// //重新登录
|
||||
// let jsCode = ''
|
||||
// uni.login({
|
||||
// provider: 'weixin',
|
||||
// success: function(loginRes) {
|
||||
// jsCode = loginRes.code;
|
||||
// console.log('login重新登录', {
|
||||
// loginRes
|
||||
// });
|
||||
// _this.http.request('/auth/xcx_login', {
|
||||
// code: jsCode,
|
||||
// phone: _this.wxDate.phone
|
||||
// }, "POST").then(res => {
|
||||
// if (res.code == 200) {
|
||||
// uni.setStorageSync('token', res.data.tokenValue)
|
||||
// uni.redirectTo({
|
||||
// url: '/pages/pageHome/pageHome'
|
||||
// })
|
||||
// }
|
||||
// }).catch(e => {
|
||||
// uni.showToast({
|
||||
// title: e.data.message,
|
||||
// icon: "none",
|
||||
// });
|
||||
// })
|
||||
// },
|
||||
// fail: function(loginRes) {
|
||||
// console.log(loginRes)
|
||||
// _this.load = false
|
||||
// }
|
||||
// });
|
||||
// },
|
||||
|
||||
// 新版微信登录
|
||||
getPhoneNumber(e) {
|
||||
if (e.detail.errMsg == "getPhoneNumber:ok") {
|
||||
this.wxDate.phone_encryptedData = e.detail.encryptedData
|
||||
this.wxDate.phone_iv = e.detail.iv
|
||||
this.getNumber(e.detail.code)
|
||||
this.wxDate.phone_code = e.detail.code
|
||||
this.getOpenId()
|
||||
} else if (e.detail.errMsg == "getPhoneNumber:fail user deny") {
|
||||
uni.showToast({
|
||||
title: '您拒绝了请求',
|
||||
|
@ -198,53 +268,16 @@
|
|||
});
|
||||
}
|
||||
},
|
||||
getNumber(code) {
|
||||
this.load = true
|
||||
// 获取手机号
|
||||
this.http.request('/auth/wx/getPhone?code=' + code, {}, "POST").then(res => {
|
||||
if (res.code == 200) {
|
||||
this.wxDate.phone = res.data.phone_info.phoneNumber
|
||||
this.wechatLogin()
|
||||
}
|
||||
}).catch(e => {
|
||||
this.load = false
|
||||
uni.showToast({
|
||||
title: e.data.message,
|
||||
icon: "none",
|
||||
});
|
||||
})
|
||||
},
|
||||
wechatLogin() {
|
||||
getOpenId() {
|
||||
let _this = this
|
||||
//检查登录态是否过期
|
||||
uni.checkSession({
|
||||
provider: 'weixin',
|
||||
success: function(loginRes) {
|
||||
console.log('checkSession成功', loginRes);
|
||||
},
|
||||
fail: function(loginRes) {
|
||||
console.log('checkSession失败', loginRes);
|
||||
},
|
||||
});
|
||||
|
||||
//重新登录
|
||||
let jsCode = ''
|
||||
uni.login({
|
||||
provider: 'weixin',
|
||||
success: function(loginRes) {
|
||||
jsCode = loginRes.code;
|
||||
console.log('login重新登录', {
|
||||
loginRes
|
||||
});
|
||||
_this.http.request('/auth/xcx_login', {
|
||||
code: jsCode,
|
||||
phone: _this.wxDate.phone
|
||||
}, "POST").then(res => {
|
||||
_this.http.request('/auth/wx/getOpenId?code=' + jsCode, {}, "POST").then(res => {
|
||||
if (res.code == 200) {
|
||||
uni.setStorageSync('token', res.data.tokenValue)
|
||||
uni.redirectTo({
|
||||
url: '/pages/pageHome/pageHome'
|
||||
})
|
||||
_this.wechatLogin(res.data)
|
||||
}
|
||||
}).catch(e => {
|
||||
uni.showToast({
|
||||
|
@ -259,6 +292,27 @@
|
|||
}
|
||||
});
|
||||
},
|
||||
wechatLogin(val) {
|
||||
this.http.request('/auth/wx/getPhoneByOpenId', {
|
||||
code: this.wxDate.phone_code,
|
||||
openId: val
|
||||
}, "POST").then(res => {
|
||||
if (res.code == 200) {
|
||||
uni.setStorageSync('token', res.data.tokenValue)
|
||||
uni.redirectTo({
|
||||
url: '/pages/pageHome/pageHome'
|
||||
})
|
||||
}
|
||||
}).catch(e => {
|
||||
uni.showToast({
|
||||
title: e.data.message,
|
||||
icon: "none",
|
||||
});
|
||||
})
|
||||
},
|
||||
|
||||
|
||||
|
||||
login() {
|
||||
if (this.tab == 0) {
|
||||
this.load = true
|
||||
|
|
|
@ -25,11 +25,8 @@
|
|||
<u-parse :content="detailData.text"></u-parse>
|
||||
</view>
|
||||
<!-- 附带文件 -->
|
||||
<view class="file_box" v-for="(item,index) in list2" :key="index" @click="downLoad(item.url)">
|
||||
<view class="file_box_left">
|
||||
<image :src="item.img" class="file_box_left_img"></image>
|
||||
</view>
|
||||
<view class="file_box_right">
|
||||
<view class="file_box" v-if="list2.length > 0">
|
||||
<view class="file_box_right" v-for="(item,index) in list2" :key="index" @click="downLoad(item.url)">
|
||||
<view class="file_box_name">
|
||||
{{item.name}}
|
||||
</view>
|
||||
|
@ -43,9 +40,9 @@
|
|||
export default {
|
||||
data() {
|
||||
return {
|
||||
list:[],
|
||||
list2:[],
|
||||
id:'',
|
||||
list: [],
|
||||
list2: [],
|
||||
id: '',
|
||||
iswx: 0,
|
||||
detailData: {},
|
||||
}
|
||||
|
@ -65,28 +62,27 @@
|
|||
this.iswx = 1
|
||||
// #endif
|
||||
},
|
||||
methods:{
|
||||
getData(){
|
||||
methods: {
|
||||
getData() {
|
||||
let _this = this
|
||||
this.http.request('/policy/details/' + this.id, {}, "GET").then(res => {
|
||||
if (res.code == 200) {
|
||||
if (res.data.files) {
|
||||
let fileArr = res.data.files.split(',')
|
||||
fileArr.forEach(function(item) {
|
||||
fileArr.forEach(function(item,index) {
|
||||
let gs = item.substr(item.lastIndexOf(".") + 1)
|
||||
console.log(item,gs)
|
||||
if (gs == 'jpg' || gs == 'jpeg' || gs == 'png' || gs == 'bmp' || gs == 'gif' || gs == 'tif' || gs == 'tiff') {
|
||||
if (gs == 'jpg' || gs == 'jpeg' || gs == 'png' || gs == 'bmp' || gs ==
|
||||
'gif' || gs == 'tif' || gs == 'tiff') {
|
||||
_this.list.push(item)
|
||||
} else if (gs == 'pdf') {
|
||||
} else {
|
||||
_this.list2.push({
|
||||
name: res.data.title + '.' + gs,
|
||||
name: res.data.title + index + '.' + gs,
|
||||
img: '../../static/fileImg/pdfS.png',
|
||||
url: item,
|
||||
})
|
||||
}
|
||||
})
|
||||
}
|
||||
console.log(this.list2)
|
||||
this.detailData = res.data
|
||||
}
|
||||
}).catch(e => {
|
||||
|
@ -98,24 +94,44 @@
|
|||
},
|
||||
//点击文件
|
||||
downLoad(val) {
|
||||
this.contractUrl = val
|
||||
if(this.iswx == 0){
|
||||
this.openPDF()
|
||||
}else if(this.iswx == 1){
|
||||
uni.navigateTo({
|
||||
url: "../ArtWorks/webView?url=" + this.contractUrl
|
||||
let urlPath = val
|
||||
const token = uni.getStorageSync('token')
|
||||
if (this.iswx == 0) {
|
||||
wx.downloadFile({
|
||||
url: urlPath, //仅为示例,并非真实的资源
|
||||
header: {
|
||||
'Authorization': "Bearer " + token,
|
||||
'x-token': token
|
||||
},
|
||||
success(res) {
|
||||
// 只要服务器有响应数据,就会把响应内容写入文件并进入 success 回调,业务需要自行判断是否下载到了想要的内容
|
||||
if (res.statusCode === 200) {
|
||||
const filePath = res.tempFilePath;
|
||||
wx.openDocument({
|
||||
filePath: filePath,
|
||||
showMenu: true,
|
||||
success: function(res) {
|
||||
console.log(res, '打开文档成功');
|
||||
}
|
||||
});
|
||||
}
|
||||
}
|
||||
})
|
||||
} else {
|
||||
window.location.href = urlPath
|
||||
}
|
||||
|
||||
},
|
||||
}
|
||||
}
|
||||
</script>
|
||||
|
||||
<style lang="scss">
|
||||
.workDetail{
|
||||
.workDetail {
|
||||
position: relative;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
|
||||
.work_name {
|
||||
width: 92%;
|
||||
margin: 10px 4%;
|
||||
|
@ -128,15 +144,17 @@
|
|||
.work_desc {
|
||||
width: 92%;
|
||||
margin: 10px 4%;
|
||||
padding-bottom: 40rpx;
|
||||
font-family: PingFangSC-Regular, PingFang SC;
|
||||
font-weight: 400;
|
||||
color: #251B1D;
|
||||
.work_desc_img{
|
||||
|
||||
.work_desc_img {
|
||||
width: 100%;
|
||||
}
|
||||
}
|
||||
|
||||
.work_det{
|
||||
.work_det {
|
||||
width: 92%;
|
||||
margin: 10px 4%;
|
||||
height: 17px;
|
||||
|
@ -145,20 +163,24 @@
|
|||
color: #AFADB0;
|
||||
line-height: 17px;
|
||||
overflow: hidden;
|
||||
.det_box{
|
||||
|
||||
.det_box {
|
||||
float: left;
|
||||
margin-right: 20px;
|
||||
overflow: hidden;
|
||||
.box_left{
|
||||
|
||||
.box_left {
|
||||
width: 16px;
|
||||
height: 16px;
|
||||
float: left;
|
||||
.img{
|
||||
|
||||
.img {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
}
|
||||
}
|
||||
.box_right{
|
||||
|
||||
.box_right {
|
||||
margin-left: 2px;
|
||||
float: left;
|
||||
}
|
||||
|
@ -167,43 +189,29 @@
|
|||
|
||||
.file_box {
|
||||
width: 92%;
|
||||
height: 64px;
|
||||
margin: 10px 4%;
|
||||
padding-bottom: 40rpx;
|
||||
font-family: PingFangSC-Semibold, PingFang SC;
|
||||
font-weight: 600;
|
||||
color: #251B1D;
|
||||
background: #F4F5F7;
|
||||
border-radius: 6px;
|
||||
overflow: hidden;
|
||||
|
||||
.file_box_left {
|
||||
width: 40px;
|
||||
height: 40px;
|
||||
margin-top: 12px;
|
||||
margin-left: 12px;
|
||||
float: left;
|
||||
|
||||
.file_box_left_img {
|
||||
width: 40px;
|
||||
height: 40px;
|
||||
}
|
||||
}
|
||||
|
||||
.file_box_right {
|
||||
margin-left: 20px;
|
||||
background: #F4F5F7;
|
||||
padding-left: 20px;
|
||||
float: left;
|
||||
width: calc(100% - 30rpx);
|
||||
|
||||
.file_box_name {
|
||||
height: 64px;
|
||||
line-height: 64px;
|
||||
font-size: 16px;
|
||||
line-height: 48rpx;
|
||||
font-size: 28rpx;
|
||||
font-weight: 600;
|
||||
color: #251B1D;
|
||||
padding: 20rpx 0;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
|
||||
</style>
|
|
@ -25,8 +25,15 @@
|
|||
<u-parse :content="serveList.context"></u-parse>
|
||||
</view>
|
||||
<view class="work_desc" style="margin-top: 20px;" v-for="(v,i) in img" :key="i">
|
||||
<image :src="v" mode="widthFix"
|
||||
class="work_desc_img"></image>
|
||||
<image :src="v" mode="widthFix" class="work_desc_img"></image>
|
||||
</view>
|
||||
<!-- 附带文件 -->
|
||||
<view class="file_box" v-if="list2.length > 0">
|
||||
<view class="file_box_right" v-for="(item,index) in list2" :key="index" @click="downLoad(item.url)">
|
||||
<view class="file_box_name">
|
||||
{{item.name}}
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
|
||||
|
@ -39,22 +46,49 @@
|
|||
id: '',
|
||||
serveList: {},
|
||||
img: [],
|
||||
list2: [],
|
||||
iswx: 0,
|
||||
}
|
||||
},
|
||||
onLoad(options) {
|
||||
this.id = options.id
|
||||
},
|
||||
onReady() {
|
||||
// this.load = false
|
||||
// #ifdef MP-WEIXIN
|
||||
this.iswx = 0
|
||||
// #endif
|
||||
|
||||
// #ifndef MP-WEIXIN
|
||||
//除了小程序
|
||||
this.iswx = 1
|
||||
// #endif
|
||||
},
|
||||
onShow() {
|
||||
wx.showShareMenu({
|
||||
withShareTicket: true,
|
||||
menus: ['shareAppMessage', 'shareTimeline']
|
||||
})
|
||||
this.getList()
|
||||
},
|
||||
methods:{
|
||||
methods: {
|
||||
getList() {
|
||||
let _this = this
|
||||
this.http.request('/dynamic/details/' + this.id, {}, "GET").then(res => {
|
||||
this.serveList = res.data
|
||||
if(res.data.imagePath){
|
||||
if (res.data.imagePath) {
|
||||
this.img = res.data.imagePath.split(',')
|
||||
}
|
||||
if (res.data.files) {
|
||||
let fileArr = res.data.files.split(',')
|
||||
fileArr.forEach(function(item,index) {
|
||||
let gs = item.substr(item.lastIndexOf(".") + 1)
|
||||
_this.list2.push({
|
||||
name: res.data.title + index + '.' + gs,
|
||||
url: item,
|
||||
})
|
||||
})
|
||||
}
|
||||
}).catch(e => {
|
||||
uni.showToast({
|
||||
title: e.data.message,
|
||||
|
@ -62,15 +96,46 @@
|
|||
});
|
||||
})
|
||||
},
|
||||
//点击文件
|
||||
downLoad(val) {
|
||||
let urlPath = val
|
||||
const token = uni.getStorageSync('token')
|
||||
if (this.iswx == 0) {
|
||||
wx.downloadFile({
|
||||
url: urlPath, //仅为示例,并非真实的资源
|
||||
header: {
|
||||
'Authorization': "Bearer " + token,
|
||||
'x-token': token
|
||||
},
|
||||
success(res) {
|
||||
// 只要服务器有响应数据,就会把响应内容写入文件并进入 success 回调,业务需要自行判断是否下载到了想要的内容
|
||||
if (res.statusCode === 200) {
|
||||
const filePath = res.tempFilePath;
|
||||
wx.openDocument({
|
||||
filePath: filePath,
|
||||
showMenu: true,
|
||||
success: function(res) {
|
||||
console.log(res, '打开文档成功');
|
||||
}
|
||||
});
|
||||
}
|
||||
}
|
||||
})
|
||||
} else {
|
||||
window.location.href = urlPath
|
||||
}
|
||||
|
||||
},
|
||||
}
|
||||
}
|
||||
</script>
|
||||
|
||||
<style lang="scss">
|
||||
.workDetail{
|
||||
.workDetail {
|
||||
position: relative;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
|
||||
.work_name {
|
||||
width: 92%;
|
||||
margin: 10px 4%;
|
||||
|
@ -83,16 +148,18 @@
|
|||
.work_desc {
|
||||
width: 92%;
|
||||
margin: 10px 4%;
|
||||
padding-bottom: 40rpx;
|
||||
font-size: 14px;
|
||||
font-family: PingFangSC-Regular, PingFang SC;
|
||||
font-weight: 400;
|
||||
color: #251B1D;
|
||||
.work_desc_img{
|
||||
|
||||
.work_desc_img {
|
||||
width: 100%;
|
||||
}
|
||||
}
|
||||
|
||||
.work_det{
|
||||
.work_det {
|
||||
width: 92%;
|
||||
margin: 10px 4%;
|
||||
height: 17px;
|
||||
|
@ -102,63 +169,54 @@
|
|||
color: #AFADB0;
|
||||
line-height: 17px;
|
||||
overflow: hidden;
|
||||
.det_box{
|
||||
|
||||
.det_box {
|
||||
float: left;
|
||||
margin-right: 20px;
|
||||
overflow: hidden;
|
||||
.box_left{
|
||||
|
||||
.box_left {
|
||||
width: 16px;
|
||||
height: 16px;
|
||||
float: left;
|
||||
.img{
|
||||
|
||||
.img {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
}
|
||||
}
|
||||
.box_right{
|
||||
|
||||
.box_right {
|
||||
margin-left: 2px;
|
||||
float: left;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.file_box{
|
||||
.file_box {
|
||||
width: 92%;
|
||||
height: 64px;
|
||||
margin: 10px 4%;
|
||||
padding-bottom: 40rpx;
|
||||
font-family: PingFangSC-Semibold, PingFang SC;
|
||||
font-weight: 600;
|
||||
color: #251B1D;
|
||||
background: #F4F5F7;
|
||||
border-radius: 6px;
|
||||
overflow: hidden;
|
||||
.file_box_left{
|
||||
width: 40px;
|
||||
height: 40px;
|
||||
margin-top: 12px;
|
||||
margin-left: 12px;
|
||||
|
||||
.file_box_right {
|
||||
background: #F4F5F7;
|
||||
padding-left: 20px;
|
||||
float: left;
|
||||
.file_box_left_img{
|
||||
width: 40px;
|
||||
height: 40px;
|
||||
}
|
||||
}
|
||||
.file_box_right{
|
||||
margin-left: 20px;
|
||||
float: left;
|
||||
.file_box_name{
|
||||
font-size: 16px;
|
||||
width: calc(100% - 30rpx);
|
||||
|
||||
.file_box_name {
|
||||
line-height: 48rpx;
|
||||
font-size: 28rpx;
|
||||
font-weight: 600;
|
||||
color: #251B1D;
|
||||
margin-top: 12px;
|
||||
}
|
||||
.file_box_big{
|
||||
font-weight: 400;
|
||||
color: #AFADB0;
|
||||
padding: 20rpx 0;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
</style>
|
|
@ -14,10 +14,11 @@
|
|||
export default {
|
||||
data() {
|
||||
return {
|
||||
list: [{
|
||||
imgUrl: '../../static/icon7.png',
|
||||
label: '文艺援助'
|
||||
},
|
||||
list: [
|
||||
// {
|
||||
// imgUrl: '../../static/icon7.png',
|
||||
// label: '文艺援助'
|
||||
// },
|
||||
{
|
||||
imgUrl: '../../static/icon8.png',
|
||||
label: '媒体宣传'
|
||||
|
@ -26,10 +27,10 @@
|
|||
imgUrl: '../../static/moreFun/moreFun3.png',
|
||||
label: '机构设置'
|
||||
},
|
||||
{
|
||||
imgUrl: '../../static/moreFun/moreFun4.png',
|
||||
label: '资料查找'
|
||||
},
|
||||
// {
|
||||
// imgUrl: '../../static/moreFun/moreFun4.png',
|
||||
// label: '资料查找'
|
||||
// },
|
||||
{
|
||||
imgUrl: '../../static/moreFun/moreFun2.png',
|
||||
label: '文艺下乡'
|
||||
|
@ -40,57 +41,48 @@
|
|||
{
|
||||
imgUrl: '../../static/icon4.png',
|
||||
label: '线上看展'
|
||||
},
|
||||
// {
|
||||
// imgUrl: '../../static/icon5.png',
|
||||
// label: '积分商城'
|
||||
// },
|
||||
}
|
||||
]
|
||||
};
|
||||
},
|
||||
methods: {
|
||||
SwitchPage(id) {
|
||||
switch (id) {
|
||||
// case 0:
|
||||
// uni.navigateTo({
|
||||
// url: "/pagesC/literHelp/literHelp"
|
||||
// })
|
||||
// break;
|
||||
case 0:
|
||||
uni.navigateTo({
|
||||
url: "/pagesC/literHelp/literHelp"
|
||||
})
|
||||
break;
|
||||
case 1:
|
||||
uni.navigateTo({
|
||||
url: "/pagesC/mediaProp/mediaProp"
|
||||
})
|
||||
break;
|
||||
case 2:
|
||||
case 1:
|
||||
uni.navigateTo({
|
||||
url: "/pagesD/jgsz/index"
|
||||
})
|
||||
break;
|
||||
case 3:
|
||||
uni.navigateTo({
|
||||
url: "/pagesC/DataSearch/DataSearch"
|
||||
})
|
||||
break;
|
||||
case 4:
|
||||
// case 3:
|
||||
// uni.navigateTo({
|
||||
// url: "/pagesC/DataSearch/DataSearch"
|
||||
// })
|
||||
// break;
|
||||
case 2:
|
||||
uni.navigateTo({
|
||||
url: "/pagesD/wyxx/index"
|
||||
})
|
||||
break;
|
||||
case 5:
|
||||
case 3:
|
||||
uni.navigateTo({
|
||||
url: "/pagesB/ArtRace/ArtRace"
|
||||
})
|
||||
break;
|
||||
case 6:
|
||||
case 4:
|
||||
uni.navigateTo({
|
||||
url: "/pagesD/xskz/index"
|
||||
})
|
||||
break;
|
||||
case 7:
|
||||
uni.redirectTo({
|
||||
url: "/pagesC/shop/Shop?typesOf=3"
|
||||
})
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -5,9 +5,9 @@
|
|||
|
||||
export default {
|
||||
config: {
|
||||
// baseUrl: "http://192.168.2.48:8080/h5/api", //俞燕红-小程序不能配跨域
|
||||
baseUrl: "http://192.168.2.48:8080/h5/api", //俞燕红-小程序不能配跨域
|
||||
// baseUrl: "/pre", //俞燕红-跨域
|
||||
baseUrl: "https://yxx.ydool.net/h5/api", //线上
|
||||
// baseUrl: "https://yxx.ydool.net/h5/api", //线上
|
||||
// baseUrl: "/h5/api", //h5
|
||||
header: {
|
||||
'Content-Type': 'application/json;charset=UTF-8',
|
||||
|
|
Loading…
Reference in New Issue