Commit 0f3653fa authored by youjie's avatar youjie

no message

parent 5de253fe
...@@ -365,11 +365,9 @@ export default { ...@@ -365,11 +365,9 @@ export default {
this.$forceUpdate(); this.$forceUpdate();
}, },
init() { init() {
this.loading = true;
uni.showLoading() uni.showLoading()
this.apipost("dmcstatistics_post_GetTotalPrice_V2", this.msg, (res) => { this.apipost("dmcstatistics_post_GetTotalPrice_V2", this.msg, (res) => {
if (res.resultCode == 1) { if (res.resultCode == 1) {
this.loading = false;
uni.hideLoading() uni.hideLoading()
this.dataList = res.data.sort((a,b)=>{ this.dataList = res.data.sort((a,b)=>{
return new Date(b.TeamUsePriceList[0].UseTime) - new Date(a.TeamUsePriceList[0].UseTime) return new Date(b.TeamUsePriceList[0].UseTime) - new Date(a.TeamUsePriceList[0].UseTime)
...@@ -393,14 +391,12 @@ export default { ...@@ -393,14 +391,12 @@ export default {
this.newTeamUsePrice() this.newTeamUsePrice()
} }
}, (failed) => { }, (failed) => {
this.loading = false;
uni.hideLoading() uni.hideLoading()
uni.showToast({ uni.showToast({
title: failed.message, title: failed.message,
icon: "none", icon: "none",
}); });
}, (error) => { }, (error) => {
this.loading = false;
uni.hideLoading() uni.hideLoading()
}) })
}, },
......
...@@ -242,19 +242,19 @@ export default { ...@@ -242,19 +242,19 @@ export default {
{ {
name: "行程", name: "行程",
src: "https://viitto-1301420277.cos.ap-chengdu.myqcloud.com/Upload/Goods/638868998200882976.png", src: "https://viitto-1301420277.cos.ap-chengdu.myqcloud.com/Upload/Goods/638868998200882976.png",
path: "", path: "/pages/teamLeader/itineraryInformation",
id: 2, id: 2,
}, },
{ {
name: "分房表", name: "分房表",
src: "https://viitto-1301420277.cos.ap-chengdu.myqcloud.com/Upload/Goods/638868998392386701.png", src: "https://viitto-1301420277.cos.ap-chengdu.myqcloud.com/Upload/Goods/638868998392386701.png",
path: "", path: "/pages/teamLeader/roomAllocation",
id: 3, id: 3,
}, },
{ {
name: "计划表", name: "计划表",
src: "https://viitto-1301420277.cos.ap-chengdu.myqcloud.com/Upload/Goods/638868998200482430.png", src: "https://viitto-1301420277.cos.ap-chengdu.myqcloud.com/Upload/Goods/638868998200482430.png",
path: "", path: "/pages/teamLeader/schedule",
id: 4, id: 4,
}, },
{ {
...@@ -266,7 +266,7 @@ export default { ...@@ -266,7 +266,7 @@ export default {
{ {
name: "意见调查", name: "意见调查",
src: "https://viitto-1301420277.cos.ap-chengdu.myqcloud.com/Upload/Goods/638868998200462985.png", src: "https://viitto-1301420277.cos.ap-chengdu.myqcloud.com/Upload/Goods/638868998200462985.png",
path: "", path: "/pages/teamLeader/opinionSurvey",
id: 6, id: 6,
} }
], ],
...@@ -301,10 +301,14 @@ export default { ...@@ -301,10 +301,14 @@ export default {
}, },
methods: { methods: {
goUrl(url){ goUrl(url){
if(url!=''){
uni.navigateTo({ uni.navigateTo({
url: `${url}?TCIDs=${this.msg.TCIDs}`, url: `${url}?TCIDs=${this.msg.TCIDs}`,
}) })
}else{
this.showQRCode = true
}
}, },
close(){ close(){
this.currencyVisible = false this.currencyVisible = false
......
This diff is collapsed.
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment