|
@@ -159,7 +159,7 @@
|
|
|
|
|
|
</view>
|
|
|
<view class="pageView" v-show="TotalSize">
|
|
|
- <page-pagination :pageSize="pageSize" :size="'small'" :total="TotalSize" :numAround="true" @change="pageChange"></page-pagination>
|
|
|
+ <page-pagination :pageSize="pageSize" :currentPage="page" :size="'small'" :total="TotalSize" :numAround="true" @change="pageChange"></page-pagination>
|
|
|
</view>
|
|
|
|
|
|
</view>
|
|
@@ -219,6 +219,9 @@
|
|
|
}
|
|
|
},
|
|
|
onLoad(opt) {
|
|
|
+ uni.setNavigationBarTitle({
|
|
|
+ title: '门店学院' // 设定新标题
|
|
|
+ });
|
|
|
if(opt.id){
|
|
|
this.newDetailID=opt.id;
|
|
|
var item={
|
|
@@ -231,12 +234,50 @@
|
|
|
console.log(item)
|
|
|
this.goDetail(item)
|
|
|
}
|
|
|
+ var helpToken=opt.helpToken
|
|
|
+ if(helpToken){
|
|
|
+ //登录 除了安徒生没有 其他的都有
|
|
|
+ }else{
|
|
|
+
|
|
|
+ var that=this
|
|
|
+ uni.getStorage({
|
|
|
+ key: "helpToken",
|
|
|
+ success: function(res) {
|
|
|
+ const currentTime = Date.now();
|
|
|
+ const expiration = res.data.expiration;
|
|
|
+ if (currentTime < expiration) {
|
|
|
+ // 数据未过期,使用数据
|
|
|
+ // console.log('数据有效,值为:', res.data.value);
|
|
|
+ var helpToken=res.data.value
|
|
|
+ if(helpToken){
|
|
|
+
|
|
|
+ }else{
|
|
|
+ that.login()
|
|
|
+ }
|
|
|
+ } else {
|
|
|
+ that.login()
|
|
|
+ uni.removeStorageSync('helpToken');
|
|
|
+ }
|
|
|
+ },
|
|
|
+ fail: function() {
|
|
|
+ console.log('获取数据失败');
|
|
|
+ that.login()
|
|
|
+ }
|
|
|
+ });
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
this.getindexData()
|
|
|
},
|
|
|
created(){
|
|
|
//this.getindexData()
|
|
|
},
|
|
|
methods: {
|
|
|
+ login(){
|
|
|
+ uni.navigateTo({
|
|
|
+ url:'../login/login?index=1'
|
|
|
+ })
|
|
|
+ },
|
|
|
getIndexList(){
|
|
|
this.indexShow=true;
|
|
|
this.listShow=false;
|
|
@@ -263,6 +304,7 @@
|
|
|
this.comment=item.comment;
|
|
|
this.topCode=item.code;
|
|
|
this.parentCode=item.code;
|
|
|
+ this.page=1;
|
|
|
//this.parentCode='';
|
|
|
this.getcategoryPageData();
|
|
|
uni.setNavigationBarTitle({
|
|
@@ -286,6 +328,10 @@
|
|
|
}) */
|
|
|
},
|
|
|
goDetail(item){
|
|
|
+ if(item.linkType==1){
|
|
|
+ window.open(item.linkUrl, '_blank');
|
|
|
+ return false
|
|
|
+ }
|
|
|
console.log(item)
|
|
|
this.indexShow=false;
|
|
|
this.listShow=false;
|
|
@@ -324,6 +370,10 @@
|
|
|
this.newsearchShow=false;
|
|
|
this.newgroupingdata=newgroupingdata
|
|
|
}else{
|
|
|
+ if(wz.linkType==1){
|
|
|
+ window.open(wz.linkUrl, '_blank');
|
|
|
+ return false
|
|
|
+ }
|
|
|
this.indexShow=false;
|
|
|
this.listShow=false;
|
|
|
this.newDetailShow=true;
|
|
@@ -344,6 +394,7 @@
|
|
|
}) */
|
|
|
},
|
|
|
goDetail3(wz){
|
|
|
+
|
|
|
// 1分类2文章
|
|
|
if (wz.Type == 1) {
|
|
|
/* uni.navigateTo({
|
|
@@ -365,7 +416,12 @@
|
|
|
this.newsearchShow=false;
|
|
|
this.newgroupingdata=newgroupingdata
|
|
|
}else{
|
|
|
- //console.log(wz)
|
|
|
+
|
|
|
+ if(wz.linkType==1){
|
|
|
+ window.open(wz.linkUrl, '_blank');
|
|
|
+ return false
|
|
|
+ }
|
|
|
+
|
|
|
this.indexShow=false;
|
|
|
this.listShow=false;
|
|
|
this.newDetailShow=true;
|
|
@@ -386,6 +442,7 @@
|
|
|
//console.log(wz)
|
|
|
},
|
|
|
goDetail4(item){
|
|
|
+
|
|
|
this.newgroupingcode=item.Code;
|
|
|
var newgroupingdata={
|
|
|
parentCode:item.parentCode,
|
|
@@ -404,6 +461,10 @@
|
|
|
},
|
|
|
goDetailswp(item){
|
|
|
//console.log(itme)
|
|
|
+ if(item.linkType==1){
|
|
|
+ window.open(item.linkUrl, '_blank');
|
|
|
+ return false
|
|
|
+ }
|
|
|
this.indexShow=false;
|
|
|
this.listShow=false;
|
|
|
this.newDetailShow=true;
|
|
@@ -469,6 +530,7 @@
|
|
|
this.tabIndex=index;
|
|
|
console.log(item)
|
|
|
this.parentCode=item.code;
|
|
|
+ this.page=1;
|
|
|
this.getcategoryPageData()
|
|
|
},
|
|
|
pageChange(e){
|