diff --git a/package.json b/package.json
index 8d49f4d..54a922e 100644
--- a/package.json
+++ b/package.json
@@ -34,6 +34,7 @@
"build:mp-qq": "uni build -p mp-qq",
"build:mp-toutiao": "uni build -p mp-toutiao",
"build:mp-weixin": "uni build -p mp-weixin",
+ "build:mp-weixin:dev": "uni build -p mp-weixin --mode development",
"build:mp-xhs": "uni build -p mp-xhs",
"build:quickapp-webview": "uni build -p quickapp-webview",
"build:quickapp-webview-huawei": "uni build -p quickapp-webview-huawei",
diff --git a/src/api/xinjiang_guess.js b/src/api/xinjiang_guess.js
index ea90b1c..9bde2bc 100644
--- a/src/api/xinjiang_guess.js
+++ b/src/api/xinjiang_guess.js
@@ -154,4 +154,8 @@ export const submitUploadUserInfo = (params, config = {}) => {
// 最新竞猜记录
export const getLatestGameLogs = () => {
return http.get(`/api/miniprogram/latest-game-logs`);
+}
+// 最新竞猜记录
+export const activityGameLogs = (params) => {
+ return http.get(`/api/miniprogram/activity-game-logs`,{ params });
}
\ No newline at end of file
diff --git a/src/components/c-title/index.vue b/src/components/c-title/index.vue
new file mode 100644
index 0000000..4008cb1
--- /dev/null
+++ b/src/components/c-title/index.vue
@@ -0,0 +1,19 @@
+
+
+
+ {{ title }}
+
+
+
+
diff --git a/src/components/quiz/item-new.vue b/src/components/quiz/item-new.vue
index 86e240a..b06fb5d 100644
--- a/src/components/quiz/item-new.vue
+++ b/src/components/quiz/item-new.vue
@@ -1,6 +1,14 @@
-
+
@@ -17,7 +25,9 @@
{{ data.score }}
- {{ currentStatus.label }}
+ {{
+ currentStatus.label
+ }}
@@ -26,30 +36,13 @@
diff --git a/src/components/quiz/status.js b/src/components/quiz/status.js
new file mode 100644
index 0000000..14c0970
--- /dev/null
+++ b/src/components/quiz/status.js
@@ -0,0 +1,17 @@
+export const status = [
+ {
+ value: 0,
+ label: '未公布',
+ color: '#1b2f85'
+ },
+ {
+ value: 1,
+ label: '猜中了',
+ color: '#e91f35'
+ },
+ {
+ value: 2,
+ label: '未猜中',
+ color: '#808080'
+ },
+]
\ No newline at end of file
diff --git a/src/packages/pages/activeDetail/activeDetail.vue b/src/packages/pages/activeDetail/activeDetail.vue
index 55a7540..5421a9b 100644
--- a/src/packages/pages/activeDetail/activeDetail.vue
+++ b/src/packages/pages/activeDetail/activeDetail.vue
@@ -1,21 +1,32 @@
-
+
-
+
{{ detail.name }}
- 活动规则
+ 活动规则
@@ -26,24 +37,42 @@
-
+ v-if="isDetailPage"
+ >
-
+
{{ game_day }}
-
+
{{ item.name }}
- {{ item.home_field }}
+ {{
+ item.home_field
+ }}
VS
- {{ item.little_game_at }}
+ {{
+ item.little_game_at
+ }}
@@ -51,16 +80,35 @@
-
-
-
+
+
+
-
- {{ item.has_guess_right ? '+' : '' }}{{ item.mark }}
+
+ {{ item.has_guess_right ? '+' : '' }}{{ item.mark }}
@@ -76,14 +124,34 @@
-
+
-
+
@@ -91,8 +159,7 @@
-
-
+
次数
成绩
@@ -102,31 +169,65 @@
快去竞猜,争与排名赢大礼
-
+
-
+
{{ index + 1 }}
-
- {{ item.nick_name }}
+
+ {{
+ item.nick_name
+ }}
- {{ item.join_times }}中{{ item.right_times }}
+ {{ item.join_times }}中{{ item.right_times }}
{{ item.mark }}
+
+
+
+
-
+
活动规则
@@ -135,8 +236,14 @@
-
+
{{ gameInfo.home_field }}
@@ -152,49 +259,127 @@
胜
- 1:0
- 2:0
- 2:1
- 3:0
- 3:1
+ 1:0
+ 2:0
+ 2:1
+ 3:0
+ 3:1
- 3:2
- 4:0
- 4:1
- 4:2
- 5:0
+ 3:2
+ 4:0
+ 4:1
+ 4:2
+ 5:0
- 5:1
- 5:2
- 胜其他
+ 5:1
+ 5:2
+ 胜其他
@@ -202,21 +387,51 @@
平
- 0:0
- 1:1
- 2:2
- 3:3
- 平其他
+ 0:0
+ 1:1
+ 2:2
+ 3:3
+ 平其他
@@ -224,62 +439,158 @@
负
- 0:1
- 0:2
- 0:3
- 0:4
- 0:5
+ 0:1
+ 0:2
+ 0:3
+ 0:4
+ 0:5
- 1:2
- 1:3
- 1:4
- 1:5
- 2:3
+ 1:2
+ 1:3
+ 1:4
+ 1:5
+ 2:3
- 2:4
- 2:5
- 负其他
+ 2:4
+ 2:5
+ 负其他
-
+
-
+
@@ -289,56 +600,70 @@