exercise-checkin.vue 22 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537
  1. <template>
  2. <view class="page">
  3. <!-- 顶部导航栏 -->
  4. <view class="nav-bar">
  5. <view class="nav-left" @tap="goBack">
  6. <text class="nav-icon">‹</text>
  7. <text class="nav-title">运动打卡</text>
  8. </view>
  9. </view>
  10. <scroll-view class="content" scroll-y>
  11. <!-- 运动类型 -->
  12. <view class="card">
  13. <view class="card-header">
  14. <text class="card-icon">🏃</text>
  15. <text class="card-title">运动类型</text>
  16. </view>
  17. <view class="card-body">
  18. <view class="tag-row">
  19. <view class="tag-btn" v-for="t in exerciseTypes" :key="t.value"
  20. :class="form.exerciseType === t.value ? 'tag-active' : ''"
  21. @tap="form.exerciseType = t.value">
  22. <text>{{ t.label }}</text>
  23. </view>
  24. </view>
  25. </view>
  26. </view>
  27. <!-- 时长 & 强度 & 卡路里 -->
  28. <view class="card">
  29. <view class="card-header">
  30. <text class="card-icon">⏱️</text>
  31. <text class="card-title">运动详情</text>
  32. </view>
  33. <view class="card-body">
  34. <view class="form-group">
  35. <text class="form-label">时长(分钟)*</text>
  36. <input class="form-input" type="number" v-model="form.durationMinutes" placeholder="运动了多久?" />
  37. </view>
  38. <view class="form-group">
  39. <text class="form-label">强度</text>
  40. <view class="tag-row">
  41. <view class="tag-btn" v-for="s in intensityOptions" :key="s.value"
  42. :class="form.intensity === s.value ? 'tag-active' : ''"
  43. @tap="form.intensity = s.value">
  44. <text>{{ s.label }}</text>
  45. </view>
  46. </view>
  47. </view>
  48. <view class="form-group">
  49. <text class="form-label">消耗卡路里(选填)</text>
  50. <input class="form-input" type="number" v-model="form.caloriesBurned" placeholder="估算卡路里" />
  51. </view>
  52. <view class="form-group" v-if="isSelfCheckin">
  53. <text class="form-label">微信步数(选填)</text>
  54. <view class="step-sync-row">
  55. <input class="form-input step-input" type="number" v-model="form.stepCount" placeholder="手动填写步数" />
  56. <view class="sync-btn" :class="{'syncing': syncingSteps}" @tap="syncWechatSteps">
  57. <text>{{ syncingSteps ? '同步中…' : '同步微信步数' }}</text>
  58. </view>
  59. </view>
  60. <text class="step-hint" v-if="syncedStepText">{{ syncedStepText }}</text>
  61. </view>
  62. <view class="form-group">
  63. <text class="form-label">备注(选填)</text>
  64. <input class="form-input" v-model="form.remark" placeholder="运动感受..." />
  65. </view>
  66. </view>
  67. </view>
  68. <!-- 媒体工具栏 -->
  69. <view class="card">
  70. <view class="card-header">
  71. <text class="card-icon">📎</text>
  72. <text class="card-title">添加媒体</text>
  73. </view>
  74. <view class="card-body">
  75. <view class="media-toolbar">
  76. <view class="tool-btn" @tap="choosePhoto">
  77. <text class="tool-icon">📷</text>
  78. <text class="tool-label">照片</text>
  79. <text class="tool-count" v-if="form.photos.length > 0">{{ form.photos.length }}/9</text>
  80. </view>
  81. <view class="tool-divider"></view>
  82. <view class="tool-btn" @tap="toggleRecord">
  83. <text class="tool-icon">🎙</text>
  84. <text class="tool-label">{{ isRecording ? '录音中…' : (form.voicePath ? '已录制' : '录音') }}</text>
  85. <text class="tool-count" v-if="isRecording">{{ recordSeconds }}s</text>
  86. </view>
  87. </view>
  88. <!-- 照片缩略图 -->
  89. <view class="photo-strip" v-if="form.photos.length > 0">
  90. <view class="photo-item" v-for="(img, idx) in form.photos" :key="getItemKey(img, idx)" @tap="removePhoto(idx)">
  91. <image :src="img" mode="aspectFill" class="photo-img"/>
  92. <view class="photo-delete-overlay">
  93. <text class="delete-icon">×</text>
  94. </view>
  95. </view>
  96. </view>
  97. <!-- 录音状态 -->
  98. <view class="voice-strip" v-if="isRecording">
  99. <view class="waveform">
  100. <view class="wave-bar" v-for="n in 7" :key="n" :style="{animationDelay: (n * 0.1) + 's'}"></view>
  101. </view>
  102. <view class="voice-controls">
  103. <view class="mini-btn cancel-mini" @tap="cancelRecord"><text>取消</text></view>
  104. <view class="mini-btn done-mini" @tap="finishRecord"><text>完成</text></view>
  105. </view>
  106. </view>
  107. <view class="voice-strip" v-else-if="form.voicePath">
  108. <view class="voice-player">
  109. <text class="play-icon">▶</text>
  110. <text class="voice-duration">{{ recordDurationText }}</text>
  111. </view>
  112. <view class="delete-voice" @tap="deleteVoice"><text>×</text></view>
  113. </view>
  114. </view>
  115. </view>
  116. <!-- 提交按钮 -->
  117. <view class="submit-wrap">
  118. <view class="submit-btn" :class="{ 'submitting': submitting }" @tap="doCheckin">
  119. <text>{{ submitting ? '提交中...' : '✓ 完成打卡' }}</text>
  120. </view>
  121. </view>
  122. <!-- 历史记录 -->
  123. <view class="card" v-if="history.length > 0">
  124. <view class="card-header">
  125. <text class="card-icon">📜</text>
  126. <text class="card-title">近期记录</text>
  127. </view>
  128. <view class="card-body">
  129. <view class="history-list">
  130. <view class="history-item" v-for="item in history" :key="item.id">
  131. <view class="history-left">
  132. <text class="history-type">{{ exerciseTypeLabel(item.exerciseType) }}</text>
  133. <text class="history-content">{{ item.durationMinutes }}分钟{{ item.caloriesBurned ? ' · ' + item.caloriesBurned + '千卡' : '' }}{{ item.stepCount ? ' · ' + item.stepCount + '步' : '' }}</text>
  134. </view>
  135. <view class="history-right">
  136. <text class="history-date">{{ formatDate(item.createdAt) }}</text>
  137. </view>
  138. </view>
  139. </view>
  140. </view>
  141. </view>
  142. <!-- 底部留白 -->
  143. <view class="bottom-spacer"></view>
  144. </scroll-view>
  145. </view>
  146. </template>
  147. <script>
  148. import config from '../../config'
  149. import { parseDate } from '../../utils/format.js'
  150. import { sttTranscribe } from '../../utils/api.js'
  151. export default {
  152. data() {
  153. return {
  154. memberId: null,
  155. isSelfCheckin: false,
  156. submitting: false,
  157. syncingSteps: false,
  158. syncedStepText: '',
  159. isRecording: false,
  160. recordSeconds: 0,
  161. recordTimer: null,
  162. recorderManager: null,
  163. history: [],
  164. exerciseTypes: [
  165. { label: '跑步', value: 'running' },
  166. { label: '游泳', value: 'swimming' },
  167. { label: '跳绳', value: 'jump_rope' },
  168. { label: '球类', value: 'ball' },
  169. { label: '骑行', value: 'cycling' },
  170. { label: '体操', value: 'gymnastics' },
  171. { label: '其他', value: 'other' }
  172. ],
  173. intensityOptions: [
  174. { label: '低', value: 'low' },
  175. { label: '中', value: 'medium' },
  176. { label: '高', value: 'high' }
  177. ],
  178. form: {
  179. exerciseType: '',
  180. durationMinutes: '',
  181. intensity: 'medium',
  182. caloriesBurned: '',
  183. stepCount: '',
  184. remark: '',
  185. photos: [],
  186. voicePath: '',
  187. voiceText: '',
  188. voiceDuration: 0
  189. }
  190. }
  191. },
  192. computed: {
  193. recordDurationText: function() {
  194. if (!this.form.voicePath) return ''
  195. return '录音 ' + this.recordSeconds + '秒'
  196. }
  197. },
  198. onLoad: function() {
  199. var role = uni.getStorageSync('currentRole') || uni.getStorageSync('role') || 'parent'
  200. if (role !== 'child') {
  201. this.memberId = uni.getStorageSync('currentChildId') || uni.getStorageSync('currentMemberId') || uni.getStorageSync('userId') || null
  202. }
  203. this.isSelfCheckin = uni.getStorageSync('currentView') !== 'member'
  204. this.recorderManager = uni.getRecorderManager()
  205. this.recorderManager.onStart(() => {
  206. this.isRecording = true
  207. this.recordSeconds = 0
  208. this.recordTimer = setInterval(() => { this.recordSeconds++ }, 1000)
  209. })
  210. this.recorderManager.onStop((res) => {
  211. this.isRecording = false
  212. if (this.recordTimer) { clearInterval(this.recordTimer); this.recordTimer = null }
  213. this.form.voicePath = res.tempFilePath
  214. this.form.voiceDuration = res.duration
  215. var self = this
  216. uni.showLoading({ title: '语音识别中...', mask: true })
  217. sttTranscribe(res.tempFilePath).then(function(text) {
  218. self.form.voiceText = text
  219. uni.hideLoading()
  220. }).catch(function(err) {
  221. uni.hideLoading()
  222. console.warn('STT 转写失败:', err)
  223. })
  224. })
  225. this.recorderManager.onError(() => {
  226. this.isRecording = false
  227. if (this.recordTimer) { clearInterval(this.recordTimer); this.recordTimer = null }
  228. uni.showToast({ title: '录音失败', icon: 'none' })
  229. })
  230. this.loadHistory()
  231. },
  232. onUnload: function() {
  233. if (this.recordTimer) clearInterval(this.recordTimer)
  234. },
  235. methods: {
  236. goBack: function() { uni.navigateBack() },
  237. exerciseTypeLabel: function(type) {
  238. var m = { running: '跑步', swimming: '游泳', jump_rope: '跳绳', ball: '球类', cycling: '骑行', gymnastics: '体操', other: '其他' }
  239. return m[type] || type || '运动'
  240. },
  241. formatDate: function(dateStr) {
  242. if (!dateStr) return ''
  243. var d = parseDate(dateStr)
  244. if (!d) return dateStr
  245. var m2 = (d.getMonth() + 1).toString().padStart(2, '0')
  246. var day = d.getDate().toString().padStart(2, '0')
  247. return m2 + '-' + day
  248. },
  249. loadHistory: function() {
  250. var self = this
  251. var token = uni.getStorageSync('token')
  252. if (!token || !self.memberId) return
  253. uni.request({
  254. url: config.API_BASE_URL + '/api/health/exercise/list',
  255. method: 'POST',
  256. data: { memberId: self.memberId },
  257. header: { 'Content-Type': 'application/json', 'Authorization': 'Bearer ' + token },
  258. success: function(res) {
  259. if (res.data && res.data.code === 200 && res.data.data) {
  260. self.history = res.data.data.slice(0, 5)
  261. }
  262. }
  263. })
  264. },
  265. choosePhoto: function() {
  266. var self = this
  267. uni.chooseImage({
  268. count: 9 - self.form.photos.length,
  269. sizeType: ['compressed'],
  270. sourceType: ['album', 'camera'],
  271. success: function(res) {
  272. res.tempFilePaths.forEach(function(path) {
  273. if (self.form.photos.length < 9) self.form.photos.push(path)
  274. })
  275. }
  276. })
  277. },
  278. getPhotoKey: function(img, idx) {
  279. return img ? img : ('p' + idx)
  280. },
  281. removePhoto: function(idx) {
  282. this.form.photos.splice(idx, 1)
  283. },
  284. toggleRecord: function() {
  285. if (this.isRecording) {
  286. this.recorderManager.stop()
  287. } else {
  288. this.recorderManager.start({ duration: 60000, format: 'mp3' })
  289. }
  290. },
  291. cancelRecord: function() {
  292. this.recorderManager.stop()
  293. this.form.voicePath = ''
  294. },
  295. finishRecord: function() {
  296. this.recorderManager.stop()
  297. },
  298. deleteVoice: function() {
  299. this.form.voicePath = ''
  300. },
  301. syncWechatSteps: function() {
  302. var self = this
  303. if (self.syncingSteps) return
  304. wx.getSetting({
  305. success: function(res) {
  306. var setting = res.authSetting
  307. if (setting && setting['scope.werun'] === false) {
  308. uni.showModal({
  309. title: '需要授权',
  310. content: '请去设置中开启「微信运动」授权后重试',
  311. confirmText: '去设置',
  312. success: function(m) {
  313. if (m.confirm) uni.openSetting()
  314. }
  315. })
  316. return
  317. }
  318. self.doGetWeRunData()
  319. },
  320. fail: function() {
  321. self.doGetWeRunData()
  322. }
  323. })
  324. },
  325. doGetWeRunData: function() {
  326. var self = this
  327. self.syncingSteps = true
  328. wx.getWeRunData({
  329. success: function(res) {
  330. var token = uni.getStorageSync('token')
  331. uni.request({
  332. url: config.API_BASE_URL + '/api/health/exercise/sync-wechat-steps',
  333. method: 'POST',
  334. data: { encryptedData: res.encryptedData, iv: res.iv },
  335. header: { 'Content-Type': 'application/json', 'Authorization': 'Bearer ' + token },
  336. success: function(r) {
  337. self.syncingSteps = false
  338. if (r.data && r.data.code === 200 && r.data.data) {
  339. var step = r.data.data.stepCount
  340. self.form.stepCount = step
  341. self.syncedStepText = '已同步今日步数:' + step + ' 步'
  342. uni.showToast({ title: '同步成功', icon: 'success' })
  343. } else {
  344. var msg = (r.data && r.data.message) || '同步失败'
  345. uni.showToast({ title: msg, icon: 'none' })
  346. }
  347. },
  348. fail: function() {
  349. self.syncingSteps = false
  350. uni.showToast({ title: '网络错误', icon: 'none' })
  351. }
  352. })
  353. },
  354. fail: function(err) {
  355. self.syncingSteps = false
  356. var errMsg = err && err.errMsg || ''
  357. if (errMsg.indexOf('auth') >= 0 || errMsg.indexOf('denied') >= 0) {
  358. uni.showModal({
  359. title: '需要授权',
  360. content: '请在微信「设置-隐私-授权管理」中开启微信运动权限',
  361. confirmText: '去设置',
  362. success: function(m) {
  363. if (m.confirm) uni.openSetting()
  364. }
  365. })
  366. } else {
  367. uni.showToast({ title: '获取微信步数失败,请先开启微信运动', icon: 'none' })
  368. }
  369. }
  370. })
  371. },
  372. uploadFile: function(filePath) {
  373. var self = this
  374. return new Promise(function(resolve, reject) {
  375. uni.uploadFile({
  376. url: config.API_BASE_URL + '/api/media/upload',
  377. filePath: filePath,
  378. name: 'file',
  379. header: { 'Authorization': 'Bearer ' + uni.getStorageSync('token') },
  380. success: function(res) {
  381. try { var data = JSON.parse(res.data); resolve(data.data || data.url || '') }
  382. catch (e) { resolve(res.data || '') }
  383. },
  384. fail: function() { reject() }
  385. })
  386. })
  387. },
  388. async doCheckin() {
  389. var self = this
  390. if (!self.form.exerciseType) { uni.showToast({ title: '请选择运动类型', icon: 'none' }); return }
  391. var durationNum = parseInt(self.form.durationMinutes)
  392. if (!self.form.durationMinutes || isNaN(durationNum) || durationNum <= 0) { uni.showToast({ title: '请填写有效的运动时长', icon: 'none' }); return }
  393. if (!self.memberId) { uni.showToast({ title: '孩子ID无效', icon: 'none' }); return }
  394. self.submitting = true
  395. try {
  396. var photoUrls = []
  397. if (self.form.photos && self.form.photos.length > 0) {
  398. for (var i = 0; i < self.form.photos.length; i++) {
  399. try { var url = await self.uploadFile(self.form.photos[i]) } catch(e) { url = '' }
  400. if (url) photoUrls.push(url)
  401. }
  402. }
  403. var voiceUrl = ''
  404. if (self.form.voicePath) {
  405. try { voiceUrl = await self.uploadFile(self.form.voicePath) } catch(e) { voiceUrl = '' }
  406. }
  407. var token = uni.getStorageSync('token')
  408. uni.request({
  409. url: config.API_BASE_URL + '/api/health/exercise/create',
  410. method: 'POST',
  411. data: {
  412. memberId: self.memberId,
  413. exerciseType: self.form.exerciseType,
  414. durationMinutes: parseInt(self.form.durationMinutes),
  415. intensity: self.form.intensity,
  416. caloriesBurned: self.form.caloriesBurned ? parseInt(self.form.caloriesBurned) : null,
  417. remark: self.form.remark || '',
  418. photoUrls: photoUrls.join(','),
  419. voiceUrl: voiceUrl,
  420. voiceText: self.form.voiceText || '',
  421. stepCount: self.form.stepCount ? parseInt(self.form.stepCount) : null
  422. },
  423. header: { 'Content-Type': 'application/json', 'Authorization': 'Bearer ' + token },
  424. success: function(res) {
  425. if (res.data && res.data.code === 200) {
  426. uni.showToast({ title: '打卡成功', icon: 'success' })
  427. self.syncedStepText = ''
  428. setTimeout(function() {
  429. uni.navigateBack()
  430. }, 800)
  431. } else {
  432. uni.showToast({ title: (res.data && res.data.message) || '打卡失败', icon: 'none' })
  433. }
  434. },
  435. fail: function() {
  436. self.submitting = false
  437. uni.showToast({ title: '网络错误', icon: 'none' })
  438. }
  439. })
  440. } catch (e) {
  441. self.submitting = false
  442. uni.showToast({ title: '提交失败', icon: 'none' })
  443. }
  444. }
  445. }
  446. }
  447. </script>
  448. <style scoped>
  449. /* ===== 页面基础 ===== */
  450. .page { min-height: 100vh; background: #FFF7ED; }
  451. .nav-bar { height: 88rpx; padding: 24rpx 24rpx 0; display: flex; align-items: flex-end; }
  452. .nav-left { display: flex; align-items: center; gap: 10rpx; }
  453. .nav-icon { font-size: 48rpx; color: #333; line-height: 1; }
  454. .nav-title { font-size: 34rpx; font-weight: 600; color: #333; }
  455. .content { padding-bottom: 40rpx; }
  456. /* ===== 卡片通用 ===== */
  457. .card { margin: 16rpx 20rpx; background: #fff; border-radius: 20rpx; overflow: hidden; box-shadow: 0 4rpx 20rpx rgba(0,0,0,0.05); }
  458. .card-header { display: flex; align-items: center; gap: 10rpx; padding: 20rpx 24rpx 8rpx; border-bottom: 1rpx solid #f5f5f5; background: linear-gradient(90deg, #FFFAF0, #fff); }
  459. .card-icon { font-size: 32rpx; }
  460. .card-title { font-size: 30rpx; font-weight: 600; color: #333; }
  461. .card-body { padding: 20rpx 24rpx 24rpx; }
  462. /* ===== 表单 ===== */
  463. .form-group { margin-bottom: 20rpx; }
  464. .form-label { font-size: 26rpx; color: #333; font-weight: 500; margin-bottom: 10rpx; display: block; }
  465. .tag-row { display: flex; flex-wrap: wrap; gap: 10rpx; }
  466. .tag-btn { padding: 12rpx 24rpx; border-radius: 30rpx; border: 2rpx solid #e8e8e8; background: #fafafa; transition: all 0.2s ease; }
  467. .tag-active { border-color: #F97316; background: #FFF3E0; box-shadow: 0 4rpx 12rpx rgba(249,115,22,0.15); }
  468. .tag-btn text { font-size: 26rpx; color: #666; }
  469. .tag-active text { color: #F97316; font-weight: 600; }
  470. .form-input { width: 100%; height: 76rpx; border: 1rpx solid #e8e8e8; border-radius: 14rpx; padding: 0 16rpx; font-size: 26rpx; background: #FAFAFA; box-sizing: border-box; }
  471. .step-sync-row { display: flex; align-items: center; gap: 12rpx; }
  472. .step-input { flex: 1; }
  473. .sync-btn { padding: 12rpx 28rpx; border-radius: 30rpx; border: 2rpx solid #F97316; background: #FFF3E0; transition: all 0.2s ease; flex-shrink: 0; }
  474. .sync-btn text { font-size: 24rpx; color: #F97316; font-weight: 500; }
  475. .syncing { opacity: 0.5; }
  476. .step-hint { font-size: 22rpx; color: #10B981; margin-top: 6rpx; display: block; }
  477. /* ===== 媒体工具栏 ===== */
  478. .media-toolbar { display: flex; align-items: center; gap: 0; padding: 12rpx 0; }
  479. .tool-btn { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6rpx; padding: 16rpx 0; }
  480. .tool-icon { font-size: 42rpx; }
  481. .tool-label { font-size: 24rpx; color: #666; }
  482. .tool-count { font-size: 20rpx; color: #F97316; font-weight: 600; }
  483. .tool-divider { width: 1rpx; height: 56rpx; background: linear-gradient(180deg, transparent, #e8e8e8, transparent); }
  484. /* ===== 照片缩略图 ===== */
  485. .photo-strip { display: flex; flex-wrap: wrap; gap: 10rpx; padding: 12rpx 0 4rpx; }
  486. .photo-item { position: relative; width: 132rpx; height: 132rpx; border-radius: 12rpx; overflow: hidden; }
  487. .photo-img { width: 100%; height: 100%; object-fit: cover; }
  488. .photo-delete-overlay { position: absolute; top: -6rpx; right: -6rpx; width: 32rpx; height: 32rpx; background: #EF4444; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 2rpx 8rpx rgba(239,68,68,0.3); z-index: 2; }
  489. .delete-icon { color: #fff; font-size: 22rpx; font-weight: bold; line-height: 32rpx; }
  490. /* ===== 录音展开区 ===== */
  491. .voice-strip { display: flex; align-items: center; justify-content: space-between; padding: 12rpx 0 4rpx; gap: 16rpx; }
  492. .waveform { display: flex; align-items: center; gap: 5rpx; height: 40rpx; flex: 1; }
  493. .wave-bar { width: 5rpx; height: 8rpx; background: #F97316; border-radius: 3rpx; animation: wave-anim 0.8s ease-in-out infinite; }
  494. @keyframes wave-anim { 0%, 100% { height: 8rpx; } 50% { height: 32rpx; } }
  495. .voice-controls { display: flex; gap: 12rpx; }
  496. .mini-btn { padding: 10rpx 24rpx; border-radius: 22rpx; font-size: 24rpx; }
  497. .cancel-mini { background: #f0f0f0; color: #666; }
  498. .done-mini { background: #F97316; color: #fff; font-weight: 600; }
  499. .voice-player { display: flex; align-items: center; gap: 10rpx; flex: 1; background: #FFF3E0; padding: 10rpx 20rpx; border-radius: 28rpx; }
  500. .play-icon { font-size: 26rpx; color: #F97316; }
  501. .voice-duration { font-size: 24rpx; color: #666; }
  502. .delete-voice { width: 40rpx; height: 40rpx; display: flex; align-items: center; justify-content: center; color: #999; font-size: 28rpx; }
  503. /* ===== 提交按钮 ===== */
  504. .submit-wrap { padding: 24rpx 20rpx 32rpx; }
  505. .submit-btn { background: linear-gradient(135deg, #FF8C42, #F97316); color: #fff; text-align: center; padding: 22rpx 0; border-radius: 14rpx; font-size: 30rpx; font-weight: 600; box-shadow: 0 6rpx 20rpx rgba(249,115,22,0.3); transition: all 0.2s ease; }
  506. .submit-btn:active { transform: scale(0.98); }
  507. .submitting { opacity: 0.6; }
  508. /* ===== 历史记录 ===== */
  509. .history-list { display: flex; flex-direction: column; gap: 12rpx; }
  510. .history-item { display: flex; justify-content: space-between; align-items: center; padding: 14rpx 0; border-bottom: 1rpx solid #f5f5f5; }
  511. .history-left { flex: 1; min-width: 0; }
  512. .history-type { font-size: 26rpx; font-weight: 500; color: #333; display: block; }
  513. .history-content { font-size: 24rpx; color: #888; display: block; margin-top: 4rpx; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  514. .history-right { text-align: right; margin-left: 16rpx; flex-shrink: 0; }
  515. .history-date { font-size: 22rpx; color: #999; }
  516. /* ===== 底部留白 ===== */
  517. .bottom-spacer { height: 40rpx; }
  518. </style>