pull/36/head
zcx 8 months ago
parent 8f50f42f8c
commit e67e1edf12
  1. 8
      src/jtools/api/activity.js
  2. 135
      src/pages/index/index.vue

@ -15,11 +15,7 @@ export function queryActivityDetail(data) {
url: 'activity/applet/activity/detail', url: 'activity/applet/activity/detail',
method: 'get', method: 'get',
data, data,
<<<<<<< HEAD
noToken: true noToken: true
=======
noToken: true
>>>>>>> 9e24edad28eff09cb1c9d947314de6e4e3a33d19
}); });
} }
//查询抽奖次数 //查询抽奖次数
@ -66,7 +62,6 @@ export function getLuckyRecord(data) {
data, data,
noToken: true noToken: true
}); });
<<<<<<< HEAD
} }
//查询中奖记录 //查询中奖记录
@ -121,6 +116,3 @@ export function wxLogin(data) {
} }
=======
}
>>>>>>> 9e24edad28eff09cb1c9d947314de6e4e3a33d19

@ -30,7 +30,6 @@
</view> </view>
</template> </template>
<script> <script>
<<<<<<< HEAD
import { import {
mapState, mapState,
mapActions mapActions
@ -140,140 +139,6 @@
}) })
uni.navigateTo({ uni.navigateTo({
url: '/pages/index/activity?detailId=' + detailId, url: '/pages/index/activity?detailId=' + detailId,
=======
import {
mapState,
mapActions
} from 'pinia' //
import useQuestionStore from '@/jtools/store/question' //store
import useUserStore from '@/jtools/store/user'
import storage from '@/jtools/storage';
import {
querySysConfigList,
} from '@/jtools/api/question';
import Subject1 from "./components/Subject1";
import Subject2 from "./components/Subject2";
import {
queryActivityList,
} from '@/jtools/api/activity';
export default {
components: {
Subject1,
Subject2
},
data() {
return {
show:false,
subject: storage.get('curSubject') || '1',
curTab: 0,
searchValue: '',
cityName: '',
categoryList: [],
rightList: storage.get(`rightList_subject${this.subject}`) || [],
wrongList: storage.get(`wrongList_subject${this.subject}`) || [],
activityList: ['https://cdn.uviewui.com/uview/swiper/swiper1.png']
};
},
onShow() {
this.show=true
this.getSubjectConfig()
if (this.subject == '1' || this.subject == '4') {
this.rightList = storage.get(`rightList_subject${this.subject}`) || []
this.wrongList = storage.get(`wrongList_subject${this.subject}`) || []
}
if(this.subject=='2'||this.subject=='3'){
this.$refs.subjectRef.getDiverType()
}
this.queryActivityList();
},
onHide(){
this.show=false
},
computed: {
...mapState(useQuestionStore, ["loading_subject4", "loading_subject1","curSubject","orderQuestion_subject1","orderQuestion_subject4"]), //tagslist
getLoading() {
return this.loading_subject4 && this.loading_subject1
}
},
watch:{
getLoading(newVal){
if(this.show){
if(newVal){
if(this.loading_subject4 && this.loading_subject1){
uni.hideTabBar();
}
}else{
uni.showTabBar()
}
}
}
},
methods: {
...mapActions(useQuestionStore, ['getOrderQuestion_sub4', 'getOrderQuestion_sub1', 'changeSubject']),
//
getSubjectConfig() {
const carTypeId = storage.get('carType') || '1001'
querySysConfigList(carTypeId, 'Subject').then(resp => {
if (resp.code === '0000') {
this.categoryList = resp.data.map(item => {
return {
...item,
name: item.configItemName
}
})
this.subject=storage.get('curSubject') || '1',
this.curTab=this.categoryList.findIndex(item=>item.configItemCode==this.subject)
}
})
},
//
async changeCategory(val) {
this.subject = val.configItemCode
this.changeSubject(this.subject)
if (this.subject == '1' || this.subject == '4') {
this.rightList = storage.get(`rightList_subject${this.subject}`) || []
this.wrongList = storage.get(`wrongList_subject${this.subject}`) || []
} else {
setTimeout(() => {
this.$refs.subjectRef.getDiverType()
}, 100)
}
},
//
queryActivityList(){
// console.log(this.user)
// console.log(useUserStore().userInfo)
// this.activityList = null;
// uni.request({
// url: 'http://localhost:8089/applet/activity/list',
// method: 'get',
// data: {'schoolId': useUserStore().userInfo.schoolId}
// }).then(resp => {
// console.log(".....")
// console.log(resp)
// if(resp.data.code == 200) {
// this.activityList = resp.data.data
// console.log("*****")
// console.log(resp.data)
// console.log(resp.data.data)
// console.log(this.activityList)
// }
// })
queryActivityList({schoolId: this.user.schoolId}).then(resp => {
this.activityList = resp.data;
})
},
//
handleToActivity(index) {
let detailId;
this.activityList.find((item, index1) => {
if(index === index1){
detailId = item.detailId;
}
})
uni.navigateTo({
url: '/pages/index/activity?detailId='+detailId,
>>>>>>> 9e24edad28eff09cb1c9d947314de6e4e3a33d19
}) })
} }
} }

Loading…
Cancel
Save