preferences.vue 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461
  1. <template>
  2. <view class="preferences-page">
  3. <!-- 顶部进度条 -->
  4. <view class="progress-bar">
  5. <view class="progress-track">
  6. <view class="progress-fill" :style="'width:' + progressPercent + '%'"></view>
  7. </view>
  8. <view class="progress-labels">
  9. <text class="progress-label" :class="{ 'progress-label-active': currentStep >= 1 }">忌口·过敏</text>
  10. <text class="progress-label" :class="{ 'progress-label-active': currentStep >= 2 }">口味·偏好</text>
  11. <text class="progress-label" :class="{ 'progress-label-active': currentStep >= 3 }">健康目标</text>
  12. </view>
  13. </view>
  14. <!-- 步骤内容 -->
  15. <scroll-view class="content" scroll-y>
  16. <!-- ===== Step 1 忌口与过敏 ===== -->
  17. <view v-if="currentStep === 1">
  18. <view class="step-head">
  19. <text class="step-icon">🚫</text>
  20. <view class="step-head-text">
  21. <text class="step-title">哪些食物绝对不能碰?</text>
  22. <text class="step-sub">为了家人的安全,过敏原和忌口请务必填写</text>
  23. </view>
  24. </view>
  25. <view class="card">
  26. <text class="card-title">过敏原 *</text>
  27. <view class="chip-group">
  28. <view class="chip" v-for="(item, i) in presetAllergies" :key="i"
  29. :class="{ 'chip-active': allergies.indexOf(item) >= 0 }"
  30. @tap="toggleChip('allergies', item)">
  31. <text>{{ item }}</text>
  32. </view>
  33. </view>
  34. <view class="custom-row" v-if="customField === 'allergies'">
  35. <input class="custom-input" placeholder="输入其他过敏原" v-model="customInput"
  36. confirm-type="done" @confirm="addCustom" />
  37. <view class="custom-confirm" @tap="addCustom"><text>添加</text></view>
  38. </view>
  39. <view class="custom-add" v-else @tap="openCustom('allergies')">
  40. <text>+ 自定义添加</text>
  41. </view>
  42. </view>
  43. <view class="card">
  44. <text class="card-title">绝对忌口 *</text>
  45. <view class="chip-group">
  46. <view class="chip" v-for="(item, i) in presetAvoid" :key="i"
  47. :class="{ 'chip-active': absoluteAvoid.indexOf(item) >= 0 }"
  48. @tap="toggleChip('absoluteAvoid', item)">
  49. <text>{{ item }}</text>
  50. </view>
  51. </view>
  52. <view class="custom-row" v-if="customField === 'absoluteAvoid'">
  53. <input class="custom-input" placeholder="输入其他忌口" v-model="customInput"
  54. confirm-type="done" @confirm="addCustom" />
  55. <view class="custom-confirm" @tap="addCustom"><text>添加</text></view>
  56. </view>
  57. <view class="custom-add" v-else @tap="openCustom('absoluteAvoid')">
  58. <text>+ 自定义添加</text>
  59. </view>
  60. </view>
  61. <view class="card">
  62. <text class="card-title">宗教饮食</text>
  63. <view class="chip-group">
  64. <view class="chip" v-for="(opt, i) in religiousOptions" :key="i"
  65. :class="{ 'chip-active': religiousDiet === opt.value }"
  66. @tap="religiousDiet = opt.value">
  67. <text>{{ opt.label }}</text>
  68. </view>
  69. </view>
  70. </view>
  71. </view>
  72. <!-- /Step 1 -->
  73. <!-- ===== Step 2 口味与偏好(4 卡片完整代码) ===== -->
  74. <view v-if="currentStep === 2">
  75. <view class="step-head">
  76. <text class="step-icon">😋</text>
  77. <view class="step-head-text">
  78. <text class="step-title">口味和做法,说说看?</text>
  79. <text class="step-sub">选得越细,推荐食谱越合家人口味</text>
  80. </view>
  81. </view>
  82. <!-- 辣度 -->
  83. <view class="card">
  84. <text class="card-title">辣度偏好</text>
  85. <view class="slider-row">
  86. <text class="slider-label">不辣</text>
  87. <slider class="slider" min="0" max="5" :value="spiceLevel" @change="spiceLevel = $event.detail.value" show-value />
  88. <text class="slider-label">特辣</text>
  89. </view>
  90. <text class="spice-level-label">当前:{{ spiceLevelLabels[spiceLevel] }}</text>
  91. </view>
  92. <!-- 口味 -->
  93. <view class="card">
  94. <text class="card-title">口味偏好</text>
  95. <view class="chip-group">
  96. <view class="chip" v-for="(item, i) in presetFlavor" :key="i"
  97. :class="{ 'chip-active': flavorPref.indexOf(item) >= 0 }"
  98. @tap="toggleChip('flavorPref', item)">
  99. <text>{{ item }}</text>
  100. </view>
  101. </view>
  102. <view class="custom-row" v-if="customField === 'flavorPref'">
  103. <input class="custom-input" placeholder="输入其他口味" v-model="customInput"
  104. confirm-type="done" @confirm="addCustom" />
  105. <view class="custom-confirm" @tap="addCustom"><text>添加</text></view>
  106. </view>
  107. <view class="custom-add" v-else @tap="openCustom('flavorPref')">
  108. <text>+ 自定义添加</text>
  109. </view>
  110. </view>
  111. <!-- 菜系 -->
  112. <view class="card">
  113. <text class="card-title">菜系偏好</text>
  114. <view class="chip-group">
  115. <view class="chip" v-for="(item, i) in presetCuisine" :key="i"
  116. :class="{ 'chip-active': cuisinePref.indexOf(item) >= 0 }"
  117. @tap="toggleChip('cuisinePref', item)">
  118. <text>{{ item }}</text>
  119. </view>
  120. </view>
  121. <view class="custom-row" v-if="customField === 'cuisinePref'">
  122. <input class="custom-input" placeholder="输入其他菜系" v-model="customInput"
  123. confirm-type="done" @confirm="addCustom" />
  124. <view class="custom-confirm" @tap="addCustom"><text>添加</text></view>
  125. </view>
  126. <view class="custom-add" v-else @tap="openCustom('cuisinePref')">
  127. <text>+ 自定义添加</text>
  128. </view>
  129. </view>
  130. <!-- 烹饪方式 -->
  131. <view class="card">
  132. <text class="card-title">烹饪方式</text>
  133. <view class="chip-group">
  134. <view class="chip" v-for="(item, i) in presetCooking" :key="i"
  135. :class="{ 'chip-active': cookingMethods.indexOf(item) >= 0 }"
  136. @tap="toggleChip('cookingMethods', item)">
  137. <text>{{ item }}</text>
  138. </view>
  139. </view>
  140. <view class="custom-row" v-if="customField === 'cookingMethods'">
  141. <input class="custom-input" placeholder="输入其他做法" v-model="customInput"
  142. confirm-type="done" @confirm="addCustom" />
  143. <view class="custom-confirm" @tap="addCustom"><text>添加</text></view>
  144. </view>
  145. <view class="custom-add" v-else @tap="openCustom('cookingMethods')">
  146. <text>+ 自定义添加</text>
  147. </view>
  148. </view>
  149. </view>
  150. <!-- /Step 2 -->
  151. <!-- ===== Step 3 健康目标 ===== -->
  152. <view v-if="currentStep === 3">
  153. <view class="step-head">
  154. <text class="step-icon">🎯</text>
  155. <view class="step-head-text">
  156. <text class="step-title">想优先改善哪方面?</text>
  157. <text class="step-sub">没想好可以跳过,之后随时能改</text>
  158. </view>
  159. </view>
  160. <view class="card">
  161. <text class="card-title">必吃食物</text>
  162. <view class="chip-group">
  163. <view class="chip" v-for="(item, i) in presetMustEat" :key="i"
  164. :class="{ 'chip-active': mustEat.indexOf(item) >= 0 }"
  165. @tap="toggleChip('mustEat', item)">
  166. <text>{{ item }}</text>
  167. </view>
  168. </view>
  169. <view class="custom-row" v-if="customField === 'mustEat'">
  170. <input class="custom-input" placeholder="输入其他必吃" v-model="customInput"
  171. confirm-type="done" @confirm="addCustom" />
  172. <view class="custom-confirm" @tap="addCustom"><text>添加</text></view>
  173. </view>
  174. <view class="custom-add" v-else @tap="openCustom('mustEat')">
  175. <text>+ 自定义添加</text>
  176. </view>
  177. </view>
  178. <view class="card">
  179. <text class="card-title">健康目标</text>
  180. <view class="chip-group">
  181. <view class="chip" v-for="(item, i) in presetGoals" :key="i"
  182. :class="{ 'chip-active': healthGoals.indexOf(item) >= 0 }"
  183. @tap="toggleChip('healthGoals', item)">
  184. <text>{{ item }}</text>
  185. </view>
  186. </view>
  187. <view class="custom-row" v-if="customField === 'healthGoals'">
  188. <input class="custom-input" placeholder="输入其他目标" v-model="customInput"
  189. confirm-type="done" @confirm="addCustom" />
  190. <view class="custom-confirm" @tap="addCustom"><text>添加</text></view>
  191. </view>
  192. <view class="custom-add" v-else @tap="openCustom('healthGoals')">
  193. <text>+ 自定义添加</text>
  194. </view>
  195. </view>
  196. </view>
  197. <!-- /Step 3 -->
  198. </scroll-view>
  199. <!-- 底部按钮栏 -->
  200. <view class="footer-bar">
  201. <view class="footer-btn footer-btn-ghost" v-if="currentStep > 1" @tap="goPrev">
  202. <text>上一步</text>
  203. </view>
  204. <view class="footer-btn footer-btn-primary" @tap="goNext">
  205. <text>{{ submitting ? '提交中...' : (isLastStep ? '完成' : '下一步') }}</text>
  206. </view>
  207. </view>
  208. </view>
  209. </template>
  210. <script>
  211. import { getDietPreferences, saveDietPreferences } from '@/utils/api.js'
  212. // 预设选项(常量,非响应式)
  213. const PRESET_ALLERGIES = ['海鲜', '花生', '乳糖', '鸡蛋', '牛奶', '豆类', '麸质', '坚果', '芒果', '其他']
  214. const PRESET_AVOID = ['牛肉', '羊肉', '猪肉', '内脏', '油腻', '辛辣', '生冷', '腌制']
  215. const PRESET_FLAVOR = ['酸', '甜', '咸', '鲜', '苦', '清淡', '浓郁']
  216. const PRESET_CUISINE = ['川', '粤', '鲁', '淮扬', '日料', '西餐', '东南亚', '韩餐']
  217. const PRESET_COOKING = ['蒸', '煮', '炒', '烤', '炖', '凉拌', '煎', '炸']
  218. const PRESET_MUSTEAT = ['蔬菜', '水果', '粗粮', '鱼类', '鸡蛋', '豆制品', '菌菇']
  219. const PRESET_GOALS = ['减脂', '增肌', '控糖', '肠道调理', '增强免疫']
  220. export default {
  221. data() {
  222. return {
  223. familyMemberId: null,
  224. currentStep: 1,
  225. // 数据字段(与后端 DTO 对齐)
  226. allergies: [],
  227. absoluteAvoid: [],
  228. religiousDiet: 'none',
  229. spiceLevel: 0,
  230. flavorPref: [],
  231. cuisinePref: [],
  232. cookingMethods: [],
  233. healthGoals: [],
  234. mustEat: [],
  235. goalConfirmed: 0,
  236. // 自定义输入
  237. customInput: '',
  238. customField: null,
  239. // UI 状态
  240. submitting: false,
  241. spiceLevelLabels: ['不辣', '微辣', '中辣', '偏辣', '很辣', '特辣']
  242. }
  243. },
  244. computed: {
  245. // 预设选项映射(供模板 v-for)
  246. presetAllergies: function() { return PRESET_ALLERGIES },
  247. presetAvoid: function() { return PRESET_AVOID },
  248. presetFlavor: function() { return PRESET_FLAVOR },
  249. presetCuisine: function() { return PRESET_CUISINE },
  250. presetCooking: function() { return PRESET_COOKING },
  251. presetMustEat: function() { return PRESET_MUSTEAT },
  252. presetGoals: function() { return PRESET_GOALS },
  253. religiousOptions: function() {
  254. return [
  255. { value: 'none', label: '无限制' },
  256. { value: 'halal', label: '清真' },
  257. { value: 'vegetarian', label: '素食' },
  258. { value: 'vegan', label: '纯素' }
  259. ]
  260. },
  261. // 进度条百分比
  262. progressPercent: function() {
  263. return Math.round((this.currentStep / 3) * 100)
  264. },
  265. isLastStep: function() { return this.currentStep === 3 }
  266. },
  267. onLoad: function() {
  268. this.familyMemberId = uni.getStorageSync('currentChildId') || uni.getStorageSync('currentMemberId') || uni.getStorageSync('userId')
  269. this.loadPreferences()
  270. },
  271. methods: {
  272. loadPreferences: function() {
  273. var self = this
  274. getDietPreferences({ memberId: self.familyMemberId }).then(function(res) {
  275. if (res) {
  276. self.allergies = res.allergies || []
  277. self.absoluteAvoid = res.absoluteAvoid || []
  278. self.religiousDiet = res.religiousDiet || 'none'
  279. self.spiceLevel = res.spiceLevel || 0
  280. self.flavorPref = res.flavorPref || []
  281. self.cuisinePref = res.cuisinePref || []
  282. self.cookingMethods = res.cookingMethods || []
  283. self.healthGoals = res.healthGoals || []
  284. self.mustEat = res.mustEat || []
  285. self.goalConfirmed = res.goalConfirmed || 0
  286. }
  287. }).catch(function() {
  288. })
  289. },
  290. // ——— chip 选中态(模板用内联 indexOf,方法供 toggle 用) ———
  291. toggleChip: function(field, value) {
  292. var idx = this[field].indexOf(value)
  293. if (idx >= 0) {
  294. this[field].splice(idx, 1)
  295. } else {
  296. this[field].push(value)
  297. }
  298. },
  299. // ——— 自定义输入追加(@confirm 触发) ———
  300. openCustom: function(field) {
  301. this.customField = field
  302. this.customInput = ''
  303. },
  304. addCustom: function() {
  305. var value = (this.customInput || '').trim()
  306. if (!value) return
  307. if (this[this.customField].indexOf(value) < 0) {
  308. this[this.customField].push(value)
  309. }
  310. this.customInput = ''
  311. this.customField = null
  312. },
  313. // ——— 步骤导航 ———
  314. goNext: function() {
  315. if (this.currentStep === 1) {
  316. if (this.allergies.length === 0 && this.absoluteAvoid.length === 0) {
  317. uni.showToast({ title: '请至少填写一项过敏原或忌口', icon: 'none' })
  318. return
  319. }
  320. }
  321. if (this.currentStep < 3) {
  322. this.currentStep += 1
  323. } else {
  324. this.savePreferences()
  325. }
  326. },
  327. goPrev: function() {
  328. if (this.currentStep > 1) {
  329. this.currentStep -= 1
  330. }
  331. },
  332. // ——— 提交 ———
  333. savePreferences: function() {
  334. var self = this
  335. this.submitting = true
  336. saveDietPreferences({
  337. allergies: this.allergies,
  338. absoluteAvoid: this.absoluteAvoid,
  339. religiousDiet: this.religiousDiet,
  340. spiceLevel: this.spiceLevel,
  341. flavorPref: this.flavorPref,
  342. cuisinePref: this.cuisinePref,
  343. cookingMethods: this.cookingMethods,
  344. healthGoals: this.healthGoals,
  345. mustEat: this.mustEat,
  346. goalConfirmed: 1
  347. }).then(function(res) {
  348. self.submitting = false
  349. uni.showToast({ title: '保存成功', icon: 'success' })
  350. setTimeout(function() {
  351. uni.navigateBack()
  352. }, 1000)
  353. }).catch(function() {
  354. self.submitting = false
  355. uni.showToast({ title: '保存失败', icon: 'none' })
  356. })
  357. }
  358. }
  359. }
  360. </script>
  361. <style scoped>
  362. .preferences-page {
  363. min-height: 100vh;
  364. background: linear-gradient(180deg, #FFF7ED 0%, #FFF3E6 100%);
  365. display: flex;
  366. flex-direction: column;
  367. }
  368. /* ===== 进度条 ===== */
  369. .progress-bar { padding: 30rpx 32rpx 10rpx; }
  370. .progress-track {
  371. height: 12rpx; background: #FFE3C7; border-radius: 6rpx; overflow: hidden;
  372. }
  373. .progress-fill {
  374. height: 100%; background: linear-gradient(90deg, #FF8C42, #FFB366);
  375. border-radius: 6rpx; transition: width 0.3s ease;
  376. }
  377. .progress-labels { display: flex; justify-content: space-between; margin-top: 12rpx; }
  378. .progress-label { font-size: 22rpx; color: #C2A78A; flex: 1; text-align: center; }
  379. .progress-label-active { color: #FF8C42; font-weight: 600; }
  380. /* ===== 内容 ===== */
  381. .content { flex: 1; padding: 10rpx 32rpx 30rpx; box-sizing: border-box; }
  382. .step-head { display: flex; align-items: center; margin: 20rpx 0 24rpx; }
  383. .step-icon { font-size: 52rpx; margin-right: 20rpx; }
  384. .step-head-text { display: flex; flex-direction: column; }
  385. .step-title { font-size: 34rpx; font-weight: 700; color: #4A2E1A; }
  386. .step-sub { font-size: 24rpx; color: #A08B72; margin-top: 6rpx; }
  387. /* ===== 卡片 ===== */
  388. .card {
  389. background: #FFFFFF; border-radius: 24rpx; padding: 28rpx;
  390. margin-bottom: 24rpx; box-shadow: 0 4rpx 20rpx rgba(255, 140, 66, 0.08);
  391. }
  392. .card-title { font-size: 28rpx; font-weight: 600; color: #4A2E1A; margin-bottom: 20rpx; display: block; }
  393. /* ===== chip ===== */
  394. .chip-group { display: flex; flex-wrap: wrap; }
  395. .chip {
  396. padding: 14rpx 28rpx; border-radius: 999rpx; background: #F5F0EA;
  397. font-size: 26rpx; color: #6B5340; margin: 0 16rpx 16rpx 0;
  398. border: 2rpx solid transparent;
  399. }
  400. .chip-active {
  401. background: #FF8C42; color: #FFFFFF; font-weight: 600;
  402. border-color: #E8732A;
  403. }
  404. /* ===== 自定义添加 ===== */
  405. .custom-add {
  406. padding: 14rpx 0; font-size: 26rpx; color: #FF8C42; font-weight: 500;
  407. }
  408. .custom-row { display: flex; align-items: center; margin-top: 8rpx; margin-bottom: 12rpx; }
  409. .custom-input {
  410. flex: 1; border: 2rpx solid #FFD9B8; border-radius: 999rpx;
  411. padding: 14rpx 24rpx; font-size: 26rpx; background: #FFF9F2;
  412. }
  413. .custom-confirm {
  414. background: #FF8C42; color: #fff; font-size: 26rpx; font-weight: 600;
  415. padding: 14rpx 32rpx; border-radius: 999rpx; margin-left: 16rpx;
  416. }
  417. /* ===== 滑块 ===== */
  418. .slider-row { display: flex; align-items: center; }
  419. .slider-label { font-size: 24rpx; color: #A08B72; width: 72rpx; }
  420. .slider { flex: 1; }
  421. .spice-level-label { font-size: 24rpx; color: #FF8C42; text-align: center; margin-top: 8rpx; display: block; }
  422. /* ===== 底栏 ===== */
  423. .footer-bar {
  424. display: flex; padding: 20rpx 32rpx 30rpx; background: #FFFDF8;
  425. border-top: 2rpx solid #FFE9D4;
  426. }
  427. .footer-btn {
  428. flex: 1; text-align: center; padding: 24rpx 0; border-radius: 999rpx;
  429. font-size: 30rpx; font-weight: 600;
  430. }
  431. .footer-btn-ghost {
  432. background: #F5F0EA; color: #6B5340; margin-right: 20rpx;
  433. }
  434. .footer-btn-primary {
  435. background: linear-gradient(135deg, #FF8C42, #FFB366); color: #FFFFFF;
  436. }
  437. </style>