|
@@ -195,7 +195,7 @@ export default {
|
|
}
|
|
}
|
|
}
|
|
}
|
|
if (listMap["全部"] && listMap["全部"].valueData) {
|
|
if (listMap["全部"] && listMap["全部"].valueData) {
|
|
- listMap["全部"].valueData.forEach((item,index) => {
|
|
|
|
|
|
+ listMap["全部"].valueData.forEach((item, index) => {
|
|
listMap["全部"].valueData[index] = item.toFixed(2);
|
|
listMap["全部"].valueData[index] = item.toFixed(2);
|
|
});
|
|
});
|
|
}
|
|
}
|
|
@@ -287,24 +287,25 @@ export default {
|
|
}
|
|
}
|
|
}
|
|
}
|
|
if (this.menuData != undefined && this.menuData.gotoPageInfo != undefined) {
|
|
if (this.menuData != undefined && this.menuData.gotoPageInfo != undefined) {
|
|
- // 暂未开发页面集合
|
|
|
|
- let notFound = [
|
|
|
|
- { index: "2", subIndex: "2" },
|
|
|
|
- { index: "2", subIndex: "3" }
|
|
|
|
- ];
|
|
|
|
- // 是否跳转暂存变量
|
|
|
|
- let notFoundState = true;
|
|
|
|
- // 遍历未开发页面index信息
|
|
|
|
- notFound.forEach(item => {
|
|
|
|
- // 如果要跳转的页面存在未开发页面集合中
|
|
|
|
- if (item.index == this.menuData.gotoPageInfo.index && item.subIndex == this.menuData.gotoPageInfo.subIndex) {
|
|
|
|
- this.$message.info("页面开发中,敬请期待!");
|
|
|
|
- notFoundState = false;
|
|
|
|
- }
|
|
|
|
- });
|
|
|
|
- if (notFoundState) {
|
|
|
|
- this.$store.commit("changeNavSelect", this.menuData.gotoPageInfo);
|
|
|
|
- }
|
|
|
|
|
|
+ this.$store.commit("changeNavSelect", this.menuData.gotoPageInfo);
|
|
|
|
+ // // 暂未开发页面集合
|
|
|
|
+ // let notFound = [
|
|
|
|
+ // { index: "2", subIndex: "2" },
|
|
|
|
+ // { index: "2", subIndex: "3" }
|
|
|
|
+ // ];
|
|
|
|
+ // // 是否跳转暂存变量
|
|
|
|
+ // let notFoundState = true;
|
|
|
|
+ // // 遍历未开发页面index信息
|
|
|
|
+ // notFound.forEach(item => {
|
|
|
|
+ // // 如果要跳转的页面存在未开发页面集合中
|
|
|
|
+ // if (item.index == this.menuData.gotoPageInfo.index && item.subIndex == this.menuData.gotoPageInfo.subIndex) {
|
|
|
|
+ // this.$message.info("页面开发中,敬请期待!");
|
|
|
|
+ // notFoundState = false;
|
|
|
|
+ // }
|
|
|
|
+ // });
|
|
|
|
+ // if (notFoundState) {
|
|
|
|
+ // this.$store.commit("changeNavSelect", this.menuData.gotoPageInfo);
|
|
|
|
+ // }
|
|
}
|
|
}
|
|
},
|
|
},
|
|
// 根据菜单imageURL和boxHeight对象自动生成元素的样式(背景以及高度)
|
|
// 根据菜单imageURL和boxHeight对象自动生成元素的样式(背景以及高度)
|