1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
| // pages/bookServices/detail/components/testResource/testResource.js
| const app = getApp()
| Component({
| /**
| * 组件的属性列表
| */
| properties: {
| list: {
| type: Array,
| value: []
| },
| bookInfo: {
| type: Object,
| value: "",
| },
| mockData: {
| type: Object,
| value: {}
| }
| },
|
| /**
| * 组件的初始数据
| */
| data: {
| selectBtn: 'test', // test mock
| radioItem: 'test',
| },
|
| /**
| * 组件的方法列表
| */
| methods: {
| async goTest(e) {
| const value = e.currentTarget.dataset.value
| const token = wx.getStorageSync('jsek-token')
| if (!token) {
| return wx.getUserProfile({
| desc: '用户登录',
| success: (res) => {
| console.log(res);
| }
| })
| }
| wx.showLoading({
| title: '加载中',
| })
| // 获取章节下是否有题目
| let idPathList = []
| let query = {
| path: '*',
| queryType: '*',
| productId: this.properties.bookInfo.id,
| cmsPath: value.productLinkPath,
| pading: {
| start: 0,
| size: 999
| }
| }
| if (value.childrenFolderCount == 0) {
| wx.hideLoading()
| return wx.showToast({
| icon: "error",
| title: '暂无数据',
| })
| } else {
| const res = await app.MG.store.getProductDetail(query)
| res.datas.cmsDatas[0].datas.forEach((item) => {
| idPathList.push({
| id: item.id,
| name: item.name,
| productLinkPath: item.productLinkPath,
| type: item.type
| })
| })
| }
| wx.hideLoading()
| wx.navigateTo({
| url: `/packageBookService/pages/bookServices/examination/examination?bookId=${this.properties.bookInfo.id}&productLinkPath=${value.productLinkPath}&rootCmsItemId=${this.properties.bookInfo.rootCmsItemId}&idPathList=${JSON.stringify(idPathList)}&answerTitle=${value.name}&answerType=${'option'}`,
| })
| },
| goMycollect(e) {
| const answertype = e.currentTarget.dataset.answertype
| const token = wx.getStorageSync('jsek-token')
| if (!token) {
| return wx.getUserProfile({
| desc: '用户登录',
| success: (res) => {
| console.log(res);
| }
| })
| }
| wx.navigateTo({
| url: `/packageBookService/pages/bookServices/examination/examination?bookId=${this.properties.bookInfo.id}&rootCmsItemId=${this.properties.bookInfo.rootCmsItemId}&answerTitle=${answertype == 'collectQuestion' ? '我的收藏' : '我的错题'}&answerType=${answertype}`,
| })
| },
| // 练习 组件切换
| onRadioChange(e) {
| this.setData({
| radioItem: e.detail.value
| })
| },
| async getMockId() {
| wx.showLoading({
| title: '加载中'
| })
| let id
| let query = {
| start: 0,
| size: 99,
| productId: this.properties.bookInfo.id
| }
| await app.MG.edu.getQuizConfigListByProduct(query).then((res) => {
| id = res.datas[0].id
| })
| return id
| },
| // 组卷跳转答题界面
| async goMackPaper(e) {
| // const token = localStorage.getItem('jsek-token')
| // if (!token) {
| // return logIn()
| // }
| const mockid = await this.getMockId()
| wx.hideLoading()
| const item = e.currentTarget.dataset.item
| wx.navigateTo({
| url: `/packageBookService/pages/bookServices/examination/examination?bookId=${this.properties.bookInfo.id}&rootCmsItemId=${this.properties.bookInfo.rootCmsItemId}&answerTitle=${item.name}&answerType=${'mock'}&uuid=${item.id}&mockid=${mockid}`,
| })
| }
| }
| })
|
|