初次提交

This commit is contained in:
2026-01-12 15:19:54 +08:00
parent f70cb01d14
commit 141ddbb059
15 changed files with 1117 additions and 0 deletions

19
.gitignore vendored Normal file
View File

@@ -0,0 +1,19 @@
node_modules/
unpackage/
dist/
.DS_Store
*.log
*.suo
*.ntvs*
*.njsproj
*.sln
*.sw?
.idea/
.vscode/
*.local
.hbuilderx/
.vite/
.cache/
temp/
*.tmp
*.temp

17
App.vue Normal file
View File

@@ -0,0 +1,17 @@
<script>
export default {
onLaunch: function() {
console.log('App Launch')
},
onShow: function() {
console.log('App Show')
},
onHide: function() {
console.log('App Hide')
}
}
</script>
<style>
/*每个页面公共css */
</style>

11
config.js Normal file
View File

@@ -0,0 +1,11 @@
const config = {
baseUrl: 'http://127.0.0.1:8503',
api: {
login: '/gw/login',
getQuestion: '/user/get_question',
answerQuestion: '/user/answer_question'
},
timeout: 30000
}
export default config

20
index.html Normal file
View File

@@ -0,0 +1,20 @@
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8" />
<script>
var coverSupport = 'CSS' in window && typeof CSS.supports === 'function' && (CSS.supports('top: env(a)') ||
CSS.supports('top: constant(a)'))
document.write(
'<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0' +
(coverSupport ? ', viewport-fit=cover' : '') + '" />')
</script>
<title></title>
<!--preload-links-->
<!--app-context-->
</head>
<body>
<div id="app"><!--app-html--></div>
<script type="module" src="/main.js"></script>
</body>
</html>

22
main.js Normal file
View File

@@ -0,0 +1,22 @@
import App from './App'
// #ifndef VUE3
import Vue from 'vue'
import './uni.promisify.adaptor'
Vue.config.productionTip = false
App.mpType = 'app'
const app = new Vue({
...App
})
app.$mount()
// #endif
// #ifdef VUE3
import { createSSRApp } from 'vue'
export function createApp() {
const app = createSSRApp(App)
return {
app
}
}
// #endif

72
manifest.json Normal file
View File

@@ -0,0 +1,72 @@
{
"name" : "qgdzs",
"appid" : "",
"description" : "",
"versionName" : "1.0.0",
"versionCode" : "100",
"transformPx" : false,
/* 5+App */
"app-plus" : {
"usingComponents" : true,
"nvueStyleCompiler" : "uni-app",
"compilerVersion" : 3,
"splashscreen" : {
"alwaysShowBeforeRender" : true,
"waiting" : true,
"autoclose" : true,
"delay" : 0
},
/* */
"modules" : {},
/* */
"distribute" : {
/* android */
"android" : {
"permissions" : [
"<uses-permission android:name=\"android.permission.CHANGE_NETWORK_STATE\"/>",
"<uses-permission android:name=\"android.permission.MOUNT_UNMOUNT_FILESYSTEMS\"/>",
"<uses-permission android:name=\"android.permission.VIBRATE\"/>",
"<uses-permission android:name=\"android.permission.READ_LOGS\"/>",
"<uses-permission android:name=\"android.permission.ACCESS_WIFI_STATE\"/>",
"<uses-feature android:name=\"android.hardware.camera.autofocus\"/>",
"<uses-permission android:name=\"android.permission.ACCESS_NETWORK_STATE\"/>",
"<uses-permission android:name=\"android.permission.CAMERA\"/>",
"<uses-permission android:name=\"android.permission.GET_ACCOUNTS\"/>",
"<uses-permission android:name=\"android.permission.READ_PHONE_STATE\"/>",
"<uses-permission android:name=\"android.permission.CHANGE_WIFI_STATE\"/>",
"<uses-permission android:name=\"android.permission.WAKE_LOCK\"/>",
"<uses-permission android:name=\"android.permission.FLASHLIGHT\"/>",
"<uses-feature android:name=\"android.hardware.camera\"/>",
"<uses-permission android:name=\"android.permission.WRITE_SETTINGS\"/>"
]
},
/* ios */
"ios" : {},
/* SDK */
"sdkConfigs" : {}
}
},
/* */
"quickapp" : {},
/* */
"mp-weixin" : {
"appid" : "",
"setting" : {
"urlCheck" : false
},
"usingComponents" : true
},
"mp-alipay" : {
"usingComponents" : true
},
"mp-baidu" : {
"usingComponents" : true
},
"mp-toutiao" : {
"usingComponents" : true
},
"uniStatistics" : {
"enable" : false
},
"vueVersion" : "3"
}

51
pages.json Normal file
View File

@@ -0,0 +1,51 @@
{
"pages": [
{
"path": "pages/index/index",
"style": {
"navigationBarTitleText": "首页"
}
},
{
"path": "pages/mine/mine",
"style": {
"navigationBarTitleText": "我的"
}
},
{
"path": "pages/login/login",
"style": {
"navigationBarTitleText": "登录",
"navigationStyle": "custom"
}
}
],
"globalStyle": {
"navigationBarTextStyle": "black",
"navigationBarTitleText": "qgdzs",
"navigationBarBackgroundColor": "#F8F8F8",
"backgroundColor": "#F8F8F8"
},
"tabBar": {
"color": "#7A7E83",
"selectedColor": "#667eea",
"borderStyle": "black",
"backgroundColor": "#ffffff",
"fontSize": "14px",
"list": [
{
"pagePath": "pages/index/index",
"iconPath": "",
"selectedIconPath": "",
"text": "首页"
},
{
"pagePath": "pages/mine/mine",
"iconPath": "",
"selectedIconPath": "",
"text": "我的"
}
]
},
"uniIdRouter": {}
}

296
pages/index/index.vue Normal file
View File

@@ -0,0 +1,296 @@
<template>
<view class="container">
<view v-if="question" class="question-card">
<view class="question-header">
<text class="question-title">题目</text>
</view>
<view class="question-content">
<text class="question-text">{{ question.question }}</text>
</view>
<view v-if="question.options" class="options-list">
<view
v-for="(option, index) in question.options"
:key="index"
class="option-item"
:class="{
'correct': answered && correctAnswer === String.fromCharCode(65 + index),
'wrong': answered && selectedAnswer === String.fromCharCode(65 + index) && correctAnswer !== String.fromCharCode(65 + index)
}"
@click="handleAnswer(option, index)"
>
<text class="option-text">{{ option }}</text>
</view>
</view>
<view v-if="answered && explanation" class="explanation">
<view class="explanation-title">解析</view>
<text class="explanation-text">{{ explanation }}</text>
</view>
<view class="action-buttons">
<button class="next-btn" @click="refreshQuestion">下一题</button>
</view>
</view>
<view v-else class="empty-state">
<text class="empty-text">暂无题目</text>
<button class="refresh-btn" @click="refreshQuestion">刷新</button>
</view>
</view>
</template>
<script>
import storage from '../../utils/storage.js'
import api from '../../utils/api.js'
export default {
data() {
return {
question: null,
answered: false,
correctAnswer: '',
selectedAnswer: '',
explanation: ''
}
},
onLoad() {
this.loadQuestion()
},
onShow() {
this.loadQuestion()
this.checkAnsweredQuestion()
},
methods: {
loadQuestion() {
const question = storage.getQuestion()
if (question) {
this.question = question
this.resetAnswer()
}
},
checkAnsweredQuestion() {
if (this.question && storage.isQuestionAnswered(this.question.sn)) {
this.refreshQuestion()
}
},
resetAnswer() {
this.answered = false
this.correctAnswer = ''
this.selectedAnswer = ''
this.explanation = ''
},
async handleAnswer(option, index) {
if (this.answered) return
const answer = String.fromCharCode(65 + index)
this.selectedAnswer = answer
try {
const res = await api.answerQuestion(this.question.sn, answer)
if (res.data) {
this.answered = true
this.correctAnswer = res.data.answer || answer
this.explanation = res.data.explanation || ''
storage.addAnsweredQuestion(this.question.sn)
if (this.correctAnswer === answer) {
uni.showToast({
title: '回答正确',
icon: 'success'
})
} else {
uni.showToast({
title: '回答错误',
icon: 'none'
})
}
}
} catch (error) {
console.error('提交答案失败:', error)
uni.showToast({
title: '提交失败',
icon: 'none'
})
}
},
async refreshQuestion() {
try {
const res = await api.getQuestion()
if (res.data) {
if (storage.isQuestionAnswered(res.data.sn)) {
this.refreshQuestion()
return
}
storage.setQuestion(res.data)
this.question = res.data
this.resetAnswer()
} else {
uni.showToast({
title: '暂无题目',
icon: 'none'
})
}
} catch (error) {
console.error('获取题目失败:', error)
uni.showToast({
title: '刷新失败',
icon: 'none'
})
}
}
}
}
</script>
<style scoped>
.container {
min-height: 100vh;
background: #f5f5f5;
padding: 40rpx;
}
.question-card {
background: #ffffff;
border-radius: 20rpx;
padding: 40rpx;
box-shadow: 0 4rpx 20rpx rgba(0, 0, 0, 0.08);
}
.question-header {
margin-bottom: 30rpx;
padding-bottom: 20rpx;
border-bottom: 2rpx solid #f0f0f0;
}
.question-title {
font-size: 32rpx;
font-weight: bold;
color: #333;
}
.question-content {
margin-bottom: 40rpx;
}
.question-text {
font-size: 30rpx;
color: #666;
line-height: 1.8;
}
.options-list {
margin-top: 30rpx;
}
.option-item {
display: flex;
align-items: center;
padding: 24rpx 30rpx;
margin-bottom: 20rpx;
background: #f8f9fa;
border-radius: 12rpx;
transition: all 0.3s;
}
.option-item:active {
background: #e9ecef;
}
.option-item.correct {
background: #d4edda;
border: 2rpx solid #28a745;
}
.option-item.wrong {
background: #f8d7da;
border: 2rpx solid #dc3545;
}
.option-label {
font-size: 28rpx;
font-weight: bold;
color: #667eea;
margin-right: 20rpx;
min-width: 40rpx;
}
.option-item.correct .option-label {
color: #28a745;
}
.option-item.wrong .option-label {
color: #dc3545;
}
.option-text {
font-size: 28rpx;
color: #333;
flex: 1;
}
.explanation {
margin-top: 40rpx;
padding: 30rpx;
background: #fff3cd;
border-radius: 12rpx;
border-left: 4rpx solid #ffc107;
}
.explanation-title {
font-size: 28rpx;
font-weight: bold;
color: #856404;
margin-bottom: 16rpx;
}
.explanation-text {
font-size: 28rpx;
color: #856404;
line-height: 1.8;
}
.action-buttons {
margin-top: 40rpx;
display: flex;
justify-content: center;
}
.next-btn {
width: 200rpx;
height: 70rpx;
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
color: #ffffff;
font-size: 28rpx;
border-radius: 35rpx;
border: none;
}
.empty-state {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
min-height: 60vh;
}
.empty-text {
font-size: 32rpx;
color: #999;
margin-bottom: 40rpx;
}
.refresh-btn {
width: 200rpx;
height: 70rpx;
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
color: #ffffff;
font-size: 28rpx;
border-radius: 35rpx;
border: none;
}
</style>

194
pages/login/login.vue Normal file
View File

@@ -0,0 +1,194 @@
<template>
<view class="login-container">
<view class="login-box">
<view class="title">欢迎登录</view>
<view class="form-item">
<view class="label">手机号</view>
<input
class="input"
type="number"
v-model="phone"
placeholder="请输入手机号"
maxlength="11"
/>
</view>
<view class="form-item">
<view class="label">验证码</view>
<input
class="input"
type="number"
v-model="code"
placeholder="请输入验证码"
maxlength="6"
/>
</view>
<button
class="login-btn"
:class="{ 'disabled': isLoading }"
:disabled="isLoading"
@click="handleLogin"
>
{{ isLoading ? '登录中...' : '登录' }}
</button>
</view>
</view>
</template>
<script>
import api from '../../utils/api.js'
import storage from '../../utils/storage.js'
export default {
data() {
return {
phone: '',
code: '',
isLoading: false
}
},
methods: {
async handleLogin() {
if (!this.phone) {
uni.showToast({
title: '请输入手机号',
icon: 'none'
})
return
}
if (!/^1[3-9]\d{9}$/.test(this.phone)) {
uni.showToast({
title: '手机号格式不正确',
icon: 'none'
})
return
}
if (!this.code) {
uni.showToast({
title: '请输入验证码',
icon: 'none'
})
return
}
this.isLoading = true
try {
const res = await api.login(this.phone, this.code)
if (res.data && res.data.accessToken) {
storage.setToken(res.data.accessToken)
const userInfo = {
...res.data,
phone: this.phone
}
storage.setUserInfo(userInfo)
try {
const questionRes = await api.getQuestion()
if (questionRes.data) {
storage.setQuestion(questionRes.data)
}
} catch (questionError) {
console.error('获取题目失败:', questionError)
}
uni.showToast({
title: '登录成功',
icon: 'success'
})
setTimeout(() => {
uni.switchTab({
url: '/pages/index/index'
})
}, 1500)
} else {
uni.showToast({
title: res.message || '登录失败',
icon: 'none'
})
}
} catch (error) {
console.error('登录失败:', error)
} finally {
this.isLoading = false
}
}
}
}
</script>
<style scoped>
.login-container {
min-height: 100vh;
display: flex;
align-items: center;
justify-content: center;
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
padding: 40rpx;
}
.login-box {
width: 100%;
max-width: 600rpx;
background: #ffffff;
border-radius: 20rpx;
padding: 60rpx 40rpx;
box-shadow: 0 10rpx 40rpx rgba(0, 0, 0, 0.1);
}
.title {
font-size: 48rpx;
font-weight: bold;
color: #333;
text-align: center;
margin-bottom: 60rpx;
}
.form-item {
margin-bottom: 40rpx;
}
.label {
font-size: 28rpx;
color: #666;
margin-bottom: 16rpx;
}
.input {
width: 100%;
height: 88rpx;
border: 2rpx solid #e0e0e0;
border-radius: 12rpx;
padding: 0 24rpx;
font-size: 32rpx;
box-sizing: border-box;
transition: all 0.3s;
}
.input:focus {
border-color: #667eea;
}
.login-btn {
width: 100%;
height: 88rpx;
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
color: #ffffff;
font-size: 32rpx;
border-radius: 12rpx;
border: none;
margin-top: 20rpx;
}
.login-btn.disabled {
opacity: 0.6;
}
</style>

139
pages/mine/mine.vue Normal file
View File

@@ -0,0 +1,139 @@
<template>
<view class="container">
<view class="user-info">
<view class="avatar">
<text class="avatar-text">{{ userInfo ? userInfo.name.charAt(0).toUpperCase() : 'U' }}</text>
</view>
<view class="info">
<text class="username">{{ userInfo ? userInfo.name : '未登录' }}</text>
</view>
</view>
<view class="menu-list">
<view class="menu-item" @click="handleLogout">
<text class="menu-text">退出登录</text>
<text class="arrow">></text>
</view>
</view>
</view>
</template>
<script>
import storage from '../../utils/storage.js'
export default {
data() {
return {
userInfo: null
}
},
onLoad() {
this.loadUserInfo()
},
onShow() {
this.loadUserInfo()
},
methods: {
loadUserInfo() {
const userInfo = storage.getUserInfo()
if (userInfo) {
this.userInfo = userInfo
}
},
handleLogout() {
uni.showModal({
title: '提示',
content: '确定要退出登录吗?',
success: (res) => {
if (res.confirm) {
storage.clearAll()
uni.reLaunch({
url: '/pages/login/login'
})
}
}
})
}
}
}
</script>
<style scoped>
.container {
min-height: 100vh;
background: #f5f5f5;
}
.user-info {
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
padding: 80rpx 40rpx;
display: flex;
align-items: center;
}
.avatar {
width: 120rpx;
height: 120rpx;
border-radius: 50%;
background: rgba(255, 255, 255, 0.3);
display: flex;
align-items: center;
justify-content: center;
margin-right: 30rpx;
}
.avatar-text {
font-size: 48rpx;
font-weight: bold;
color: #ffffff;
}
.info {
flex: 1;
display: flex;
flex-direction: column;
}
.username {
font-size: 36rpx;
font-weight: bold;
color: #ffffff;
margin-bottom: 10rpx;
}
.phone {
font-size: 28rpx;
color: rgba(255, 255, 255, 0.8);
}
.menu-list {
margin-top: 20rpx;
}
.menu-item {
background: #ffffff;
padding: 30rpx 40rpx;
display: flex;
align-items: center;
justify-content: space-between;
border-bottom: 1rpx solid #f0f0f0;
}
.menu-item:active {
background: #f8f9fa;
}
.menu-text {
font-size: 32rpx;
color: #333;
}
.arrow {
font-size: 32rpx;
color: #999;
}
</style>

BIN
static/logo.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.9 KiB

13
uni.promisify.adaptor.js Normal file
View File

@@ -0,0 +1,13 @@
uni.addInterceptor({
returnValue (res) {
if (!(!!res && (typeof res === "object" || typeof res === "function") && typeof res.then === "function")) {
return res;
}
return new Promise((resolve, reject) => {
res.then((res) => {
if (!res) return resolve(res)
return res[0] ? reject(res[0]) : resolve(res[1])
});
});
},
});

76
uni.scss Normal file
View File

@@ -0,0 +1,76 @@
/**
* 这里是uni-app内置的常用样式变量
*
* uni-app 官方扩展插件及插件市场https://ext.dcloud.net.cn上很多三方插件均使用了这些样式变量
* 如果你是插件开发者建议你使用scss预处理并在插件代码中直接使用这些变量无需 import 这个文件方便用户通过搭积木的方式开发整体风格一致的App
*
*/
/**
* 如果你是App开发者插件使用者你可以通过修改这些变量来定制自己的插件主题实现自定义主题功能
*
* 如果你的项目同样使用了scss预处理你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
*/
/* 颜色变量 */
/* 行为相关颜色 */
$uni-color-primary: #007aff;
$uni-color-success: #4cd964;
$uni-color-warning: #f0ad4e;
$uni-color-error: #dd524d;
/* 文字基本颜色 */
$uni-text-color:#333;//基本色
$uni-text-color-inverse:#fff;//反色
$uni-text-color-grey:#999;//辅助灰色,如加载更多的提示信息
$uni-text-color-placeholder: #808080;
$uni-text-color-disable:#c0c0c0;
/* 背景颜色 */
$uni-bg-color:#ffffff;
$uni-bg-color-grey:#f8f8f8;
$uni-bg-color-hover:#f1f1f1;//点击状态颜色
$uni-bg-color-mask:rgba(0, 0, 0, 0.4);//遮罩颜色
/* 边框颜色 */
$uni-border-color:#c8c7cc;
/* 尺寸变量 */
/* 文字尺寸 */
$uni-font-size-sm:12px;
$uni-font-size-base:14px;
$uni-font-size-lg:16px;
/* 图片尺寸 */
$uni-img-size-sm:20px;
$uni-img-size-base:26px;
$uni-img-size-lg:40px;
/* Border Radius */
$uni-border-radius-sm: 2px;
$uni-border-radius-base: 3px;
$uni-border-radius-lg: 6px;
$uni-border-radius-circle: 50%;
/* 水平间距 */
$uni-spacing-row-sm: 5px;
$uni-spacing-row-base: 10px;
$uni-spacing-row-lg: 15px;
/* 垂直间距 */
$uni-spacing-col-sm: 4px;
$uni-spacing-col-base: 8px;
$uni-spacing-col-lg: 12px;
/* 透明度 */
$uni-opacity-disabled: 0.3; // 组件禁用态的透明度
/* 文章场景相关 */
$uni-color-title: #2C405A; // 文章标题颜色
$uni-font-size-title:20px;
$uni-color-subtitle: #555555; // 二级标题颜色
$uni-font-size-subtitle:26px;
$uni-color-paragraph: #3F536E; // 文章段落颜色
$uni-font-size-paragraph:15px;

118
utils/api.js Normal file
View File

@@ -0,0 +1,118 @@
import config from '../config.js'
import storage from './storage.js'
const request = (options) => {
return new Promise((resolve, reject) => {
uni.request({
url: config.baseUrl + options.url,
method: options.method || 'GET',
data: options.data || {},
header: {
'Content-Type': 'application/json',
'Authorization': storage.getToken() ? `Bearer ${storage.getToken()}` : '',
...options.header
},
timeout: config.timeout,
success: (res) => {
const { statusCode, data } = res
if (statusCode === 200) {
if (data.code === 0 || data.success === true) {
resolve(data)
} else {
uni.showToast({
title: data.message || '请求失败',
icon: 'none'
})
reject(data)
}
} else if (statusCode === 401) {
storage.removeToken()
storage.removeUserInfo()
uni.reLaunch({
url: '/pages/login/login'
})
reject(res)
} else {
uni.showToast({
title: '网络错误',
icon: 'none'
})
reject(res)
}
},
fail: (err) => {
uni.showToast({
title: '网络连接失败',
icon: 'none'
})
reject(err)
}
})
})
}
const api = {
login(phone, code) {
return request({
url: config.api.login,
method: 'POST',
data: {
phone,
code
}
})
},
getQuestion() {
return request({
url: config.api.getQuestion,
method: 'POST'
})
},
answerQuestion(sn, answer) {
return request({
url: config.api.answerQuestion,
method: 'POST',
data: {
sn,
answer
}
})
},
get(url, data = {}) {
return request({
url,
method: 'GET',
data
})
},
post(url, data = {}) {
return request({
url,
method: 'POST',
data
})
},
put(url, data = {}) {
return request({
url,
method: 'PUT',
data
})
},
delete(url, data = {}) {
return request({
url,
method: 'DELETE',
data
})
}
}
export default api

69
utils/storage.js Normal file
View File

@@ -0,0 +1,69 @@
const TOKEN_KEY = 'access_token'
const USER_INFO_KEY = 'user_info'
const QUESTION_KEY = 'question'
const ANSWERED_QUESTIONS_KEY = 'answered_questions'
const storage = {
setToken(token) {
uni.setStorageSync(TOKEN_KEY, token)
},
getToken() {
return uni.getStorageSync(TOKEN_KEY) || ''
},
removeToken() {
uni.removeStorageSync(TOKEN_KEY)
},
setUserInfo(userInfo) {
uni.setStorageSync(USER_INFO_KEY, userInfo)
},
getUserInfo() {
return uni.getStorageSync(USER_INFO_KEY) || null
},
removeUserInfo() {
uni.removeStorageSync(USER_INFO_KEY)
},
setQuestion(question) {
uni.setStorageSync(QUESTION_KEY, question)
},
getQuestion() {
return uni.getStorageSync(QUESTION_KEY) || null
},
removeQuestion() {
uni.removeStorageSync(QUESTION_KEY)
},
addAnsweredQuestion(sn) {
const answeredQuestions = this.getAnsweredQuestions()
if (!answeredQuestions.includes(sn)) {
answeredQuestions.push(sn)
uni.setStorageSync(ANSWERED_QUESTIONS_KEY, answeredQuestions)
}
},
getAnsweredQuestions() {
return uni.getStorageSync(ANSWERED_QUESTIONS_KEY) || []
},
isQuestionAnswered(sn) {
const answeredQuestions = this.getAnsweredQuestions()
return answeredQuestions.includes(sn)
},
clearAnsweredQuestions() {
uni.removeStorageSync(ANSWERED_QUESTIONS_KEY)
},
clearAll() {
uni.clearStorageSync()
}
}
export default storage