Compare commits
18 Commits
v1.0.21
...
e9036d2979
| Author | SHA1 | Date | |
|---|---|---|---|
| e9036d2979 | |||
| 4180eae944 | |||
| 4e4e1ca271 | |||
| 50bb3c45ed | |||
| db1b3baa60 | |||
| df7d51d888 | |||
| 462884a321 | |||
| 48354e634b | |||
| 8152278b86 | |||
| b38b38d0c8 | |||
| 07b81f57a6 | |||
| 1422c04b2c | |||
| 656dfabb29 | |||
| fe688096a4 | |||
| 31703af4f2 | |||
| 4023c789b1 | |||
| a9c6b03c67 | |||
| d8e8bcc9a0 |
@@ -9,6 +9,7 @@ import { APP_GUARD } from '@nestjs/core'
|
||||
import { JwtStrategy } from './common/strategies/jwt.strategy'
|
||||
import { JwtAuthGuard } from './common/guards/jwt-auth.guard'
|
||||
import { AiModule } from './modules/ai/ai.module'
|
||||
import { FeedbackModule } from './modules/feedback/feedback.module'
|
||||
import { UserModule } from './modules/user/user.module'
|
||||
import { InterviewModule } from './modules/interview/interview.module'
|
||||
import { ResumeModule } from './modules/resume/resume.module'
|
||||
@@ -47,6 +48,7 @@ const MONGODB_URI = process.env.MONGODB_URI || 'mongodb://localhost:27017/zhiyin
|
||||
}]),
|
||||
NestScheduleModule.forRoot(),
|
||||
UserModule,
|
||||
FeedbackModule,
|
||||
AiModule,
|
||||
InterviewModule,
|
||||
AnalyzeModule,
|
||||
|
||||
@@ -0,0 +1,31 @@
|
||||
import { Controller, Post, Get, Patch, Param, Body, Query, UseGuards, HttpException, HttpStatus } from '@nestjs/common'
|
||||
import { FeedbackService } from './feedback.service'
|
||||
import { JwtAuthGuard } from '../../common/guards/jwt-auth.guard'
|
||||
import { AdminGuard } from '../../common/guards/admin.guard'
|
||||
import { CurrentUser } from '../../common/decorators/current-user.decorator'
|
||||
|
||||
@Controller('feedback')
|
||||
export class FeedbackController {
|
||||
constructor(private service: FeedbackService) {}
|
||||
|
||||
@UseGuards(JwtAuthGuard)
|
||||
@Post()
|
||||
async create(@CurrentUser('userId') userId: string, @Body() body: { type?: string; content: string; contact?: string }) {
|
||||
if (!body.content || body.content.length < 2) {
|
||||
throw new HttpException('请填写反馈内容', HttpStatus.BAD_REQUEST)
|
||||
}
|
||||
return this.service.create({ userId, type: body.type || 'suggestion', content: body.content, contact: body.contact })
|
||||
}
|
||||
|
||||
@UseGuards(JwtAuthGuard, AdminGuard)
|
||||
@Get()
|
||||
async list(@Query('page') page?: string, @Query('limit') limit?: string) {
|
||||
return this.service.findAll(Number(page) || 1, Number(limit) || 20)
|
||||
}
|
||||
|
||||
@UseGuards(JwtAuthGuard, AdminGuard)
|
||||
@Patch(':id/resolve')
|
||||
async resolve(@Param('id') id: string) {
|
||||
return this.service.markResolved(id)
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,13 @@
|
||||
import { Module } from '@nestjs/common'
|
||||
import { MongooseModule } from '@nestjs/mongoose'
|
||||
import { FeedbackController } from './feedback.controller'
|
||||
import { FeedbackService } from './feedback.service'
|
||||
import { Feedback, FeedbackSchema } from './feedback.schema'
|
||||
|
||||
@Module({
|
||||
imports: [MongooseModule.forFeature([{ name: Feedback.name, schema: FeedbackSchema }])],
|
||||
controllers: [FeedbackController],
|
||||
providers: [FeedbackService],
|
||||
exports: [FeedbackService],
|
||||
})
|
||||
export class FeedbackModule {}
|
||||
@@ -0,0 +1,24 @@
|
||||
import { Prop, Schema, SchemaFactory } from '@nestjs/mongoose'
|
||||
import { Document, Types } from 'mongoose'
|
||||
|
||||
export type FeedbackDocument = Feedback & Document
|
||||
|
||||
@Schema({ timestamps: true })
|
||||
export class Feedback {
|
||||
@Prop({ type: Types.ObjectId, ref: 'User', required: true })
|
||||
userId: Types.ObjectId
|
||||
|
||||
@Prop({ default: 'suggestion' })
|
||||
type: string
|
||||
|
||||
@Prop({ required: true })
|
||||
content: string
|
||||
|
||||
@Prop({ default: '' })
|
||||
contact: string
|
||||
|
||||
@Prop({ default: 'pending' })
|
||||
status: string
|
||||
}
|
||||
|
||||
export const FeedbackSchema = SchemaFactory.createForClass(Feedback)
|
||||
@@ -0,0 +1,28 @@
|
||||
import { Injectable } from '@nestjs/common'
|
||||
import { InjectModel } from '@nestjs/mongoose'
|
||||
import { Model } from 'mongoose'
|
||||
import { Feedback } from './feedback.schema'
|
||||
|
||||
@Injectable()
|
||||
export class FeedbackService {
|
||||
constructor(@InjectModel(Feedback.name) private model: Model<Feedback>) {}
|
||||
|
||||
async create(data: { userId: string; type: string; content: string; contact?: string }) {
|
||||
return this.model.create(data)
|
||||
}
|
||||
|
||||
async findAll(page = 1, limit = 20) {
|
||||
const skip = (page - 1) * limit
|
||||
const items = await this.model.find().sort({ createdAt: -1 }).skip(skip).limit(limit).lean()
|
||||
let populated: any[] = items
|
||||
try {
|
||||
populated = await this.model.populate(items, { path: 'userId', select: 'nickname phone email' })
|
||||
} catch {}
|
||||
const total = await this.model.countDocuments()
|
||||
return { items: populated, total, page, limit }
|
||||
}
|
||||
|
||||
async markResolved(id: string) {
|
||||
return this.model.findByIdAndUpdate(id, { status: 'resolved' }, { new: true })
|
||||
}
|
||||
}
|
||||
@@ -46,29 +46,61 @@ export class TtsController {
|
||||
const ext = file.originalname ? path.extname(file.originalname) || '.aac' : '.aac'
|
||||
const dest = path.join(uploadDir, file.filename + ext)
|
||||
fs.renameSync(file.path, dest)
|
||||
|
||||
// 拒绝损坏/空音频文件,避免 whisper 调用 ffmpeg 解码失败刷错误日志
|
||||
const stat = fs.statSync(dest)
|
||||
if (!stat.size || stat.size < 500) {
|
||||
this.logger.warn(`ASR: empty audio upload (size=${stat.size}), ext=${ext}`)
|
||||
try { fs.unlinkSync(dest) } catch {}
|
||||
return { text: '' }
|
||||
}
|
||||
|
||||
let wavPath = dest
|
||||
if (ext.toLowerCase() !== '.wav') {
|
||||
const potentialWav = dest.replace(/\.[^.]+$/, '.wav')
|
||||
try {
|
||||
execSync(`ffmpeg -y -i "${dest}" -ar 16000 -ac 1 -c:a pcm_s16le "${potentialWav}"`, {
|
||||
timeout: 30000, encoding: 'utf8', stdio: 'pipe',
|
||||
})
|
||||
wavPath = potentialWav
|
||||
} catch (e: any) {
|
||||
this.logger.warn(`FFmpeg conversion failed: ${e.message}, using original format`)
|
||||
}
|
||||
}
|
||||
|
||||
try {
|
||||
let text = ''
|
||||
if (process.env.OPENAI_API_KEY) {
|
||||
const result = execSync(
|
||||
`curl -s -X POST https://api.openai.com/v1/audio/transcriptions \
|
||||
-H "Authorization: Bearer ${process.env.OPENAI_API_KEY}" \
|
||||
-H "Content-Type: multipart/form-data" \
|
||||
-F "file=@${dest}" \
|
||||
-F "model=whisper-1" \
|
||||
-F "language=zh"`,
|
||||
{ encoding: 'utf8', timeout: 30000 },
|
||||
try {
|
||||
const result = execSync(
|
||||
`curl -s -X POST https://api.openai.com/v1/audio/transcriptions \
|
||||
-H "Authorization: Bearer ${process.env.OPENAI_API_KEY}" \
|
||||
-H "Content-Type: multipart/form-data" \
|
||||
-F "file=@${wavPath}" \
|
||||
-F "model=whisper-1" \
|
||||
-F "language=zh"`,
|
||||
{ encoding: 'utf8', timeout: 30000 },
|
||||
)
|
||||
const parsed = JSON.parse(result)
|
||||
if (parsed.text) text = parsed.text.trim()
|
||||
} catch (e: any) {
|
||||
this.logger.warn(`OpenAI ASR failed, falling back to local: ${e.message}`)
|
||||
}
|
||||
}
|
||||
if (!text) {
|
||||
const whisperResult = execSync(
|
||||
`python3 -c 'import sys, whisper; model = whisper.load_model("tiny"); print(model.transcribe(sys.argv[1], language="zh")["text"].strip())' "${wavPath}"`,
|
||||
{ encoding: 'utf8', timeout: 60000 },
|
||||
)
|
||||
const parsed = JSON.parse(result)
|
||||
if (parsed.text) return { text: parsed.text.trim() }
|
||||
}
|
||||
const whisperResult = execSync(`python3 -c 'import sys, whisper; model = whisper.load_model("tiny"); print(model.transcribe(sys.argv[1], language="zh")["text"].strip())' "${dest}"`, { encoding: 'utf8', timeout: 60000 })
|
||||
if (whisperResult && whisperResult.trim()) {
|
||||
return { text: whisperResult.trim() }
|
||||
if (whisperResult?.trim()) text = whisperResult.trim()
|
||||
}
|
||||
return { text }
|
||||
} catch (e: any) {
|
||||
this.logger.error(`ASR failed: ${e?.message || e}`)
|
||||
return { text: '' }
|
||||
} finally {
|
||||
try { if (dest) fs.unlinkSync(dest) } catch {}
|
||||
try { if (wavPath && wavPath !== dest) fs.unlinkSync(wavPath) } catch {}
|
||||
}
|
||||
// 清理临时文件
|
||||
try { fs.unlinkSync(dest) } catch {}
|
||||
return { text: '' }
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,7 +1,26 @@
|
||||
import { test, expect } from '@playwright/test'
|
||||
import * as fs from 'fs'
|
||||
import * as path from 'path'
|
||||
import * as jwt from 'jsonwebtoken'
|
||||
|
||||
const BASE = 'http://localhost:3006/api'
|
||||
|
||||
function getJwtSecret(): string {
|
||||
const envPath = path.resolve(__dirname, '..', '.env')
|
||||
const envContent = fs.readFileSync(envPath, 'utf8')
|
||||
const match = envContent.match(/^JWT_SECRET=(.+)$/m)
|
||||
return match ? match[1].trim() : 'test-jwt-secret-for-e2e-tests'
|
||||
}
|
||||
|
||||
function signToken(payload: object): string {
|
||||
return jwt.sign(payload, getJwtSecret(), { expiresIn: '1h' })
|
||||
}
|
||||
|
||||
const testUserId = '000000000000000000000001'
|
||||
const testAdminId = '000000000000000000000002'
|
||||
const userToken = signToken({ userId: testUserId, phone: '13800138000', role: 'user' })
|
||||
const adminToken = signToken({ userId: testAdminId, phone: '13800138001', role: 'admin' })
|
||||
|
||||
test.describe('Backend API (Playwright)', () => {
|
||||
test('GET /api/user/info returns 401 without token', async ({ request }) => {
|
||||
const res = await request.get(`${BASE}/user/info`)
|
||||
@@ -12,7 +31,7 @@ test.describe('Backend API (Playwright)', () => {
|
||||
const res = await request.post(`${BASE}/user/send-code`, {
|
||||
data: { phone: '13800138000' },
|
||||
})
|
||||
expect(res.status()).toBe(201)
|
||||
expect(res.status()).toBe(200)
|
||||
const body = await res.json()
|
||||
expect(body.message).toBe('验证码已发送')
|
||||
})
|
||||
@@ -45,4 +64,47 @@ test.describe('Backend API (Playwright)', () => {
|
||||
const res = await request.get(`${BASE}/admin/check`)
|
||||
expect(res.status()).toBe(401)
|
||||
})
|
||||
|
||||
// --- Feedback API ---
|
||||
|
||||
test('POST /api/feedback returns 401 without token', async ({ request }) => {
|
||||
const res = await request.post(`${BASE}/feedback`, {
|
||||
data: { type: 'suggestion', content: 'test feedback' },
|
||||
})
|
||||
expect(res.status()).toBe(401)
|
||||
})
|
||||
|
||||
test('POST /api/feedback returns 400 with empty content', async ({ request }) => {
|
||||
const res = await request.post(`${BASE}/feedback`, {
|
||||
data: { content: '' },
|
||||
headers: { Authorization: `Bearer ${userToken}` },
|
||||
})
|
||||
expect(res.status()).toBe(400)
|
||||
})
|
||||
|
||||
test('POST /api/feedback returns 201 with valid data', async ({ request }) => {
|
||||
const res = await request.post(`${BASE}/feedback`, {
|
||||
data: { type: 'bug', content: 'Playwright浏览器端测试提交的问题反馈', contact: 'test@test.com' },
|
||||
headers: { Authorization: `Bearer ${userToken}` },
|
||||
})
|
||||
expect(res.status()).toBe(201)
|
||||
})
|
||||
|
||||
test('GET /api/feedback returns 403 for non-admin', async ({ request }) => {
|
||||
const res = await request.get(`${BASE}/feedback`, {
|
||||
headers: { Authorization: `Bearer ${userToken}` },
|
||||
})
|
||||
expect(res.status()).toBe(403)
|
||||
})
|
||||
|
||||
test('GET /api/feedback returns 200 for admin', async ({ request }) => {
|
||||
const res = await request.get(`${BASE}/feedback`, {
|
||||
headers: { Authorization: `Bearer ${adminToken}` },
|
||||
})
|
||||
expect(res.status()).toBe(200)
|
||||
const body = await res.json()
|
||||
expect(body.items).toBeDefined()
|
||||
expect(Array.isArray(body.items)).toBe(true)
|
||||
expect(body.total).toBeGreaterThanOrEqual(0)
|
||||
})
|
||||
})
|
||||
|
||||
+3
-2
@@ -1,6 +1,6 @@
|
||||
# 职引 - 部署文档
|
||||
|
||||
> **最后更新**: 2026-07-04
|
||||
> **最后更新**: 2026-07-04 12:51
|
||||
> **生产环境**: 已部署(服务器已购 + 域名已配)
|
||||
|
||||
## 目录
|
||||
@@ -227,7 +227,7 @@ node scripts/upload-mp.js
|
||||
```
|
||||
|
||||
### 版本号
|
||||
当前线上版本:**1.0.21**(git tag v1.0.20,脚本自动末位自增 → 上传版本 1.0.21)
|
||||
当前线上版本:**1.0.22**(小程序上传版本,git tag v1.0.21 + 脚本末位自增 1)
|
||||
|
||||
---
|
||||
|
||||
@@ -256,3 +256,4 @@ node scripts/upload-mp.js
|
||||
| 2026-06-21 | 更新部署版本至 v1.0.16;小程序上传工具使用 git tag 自动获取版本号 | 小之 |
|
||||
| 2026-06-21 | v4.8 SEO + 分享全面优化:部署新增 robots.txt、sitemap.xml、static/ 目录;版本号自动注入(Vite define);13 页面微信分享全部开启;上传脚本版本号末位自增 1 | AI |
|
||||
| 2026-07-04 | v4.10 引力值变动记录系统 + 前端 401/错误处理完善;v1.0.21 发布;H5 + 小程序全量部署 | AI |
|
||||
| 2026-07-04 | ASR 语音识别 AAC→WAV 转换修复 + share.vue 分享记录去重修复;后端 + H5 + 小程序 v1.0.22 部署 | AI |
|
||||
|
||||
@@ -226,6 +226,7 @@
|
||||
|
||||
| 日期 | 版本 | 变更内容 | 操作者 |
|
||||
|------|------|----------|--------|
|
||||
| 2026-07-04 | **v4.11** | **ASR 语音识别修复**(TTS controller AAC→WAV 转换,解决小程序录音格式不兼容 whisper);**分享记录去重**(share.vue loadData 有缓存时不再创建新分享);**引力值明细**后端部署;**用户端 401/错误处理**完善 | AI |
|
||||
| 2026-07-04 | **v4.10** | **引力值变动记录系统**:新建 GravityTransaction schema + 全量日志埋点(注册/面试消耗/购买/月度补给/迁移/套餐设置等);新增 `GET /user/gravity-transactions` 接口;用户端「引力值明细」弹窗(分页);前端 401/错误处理完善(checkAuth 全局检测);面试创建 201 状态码兼容 fix;AI 错误友好提示 | AI |
|
||||
| 2026-06-22 | **v4.9** | **Mongoose 8 兼容修复**(pre-save hook 回调→async);v1.0.17 tag 发布;测试账号 test@yzrcloud.cn 重建 | AI |
|
||||
| 2026-06-21 | **v4.8** | **SEO 全量优化**(canonical URL、robots.txt、sitemap.xml、结构化数据);**微信分享全面开启**(13 个页面 onShareAppMessage + onShareTimeline);**版本号自动注入**(Vite define __APP_VERSION__);**导航栏/Tab标题关键词优化**;manifest 描述更新;页面描述统一增强 | AI |
|
||||
|
||||
@@ -16,6 +16,17 @@
|
||||
"urlCheck": false,
|
||||
"__usePrivacyCheck__": true
|
||||
},
|
||||
"usingComponents": true
|
||||
"usingComponents": true,
|
||||
"plugins": {
|
||||
"WechatSI": {
|
||||
"version": "0.3.6",
|
||||
"provider": "wx069ba97219f66d99"
|
||||
}
|
||||
},
|
||||
"permission": {
|
||||
"scope.record": {
|
||||
"desc": "用于语音输入回答面试问题"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -19,7 +19,8 @@
|
||||
{ "path": "pages/privacy/privacy", "style": { "navigationBarTitleText": "隐私政策" } },
|
||||
{ "path": "pages/share/share", "style": { "navigationBarTitleText": "我的分享" } },
|
||||
{ "path": "pages/review/review", "style": { "navigationBarTitleText": "面试复盘分析" } },
|
||||
{ "path": "pages/career/career", "style": { "navigationBarTitleText": "AI择业顾问" } }
|
||||
{ "path": "pages/career/career", "style": { "navigationBarTitleText": "AI择业顾问" } },
|
||||
{ "path": "pages/feedback/feedback", "style": { "navigationBarTitleText": "意见反馈" } }
|
||||
],
|
||||
"tabBar": {
|
||||
"color": "#999999",
|
||||
|
||||
@@ -0,0 +1,113 @@
|
||||
<template>
|
||||
<view class="page">
|
||||
<view class="form-card">
|
||||
<text class="section-title">反馈类型</text>
|
||||
<view class="type-row">
|
||||
<view class="type-option" :class="{ active: type === 'bug' }" @click="type = 'bug'">
|
||||
<text class="type-icon">🐛</text>
|
||||
<text class="type-label">问题反馈</text>
|
||||
</view>
|
||||
<view class="type-option" :class="{ active: type === 'suggestion' }" @click="type = 'suggestion'">
|
||||
<text class="type-icon">💡</text>
|
||||
<text class="type-label">改进建议</text>
|
||||
</view>
|
||||
<view class="type-option" :class="{ active: type === 'praise' }" @click="type = 'praise'">
|
||||
<text class="type-icon">👍</text>
|
||||
<text class="type-label">点赞鼓励</text>
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
|
||||
<view class="form-card">
|
||||
<text class="section-title">反馈内容 <text class="required">*</text></text>
|
||||
<textarea class="content-input" v-model="content" placeholder="请详细描述您的问题或建议,这将帮助我们持续改进产品..." :maxlength="1000" :auto-height="true" />
|
||||
<text class="char-count">{{ content.length }}/1000</text>
|
||||
</view>
|
||||
|
||||
<view class="form-card">
|
||||
<text class="section-title">联系方式(选填)</text>
|
||||
<input class="contact-input" v-model="contact" placeholder="手机号或微信号,方便我们联系您" />
|
||||
</view>
|
||||
|
||||
<button class="submit-btn" :class="{ disabled: !content.trim() || submitting }" @click="submitFeedback" :disabled="submitting">
|
||||
{{ submitting ? '提交中...' : '提交反馈' }}
|
||||
</button>
|
||||
|
||||
<view class="toast-success" v-if="submitted">
|
||||
<text class="toast-icon">✅</text>
|
||||
<text class="toast-text">感谢您的反馈!我们会认真处理。</text>
|
||||
</view>
|
||||
</view>
|
||||
</template>
|
||||
|
||||
<script setup>
|
||||
import { ref } from 'vue'
|
||||
import { api } from '../../config'
|
||||
|
||||
const type = ref('suggestion')
|
||||
const content = ref('')
|
||||
const contact = ref('')
|
||||
const submitting = ref(false)
|
||||
const submitted = ref(false)
|
||||
|
||||
const submitFeedback = async () => {
|
||||
if (!content.value.trim() || submitting.value) return
|
||||
submitting.value = true
|
||||
try {
|
||||
const token = uni.getStorageSync('token')
|
||||
const res = await uni.request({
|
||||
url: api('/feedback'),
|
||||
method: 'POST',
|
||||
header: { 'Authorization': `Bearer ${token}`, 'Content-Type': 'application/json' },
|
||||
data: { type: type.value, content: content.value.trim(), contact: contact.value.trim() },
|
||||
})
|
||||
if (res.statusCode >= 200 && res.statusCode < 300) {
|
||||
submitted.value = true
|
||||
} else {
|
||||
uni.showToast({ title: res.data?.message || '提交失败', icon: 'none' })
|
||||
}
|
||||
} catch {
|
||||
uni.showToast({ title: '提交失败,请重试', icon: 'none' })
|
||||
} finally {
|
||||
submitting.value = false
|
||||
}
|
||||
}
|
||||
|
||||
// #ifdef MP-WEIXIN
|
||||
import { onShareAppMessage, onShareTimeline } from '@dcloudio/uni-app'
|
||||
onShareAppMessage(() => ({ title: '意见反馈 - 职引', path: '/pages/feedback/feedback' }))
|
||||
onShareTimeline(() => ({ title: '意见反馈 - 职引' }))
|
||||
// #endif
|
||||
</script>
|
||||
|
||||
<style scoped>
|
||||
.page { background: var(--color-bg); min-height: 100vh; padding: 32rpx; }
|
||||
.form-card { background: #FFF; border-radius: var(--radius-lg); padding: 28rpx 32rpx; margin-bottom: 20rpx; }
|
||||
.section-title { font-size: 26rpx; font-weight: 600; color: var(--color-text); display: block; margin-bottom: 20rpx; }
|
||||
.required { color: #EF4444; }
|
||||
.type-row { display: flex; gap: 16rpx; }
|
||||
.type-option {
|
||||
flex: 1; display: flex; flex-direction: column; align-items: center; gap: 8rpx;
|
||||
padding: 20rpx 12rpx; border-radius: var(--radius-md); border: 2rpx solid var(--color-border);
|
||||
transition: all 0.2s;
|
||||
}
|
||||
.type-option.active { border-color: var(--color-primary); background: #EEF2FF; }
|
||||
.type-icon { font-size: 36rpx; }
|
||||
.type-label { font-size: 22rpx; color: var(--color-text-secondary); }
|
||||
.type-option.active .type-label { color: var(--color-primary); font-weight: 600; }
|
||||
.content-input { width: 100%; font-size: 26rpx; color: var(--color-text); line-height: 1.7; min-height: 200rpx; padding: 0; }
|
||||
.char-count { text-align: right; font-size: 20rpx; color: var(--color-text-tertiary); margin-top: 8rpx; }
|
||||
.contact-input { width: 100%; font-size: 26rpx; color: var(--color-text); padding: 8rpx 0; }
|
||||
.submit-btn {
|
||||
width: 100%; height: 88rpx; line-height: 88rpx;
|
||||
background: linear-gradient(135deg, var(--color-gradient-start), var(--color-gradient-mid));
|
||||
color: #FFF; border-radius: var(--radius-md); font-size: 28rpx; font-weight: 600; border: none;
|
||||
}
|
||||
.submit-btn.disabled { background: var(--color-border); }
|
||||
.toast-success {
|
||||
margin-top: 32rpx; background: #ECFDF5; border-radius: var(--radius-md);
|
||||
padding: 24rpx; display: flex; align-items: center; gap: 12rpx;
|
||||
}
|
||||
.toast-icon { font-size: 32rpx; }
|
||||
.toast-text { font-size: 26rpx; color: #065F46; line-height: 1.5; }
|
||||
</style>
|
||||
@@ -38,9 +38,14 @@
|
||||
<!-- Chat area (both modes) -->
|
||||
<scroll-view class="chat-area" scroll-y :scroll-into-view="scrollToId" :scroll-with-animation="true" :class="{ 'chat-compact': avatarMode }">
|
||||
<view v-for="(msg, idx) in messages" :key="idx" :id="'msg-' + idx" class="msg-row" :class="msg.role">
|
||||
<view class="msg-bubble" :class="msg.role">
|
||||
<text>{{ msg.content }}</text>
|
||||
<view v-if="msg.role === 'ai'" class="msg-avatar ai-avatar">🤖</view>
|
||||
<view class="msg-body">
|
||||
<view class="msg-label">{{ msg.role === 'ai' ? '面试官' : '我' }}</view>
|
||||
<view class="msg-bubble" :class="msg.role">
|
||||
<text>{{ msg.content }}</text>
|
||||
</view>
|
||||
</view>
|
||||
<view v-if="msg.role === 'user'" class="msg-avatar user-avatar">👤</view>
|
||||
</view>
|
||||
|
||||
<view class="msg-row ai" v-if="aiLoading">
|
||||
@@ -55,14 +60,18 @@
|
||||
</scroll-view>
|
||||
|
||||
<view class="input-bar" v-if="!isComplete">
|
||||
<view class="mic-btn" :class="{ recording: isRecording }" @touchstart="startRecord" @touchend="stopRecord" @touchcancel="stopRecord" @mousedown="startRecord" @mouseup="stopRecord" @mouseleave="stopRecord">
|
||||
<text class="mic-icon">🎤</text>
|
||||
<view class="mic-wrap">
|
||||
<view class="mic-btn" :class="{ recording: isRecording }" @click="toggleRecord">
|
||||
<text class="mic-icon">{{ isRecording ? '🔴' : '🎤' }}</text>
|
||||
<text class="mic-label" v-if="isRecording">{{ recordingDuration }}s</text>
|
||||
</view>
|
||||
<text class="mic-hint" v-if="isRecording">点击结束</text>
|
||||
</view>
|
||||
<view class="input-box">
|
||||
<textarea class="input-area" v-model="inputText" placeholder="输入你的回答..." :auto-height="true" :maxlength="2000" :disabled="aiLoading" @confirm="sendAnswer" />
|
||||
<textarea class="input-area" v-model="inputText" placeholder="点击🎤开始录音或输入回答..." :auto-height="true" :maxlength="2000" :disabled="aiLoading || isRecording" @confirm="sendAnswer" />
|
||||
</view>
|
||||
<view class="send-btn" :class="{ disabled: (!inputText.trim() && !isRecording) || aiLoading }" @click="sendAnswer">
|
||||
<text class="send-icon">{{ isRecording ? '◉' : '➤' }}</text>
|
||||
<view class="send-btn" :class="{ disabled: !inputText.trim() || isRecording || aiLoading }" @click="sendAnswer">
|
||||
<text class="send-icon">➤</text>
|
||||
</view>
|
||||
</view>
|
||||
|
||||
@@ -146,11 +155,59 @@ const aiAmplitudeData = ref([])
|
||||
const isSpeaking = ref(false)
|
||||
const dhRef = ref(null)
|
||||
const isRecording = ref(false)
|
||||
let recorder = null
|
||||
const recordingDuration = ref(0)
|
||||
let manager = null
|
||||
let recordTimer = null
|
||||
|
||||
|
||||
function initRecorder() {
|
||||
// #ifdef MP-WEIXIN
|
||||
if (manager) return
|
||||
try {
|
||||
const plugin = requirePlugin('WechatSI')
|
||||
manager = plugin.getRecordRecognitionManager()
|
||||
manager.onStart = () => {
|
||||
console.log('[WechatSI] start')
|
||||
isRecording.value = true
|
||||
inputText.value = ''
|
||||
recordingDuration.value = 0
|
||||
recordTimer = setInterval(() => { recordingDuration.value++ }, 1000)
|
||||
}
|
||||
manager.onRecognize = (res) => {
|
||||
if (res?.result?.trim()) inputText.value = res.result.trim()
|
||||
}
|
||||
manager.onStop = (res) => {
|
||||
isRecording.value = false
|
||||
recordingDuration.value = 0
|
||||
if (recordTimer) { clearInterval(recordTimer); recordTimer = null }
|
||||
const text = res?.result?.trim()
|
||||
if (text && text.length >= 2) {
|
||||
inputText.value = text
|
||||
sendAnswer()
|
||||
} else if (text && text.length === 1) {
|
||||
uni.showToast({ title: '语音过短,请重试', icon: 'none' })
|
||||
} else if (!text) {
|
||||
uni.showToast({ title: '未检测到语音,请重试', icon: 'none' })
|
||||
}
|
||||
}
|
||||
manager.onError = (res) => {
|
||||
console.error('[WechatSI] error:', JSON.stringify(res))
|
||||
isRecording.value = false
|
||||
recordingDuration.value = 0
|
||||
if (recordTimer) { clearInterval(recordTimer); recordTimer = null }
|
||||
const msg = res?.errMsg?.includes('permission') ? '请允许录音权限' : '语音识别失败,请重试'
|
||||
uni.showToast({ title: msg, icon: 'none' })
|
||||
manager = null
|
||||
}
|
||||
} catch (e) {
|
||||
console.error('WechatSI plugin init failed:', e)
|
||||
manager = null
|
||||
}
|
||||
// #endif
|
||||
}
|
||||
|
||||
let timerSeconds = 0
|
||||
let timerInterval = null
|
||||
|
||||
let MAX_QUESTIONS = 10
|
||||
const progressPercent = computed(() => Math.min((answeredCount.value / MAX_QUESTIONS) * 100, 100))
|
||||
const formatTime = computed(() => {
|
||||
@@ -163,7 +220,7 @@ onLoad((options) => {
|
||||
if (options?.position) {
|
||||
const pos = decodeURIComponent(options.position)
|
||||
position.value = pos
|
||||
messages.value = [{ role: 'ai', content: `你好!我是你的专属 ${pos} 面试官,准备好了就开始吧!` }]
|
||||
messages.value = [{ role: 'ai', content: `你好!我是你的专属 ${pos} 面试官。准备好后发送任意消息,我会立即开始面试并给出第一个问题。` }]
|
||||
}
|
||||
})
|
||||
|
||||
@@ -185,18 +242,15 @@ const loadPositions = async () => {
|
||||
const selectPosition = (pos) => {
|
||||
position.value = pos.name
|
||||
showPositionPicker.value = false
|
||||
messages.value = [{ role: 'ai', content: `你好!我是你的专属 ${pos.name} 面试官,准备好了就开始吧!` }]
|
||||
startInterview()
|
||||
messages.value = [{ role: 'ai', content: `你好!我是你的专属 ${pos.name} 面试官。准备好后发送任意消息,我会立即开始面试并给出第一个问题。` }]
|
||||
}
|
||||
|
||||
onMounted(() => {
|
||||
initRecorder()
|
||||
timerInterval = setInterval(() => timerSeconds++, 1000)
|
||||
if (!position.value) {
|
||||
// 未传入岗位,展示选择弹窗(无论是否登录)
|
||||
loadPositions()
|
||||
showPositionPicker.value = true
|
||||
} else if (token()) {
|
||||
startInterview()
|
||||
}
|
||||
})
|
||||
|
||||
@@ -226,9 +280,13 @@ const startInterview = async () => {
|
||||
})
|
||||
if (res.statusCode >= 200 && res.statusCode < 300 && res.data) {
|
||||
interviewId.value = res.data.id
|
||||
messages.value = res.data.messages || messages.value
|
||||
answeredCount.value = res.data.questionCount || 0
|
||||
if (res.data.totalQuestions) MAX_QUESTIONS = res.data.totalQuestions
|
||||
// 将后端返回的 AI 消息追加入对话,不替换已有消息(保留用户已发的准备消息)
|
||||
if (res.data.messages?.length) {
|
||||
const aiMsgs = res.data.messages.filter(m => m.role === 'ai')
|
||||
if (aiMsgs.length > 0) messages.value.push(...aiMsgs)
|
||||
}
|
||||
// Speak first question in avatar mode
|
||||
if (avatarMode.value && res.data.messages?.length) {
|
||||
const last = res.data.messages[res.data.messages.length - 1]
|
||||
@@ -255,14 +313,20 @@ const startInterview = async () => {
|
||||
}
|
||||
|
||||
const sendAnswer = async () => {
|
||||
if (!inputText.value.trim() || aiLoading.value || isComplete.value) return
|
||||
if (!inputText.value.trim() || aiLoading.value || isRecording.value || isComplete.value) return
|
||||
if (!token()) { checkLogin(); return }
|
||||
const answer = inputText.value.trim()
|
||||
|
||||
// 首次发送:不把用户消息当答案提交,而是先创建面试获取第一个问题
|
||||
if (!interviewId.value) {
|
||||
messages.value.push({ role: 'user', content: answer })
|
||||
inputText.value = ''
|
||||
scrollToBottom()
|
||||
await startInterview()
|
||||
if (!interviewId.value) return // creation failed, don't discard answer
|
||||
// startInterview 成功后已经把第一个问题追加到 messages 了
|
||||
return
|
||||
}
|
||||
|
||||
const answer = inputText.value.trim()
|
||||
messages.value.push({ role: 'user', content: answer })
|
||||
inputText.value = ''
|
||||
scrollToBottom()
|
||||
@@ -353,51 +417,28 @@ const confirmExit = () => {
|
||||
})
|
||||
}
|
||||
|
||||
function startRecord() {
|
||||
function toggleRecord() {
|
||||
if (aiLoading.value || isComplete.value) return
|
||||
// #ifdef MP-WEIXIN
|
||||
isRecording.value = true
|
||||
recorder = uni.getRecorderManager()
|
||||
recorder.onStart(() => {})
|
||||
recorder.onError(() => { isRecording.value = false; uni.showToast({ title: '录音失败', icon: 'none' }) })
|
||||
recorder.onStop(async (res) => {
|
||||
if (!res.tempFilePath) return
|
||||
const audioPath = res.tempFilePath
|
||||
try {
|
||||
const uploadRes = await uni.uploadFile({
|
||||
url: api(API_ENDPOINTS.TTS.ASR),
|
||||
filePath: audioPath,
|
||||
name: 'audio',
|
||||
header: { 'Authorization': `Bearer ${token()}` },
|
||||
})
|
||||
if (uploadRes.statusCode === 200 && uploadRes.data) {
|
||||
const data = typeof uploadRes.data === 'string' ? JSON.parse(uploadRes.data) : uploadRes.data
|
||||
if (data.text) {
|
||||
inputText.value = data.text
|
||||
uni.vibrateShort({ type: 'light' })
|
||||
return
|
||||
}
|
||||
} else if (checkAuth(uploadRes)) {
|
||||
return
|
||||
}
|
||||
} catch (e) {
|
||||
console.error('[ASR] upload error:', e?.message || e)
|
||||
if (!isRecording.value) {
|
||||
if (!manager) initRecorder()
|
||||
if (!manager) {
|
||||
uni.showToast({ title: '语音功能初始化失败', icon: 'none' })
|
||||
return
|
||||
}
|
||||
uni.showToast({ title: '语音识别失败,请手动输入', icon: 'none' })
|
||||
})
|
||||
recorder.start({ format: 'aac', sampleRate: 22050, numberOfChannels: 1, encodeBitRate: 16000 })
|
||||
uni.vibrateShort({ type: 'medium' })
|
||||
manager.start({ lang: 'zh_CN', duration: 60000 })
|
||||
uni.vibrateShort({ type: 'medium' })
|
||||
return
|
||||
}
|
||||
if (!manager) { isRecording.value = false; return }
|
||||
if (recordTimer) { clearInterval(recordTimer); recordTimer = null }
|
||||
recordingDuration.value = 0
|
||||
manager.stop()
|
||||
// #endif
|
||||
// #ifndef MP-WEIXIN
|
||||
uni.showToast({ title: '语音输入仅支持小程序', icon: 'none' })
|
||||
// #endif
|
||||
}
|
||||
|
||||
function stopRecord() {
|
||||
if (!recorder || !isRecording.value) return
|
||||
isRecording.value = false
|
||||
recorder.stop()
|
||||
}
|
||||
</script>
|
||||
|
||||
<style scoped>
|
||||
@@ -434,11 +475,20 @@ function stopRecord() {
|
||||
/* Chat */
|
||||
.chat-area { flex: 1; padding: 24rpx 20rpx; overflow-y: auto; }
|
||||
.chat-compact { max-height: 40vh; }
|
||||
.msg-row { display: flex; margin-bottom: 24rpx; }
|
||||
.msg-row { display: flex; margin-bottom: 32rpx; align-items: flex-start; gap: 12rpx; }
|
||||
.msg-row.ai { justify-content: flex-start; }
|
||||
.msg-row.user { justify-content: flex-end; }
|
||||
|
||||
.msg-bubble { max-width: 560rpx; padding: 20rpx 24rpx; line-height: 1.7; font-size: 26rpx; }
|
||||
.msg-avatar { width: 48rpx; height: 48rpx; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 24rpx; flex-shrink: 0; }
|
||||
.ai-avatar { background: #EEF2FF; }
|
||||
.user-avatar { background: #FEF3C7; }
|
||||
|
||||
.msg-body { max-width: 70%; display: flex; flex-direction: column; gap: 6rpx; }
|
||||
.msg-row.user .msg-body { align-items: flex-end; }
|
||||
|
||||
.msg-label { font-size: 20rpx; color: #9CA3AF; padding: 0 8rpx; }
|
||||
|
||||
.msg-bubble { padding: 20rpx 24rpx; line-height: 1.7; font-size: 26rpx; word-break: break-word; }
|
||||
.msg-bubble.ai {
|
||||
background: #FFFFFF; color: var(--color-text);
|
||||
border-radius: 0 var(--radius-lg) var(--radius-lg) var(--radius-lg);
|
||||
@@ -471,14 +521,18 @@ function stopRecord() {
|
||||
}
|
||||
.input-box { flex: 1; background: var(--color-bg); border-radius: var(--radius-md); padding: 12rpx 20rpx; }
|
||||
.input-area { width: 100%; font-size: 26rpx; color: var(--color-text); max-height: 160rpx; line-height: 1.5; }
|
||||
.mic-wrap { display: flex; flex-direction: column; align-items: center; gap: 4rpx; flex-shrink: 0; }
|
||||
.mic-btn {
|
||||
width: 64rpx; height: 64rpx; border-radius: 50%; background: #F3F4F6;
|
||||
display: flex; align-items: center; justify-content: center; flex-shrink: 0;
|
||||
transition: all 0.2s;
|
||||
width: 80rpx; height: 80rpx; border-radius: 50%; background: #F3F4F6;
|
||||
display: flex; flex-direction: column; align-items: center; justify-content: center;
|
||||
transition: all 0.2s; gap: 2rpx;
|
||||
}
|
||||
.mic-btn:active { transform: scale(0.9); }
|
||||
.mic-btn.recording { background: #FEE2E2; animation: mic-pulse 1s infinite; }
|
||||
.mic-icon { font-size: 28rpx; }
|
||||
.mic-icon { font-size: 28rpx; line-height: 1; }
|
||||
.mic-label { font-size: 16rpx; color: #9CA3AF; line-height: 1; }
|
||||
.mic-btn.recording .mic-label { color: #EF4444; font-weight: 600; }
|
||||
.mic-hint { font-size: 18rpx; color: #EF4444; font-weight: 500; line-height: 1; white-space: nowrap; }
|
||||
@keyframes mic-pulse {
|
||||
0%, 100% { box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.4); }
|
||||
50% { box-shadow: 0 0 0 16rpx rgba(239, 68, 68, 0); }
|
||||
|
||||
@@ -178,20 +178,22 @@ async function loadData() {
|
||||
if (!token) { uni.showToast({ title: '请先登录', icon: 'none' }); return }
|
||||
const header = { Authorization: `Bearer ${token}` }
|
||||
|
||||
// 先创建分享链接,缓存下来供复制使用
|
||||
try {
|
||||
const res = await uni.request({
|
||||
url: api('/share/create'), method: 'POST',
|
||||
data: { type: 'app', title: '我在AI磁场·职引练习面试', description: 'AI模拟面试+简历优化,快来一起提升吧' },
|
||||
header,
|
||||
})
|
||||
if (res.statusCode >= 200 && res.statusCode < 300) {
|
||||
const data = res.data?.data || res.data
|
||||
if (data.shareCode) {
|
||||
shareUrlCached.value = `https://zhiyinwx.yzrcloud.cn/api/share/${data.shareCode}`
|
||||
// 仅在无缓存分享链接时创建新分享记录
|
||||
if (!shareUrlCached.value) {
|
||||
try {
|
||||
const res = await uni.request({
|
||||
url: api('/share/create'), method: 'POST',
|
||||
data: { type: 'app', title: '我在AI磁场·职引练习面试', description: 'AI模拟面试+简历优化,快来一起提升吧' },
|
||||
header,
|
||||
})
|
||||
if (res.statusCode >= 200 && res.statusCode < 300) {
|
||||
const data = res.data?.data || res.data
|
||||
if (data.shareCode) {
|
||||
shareUrlCached.value = `https://zhiyinwx.yzrcloud.cn/api/share/${data.shareCode}`
|
||||
}
|
||||
}
|
||||
}
|
||||
} catch (e) { /* create share is best-effort */ }
|
||||
} catch (e) { /* create share is best-effort */ }
|
||||
}
|
||||
|
||||
try {
|
||||
const [statsRes, recordsRes, visitorsRes] = await Promise.all([
|
||||
|
||||
@@ -104,6 +104,11 @@
|
||||
</button>
|
||||
</view>
|
||||
<!-- #endif -->
|
||||
<view class="menu-item" @click="goFeedback">
|
||||
<view class="menu-icon-wrap wrap-gray"><text class="menu-icon">📝</text></view>
|
||||
<text class="menu-text">意见反馈</text>
|
||||
<text class="menu-arrow">›</text>
|
||||
</view>
|
||||
<view class="menu-item" @click="goAbout">
|
||||
<view class="menu-icon-wrap wrap-gray"><text class="menu-icon">ℹ️</text></view>
|
||||
<text class="menu-text">关于</text>
|
||||
@@ -172,9 +177,12 @@
|
||||
<text class="detail-item-desc">{{ tx.description }}</text>
|
||||
<text class="detail-item-time">{{ formatTime(tx.createdAt) }}</text>
|
||||
</view>
|
||||
<text :class="['detail-item-amount', tx.amount > 0 ? 'amount-positive' : 'amount-negative']">
|
||||
{{ tx.amount > 0 ? '+' : '' }}{{ tx.amount }}
|
||||
</text>
|
||||
<view class="detail-item-right">
|
||||
<text :class="['detail-item-amount', tx.amount > 0 ? 'amount-positive' : 'amount-negative']">
|
||||
{{ tx.amount > 0 ? '+' : '' }}{{ tx.amount }}
|
||||
</text>
|
||||
<text class="detail-item-balance">余额 {{ tx.balance }}</text>
|
||||
</view>
|
||||
</view>
|
||||
</scroll-view>
|
||||
<view v-if="gravityTxTotalPages > 1" class="detail-pagination">
|
||||
@@ -355,6 +363,7 @@ const goResume = () => uni.navigateTo({ url: '/pages/resume/resume' })
|
||||
const goSharePage = () => uni.navigateTo({ url: '/pages/share/share' })
|
||||
const goContributePage = () => uni.navigateTo({ url: '/pages/contribute/contribute' })
|
||||
const goAdmin = () => uni.navigateTo({ url: '/pages/admin/admin' })
|
||||
const goFeedback = () => uni.navigateTo({ url: '/pages/feedback/feedback' })
|
||||
const goAbout = () => uni.navigateTo({ url: '/pages/about/about' })
|
||||
|
||||
const doLogout = () => {
|
||||
@@ -472,7 +481,9 @@ const doLogout = () => {
|
||||
.detail-item-left { display: flex; flex-direction: column; gap: 4rpx; flex: 1; min-width: 0; }
|
||||
.detail-item-desc { font-size: 26rpx; color: var(--color-text); font-weight: 500; }
|
||||
.detail-item-time { font-size: 20rpx; color: #9CA3AF; }
|
||||
.detail-item-amount { font-size: 30rpx; font-weight: 700; flex-shrink: 0; margin-left: 16rpx; }
|
||||
.detail-item-amount { font-size: 30rpx; font-weight: 700; }
|
||||
.detail-item-right { display: flex; flex-direction: column; align-items: flex-end; gap: 4rpx; flex-shrink: 0; margin-left: 16rpx; }
|
||||
.detail-item-balance { font-size: 20rpx; color: #9CA3AF; font-weight: 400; }
|
||||
.amount-positive { color: #10B981; }
|
||||
.amount-negative { color: #EF4444; }
|
||||
.detail-pagination { display: flex; align-items: center; justify-content: center; gap: 24rpx; width: 100%; margin-top: 8rpx; }
|
||||
|
||||
Reference in New Issue
Block a user