index.vue 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720
  1. <template>
  2. <view class="diet-page">
  3. <scroll-view class="content" scroll-y>
  4. <!-- ===== 今日餐桌主视觉 ===== -->
  5. <view class="dining-hero">
  6. <view class="hero-top">
  7. <view class="hero-icon-wrap"><text class="hero-icon">🍳</text></view>
  8. <view class="hero-text">
  9. <text class="hero-title">今日共餐</text>
  10. <text class="hero-subtitle">{{ heroSubtitle }}</text>
  11. </view>
  12. </view>
  13. <view class="hero-meals" v-if="hasMealConfig">
  14. <view class="hero-meal" v-for="m in heroMeals" :key="m.key">
  15. <text class="hero-meal-emoji">{{ m.emoji }}</text>
  16. <text class="hero-meal-label">{{ m.label }}</text>
  17. <text class="hero-meal-count">{{ m.count || '—' }}</text>
  18. </view>
  19. </view>
  20. <view class="hero-empty" v-else @tap="navTo('/pages/diet/meal-config')">
  21. <text class="hero-empty-text">还没设置共餐?点这里安排家人一起吃饭</text>
  22. <view class="hero-empty-btn">去设置共餐</view>
  23. </view>
  24. </view>
  25. <!-- 食材推荐器 -->
  26. <view class="card">
  27. <view class="card-header">
  28. <view class="card-basket-icon"><text class="card-basket-emoji">🧺</text></view>
  29. <text class="card-title">今日菜篮</text>
  30. </view>
  31. <view class="card-body">
  32. <view class="action-bar">
  33. <view class="action-btn" @tap="refreshIngredients">
  34. <text class="action-btn-text">🔄 换一批</text>
  35. </view>
  36. <view class="action-btn action-btn-primary" @tap="showFoodPicker">
  37. <text class="action-btn-text-primary">+ 添加食材</text>
  38. </view>
  39. <view class="action-btn action-btn-accent" @tap="generateRecipe" :class="{'action-btn-disabled': selectedIngredients.length === 0}">
  40. <text class="action-btn-text-accent">✨ 生成食谱</text>
  41. </view>
  42. </view>
  43. <view class="ingredient-list" v-if="ingredients.length > 0">
  44. <view class="ingredient-item" v-for="(item, index) in ingredients" :key="getIngredientKey(item, index)">
  45. <view class="ingredient-left">
  46. <view class="ingredient-badge">
  47. <text class="ingredient-badge-text">{{ index + 1 }}</text>
  48. </view>
  49. <view class="ingredient-info">
  50. <text class="ingredient-name">{{ item.name }}</text>
  51. <text class="ingredient-reason" v-if="item.reason">{{ item.reason }}</text>
  52. </view>
  53. </view>
  54. <view class="ingredient-remove" @tap="removeIngredient(index)">
  55. <text class="remove-text">✕</text>
  56. </view>
  57. </view>
  58. </view>
  59. <view class="empty-state" v-else>
  60. <text class="empty-icon">🥬</text>
  61. <text class="empty-text">{{ ingredientsLoading ? '加载中...' : '暂无推荐食材' }}</text>
  62. <text class="empty-sub" v-if="!ingredientsLoading">点击「添加食材」或「换一批」获取推荐</text>
  63. </view>
  64. </view>
  65. </view>
  66. <!-- 快捷入口 -->
  67. <view class="section-label">
  68. <text class="section-label-text">常用功能</text>
  69. </view>
  70. <view class="nav-grid">
  71. <view class="nav-item" @tap="navTo('/pages/diet/food-query')">
  72. <view class="nav-icon-wrap nav-icon-green">
  73. <text class="nav-icon">🥗</text>
  74. </view>
  75. <text class="nav-label">食材查询</text>
  76. </view>
  77. <view class="nav-item" @tap="navTo('/pages/diet/records')">
  78. <view class="nav-icon-wrap nav-icon-blue">
  79. <text class="nav-icon">📝</text>
  80. </view>
  81. <text class="nav-label">饮食记录</text>
  82. </view>
  83. <view class="nav-item" @tap="navTo('/pages/diet/preferences')">
  84. <view class="nav-icon-wrap nav-icon-orange">
  85. <text class="nav-icon">📋</text>
  86. </view>
  87. <text class="nav-label">调研表</text>
  88. </view>
  89. <view class="nav-item" @tap="navTo('/pages/diet/meal-config')">
  90. <view class="nav-icon-wrap nav-icon-purple">
  91. <text class="nav-icon">👨‍👩‍👧</text>
  92. </view>
  93. <text class="nav-label">共餐配置</text>
  94. </view>
  95. <view class="nav-item" @tap="navTo('/pages/diet/recommendation')">
  96. <view class="nav-icon-wrap nav-icon-red">
  97. <text class="nav-icon">🍽️</text>
  98. </view>
  99. <text class="nav-label">食谱推荐</text>
  100. </view>
  101. </view>
  102. <!-- 本周趋势 -->
  103. <view class="card" v-if="trendData.days > 0">
  104. <view class="card-header">
  105. <view class="card-dot"></view>
  106. <text class="card-title">本周饮食</text>
  107. </view>
  108. <view class="card-body">
  109. <view class="trend-row">
  110. <view class="trend-item">
  111. <text class="trend-num">{{ trendData.totalCalories || 0 }}</text>
  112. <text class="trend-unit">kcal</text>
  113. <text class="trend-label">总摄入</text>
  114. </view>
  115. <view class="trend-divider"></view>
  116. <view class="trend-item">
  117. <text class="trend-num">{{ trendData.days }}</text>
  118. <text class="trend-unit">天</text>
  119. <text class="trend-label">记录天数</text>
  120. </view>
  121. </view>
  122. </view>
  123. </view>
  124. <!-- 底部留白 -->
  125. <view class="bottom-space"></view>
  126. </scroll-view>
  127. <!-- 食材选择弹窗 -->
  128. <view class="modal" v-if="showPicker" @tap="closePicker">
  129. <view class="modal-mask"></view>
  130. <view class="modal-content" @tap.stop>
  131. <view class="modal-header">
  132. <text class="modal-title">选择食材</text>
  133. <view class="modal-close" @tap="closePicker">
  134. <text class="close-text">✕</text>
  135. </view>
  136. </view>
  137. <view class="search-wrap">
  138. <input class="search-input" placeholder="搜索食材..." placeholder-style="color:#bbb" v-model="searchQuery" @input="searchFood" />
  139. </view>
  140. <scroll-view class="food-list" scroll-y>
  141. <view class="food-item" v-for="food in searchResults" :key="food.id" @tap="addFood(food)">
  142. <text class="food-name">{{ food.name }}</text>
  143. <text class="food-tag">{{ food.category }}</text>
  144. </view>
  145. </scroll-view>
  146. <view class="empty-state" v-if="searchResults.length === 0 && searchQuery">
  147. <text class="empty-text">未找到匹配食材</text>
  148. </view>
  149. </view>
  150. </view>
  151. </view>
  152. </template>
  153. <script>
  154. import { getDietIngredients, refreshDietIngredients, addDietIngredient, removeDietIngredient, generateDietRecommendation, getMealConfig } from '@/utils/api.js'
  155. import { parseDate } from '@/utils/format.js'
  156. export default {
  157. data: function() {
  158. return {
  159. familyId: null,
  160. familyMemberId: null,
  161. ingredients: [],
  162. selectedIngredients: [],
  163. ingredientsLoading: false,
  164. mealSummary: {},
  165. trendData: {},
  166. showPicker: false,
  167. searchQuery: '',
  168. searchResults: [],
  169. uploadPromptShown: false
  170. }
  171. },
  172. computed: {
  173. heroSubtitle: function() {
  174. var self = this
  175. var parts = this.heroMeals.filter(function(m) { return m.count && m.count !== '' })
  176. var count = parts.length > 0 ? (parts[0].count || '') : ''
  177. return (self.isWeekend(new Date()) ? '周末' : '工作日') + ' · ' + (count ? count : '全家一起吃饭')
  178. },
  179. heroMeals: function() {
  180. var defs = [
  181. { key: 'breakfast', label: '早餐', emoji: '🌅' },
  182. { key: 'lunch', label: '午餐', emoji: '☀️' },
  183. { key: 'dinner', label: '晚餐', emoji: '🌙' }
  184. ]
  185. var self = this
  186. return defs.map(function(d) {
  187. return { key: d.key, label: d.label, emoji: d.emoji, count: self.mealSummary[d.key] || '' }
  188. })
  189. },
  190. hasMealConfig: function() {
  191. return !!(this.mealSummary.breakfast || this.mealSummary.lunch || this.mealSummary.dinner)
  192. }
  193. },
  194. onLoad: function() {
  195. this.familyId = uni.getStorageSync('familyId')
  196. this.familyMemberId = uni.getStorageSync('currentChildId') || uni.getStorageSync('currentMemberId') || uni.getStorageSync('userId')
  197. this.loadIngredients()
  198. this.loadMealSummary()
  199. },
  200. onShow: function() {
  201. // onLoad 已加载过,onShow 只刷新食材(共餐配置不重复请求)
  202. this.loadIngredients()
  203. },
  204. methods: {
  205. navTo: function(url) {
  206. uni.navigateTo({ url: url })
  207. },
  208. getIngredientKey: function(item, index) {
  209. return 'ing-' + (item.id || index)
  210. },
  211. loadIngredients: function() {
  212. var self = this
  213. self.ingredientsLoading = true
  214. getDietIngredients().then(function(res) {
  215. self.ingredientsLoading = false
  216. if (res && res.code === 200 && res.data && res.data.ingredients) {
  217. self.ingredients = res.data.ingredients
  218. if (self.ingredients.length === 0 && !self.uploadPromptShown) {
  219. self.uploadPromptShown = true
  220. uni.showModal({
  221. title: '暂无推荐食材',
  222. content: '还未上传菌群报告,无法生成个性化食材推荐。是否前往上传报告?',
  223. confirmText: '去上传',
  224. cancelText: '稍后',
  225. success: function(modalRes) {
  226. if (modalRes.confirm) {
  227. uni.navigateTo({ url: '/pages/health/report-upload' })
  228. }
  229. }
  230. })
  231. }
  232. }
  233. }).catch(function() {
  234. self.ingredientsLoading = false
  235. })
  236. },
  237. refreshIngredients: function() {
  238. var self = this
  239. self.ingredientsLoading = true
  240. refreshDietIngredients().then(function(res) {
  241. self.ingredientsLoading = false
  242. if (res && res.code === 200 && res.data && res.data.ingredients) {
  243. self.ingredients = res.data.ingredients
  244. }
  245. }).catch(function() {
  246. self.ingredientsLoading = false
  247. })
  248. },
  249. addIngredient: function(index) {
  250. var self = this
  251. var item = this.ingredients[index]
  252. addDietIngredient({ food_id: item.foodId, name: item.name }).then(function(res) {
  253. self.loadIngredients()
  254. })
  255. },
  256. removeIngredient: function(index) {
  257. var self = this
  258. var item = this.ingredients[index]
  259. removeDietIngredient({ food_id: item.foodId }).then(function(res) {
  260. self.loadIngredients()
  261. })
  262. },
  263. generateRecipe: function() {
  264. var self = this
  265. var foodIds = this.ingredients.map(function(item) { return { food_id: item.foodId, name: item.name } })
  266. generateDietRecommendation({
  267. date: self.formatDate(new Date()),
  268. meal_type: 'all',
  269. selected_foods: JSON.stringify(foodIds)
  270. }).then(function(res) {
  271. if (res && res.id) {
  272. uni.showToast({ title: '食谱生成成功', icon: 'success' })
  273. setTimeout(function() {
  274. self.navTo('/pages/diet/recommendation')
  275. }, 1000)
  276. }
  277. })
  278. },
  279. formatDate: function(date) {
  280. var d = parseDate(date)
  281. if (!d) return ''
  282. var m = (d.getMonth() + 1).toString()
  283. if (m.length < 2) m = '0' + m
  284. var day = d.getDate().toString()
  285. if (day.length < 2) day = '0' + day
  286. return d.getFullYear() + '-' + m + '-' + day
  287. },
  288. loadMealSummary: function() {
  289. var self = this
  290. var dateType = self.isWeekend(new Date()) ? 'weekend' : 'weekday'
  291. Promise.all([
  292. getMealConfig({ date_type: dateType, meal_type: 'breakfast' }),
  293. getMealConfig({ date_type: dateType, meal_type: 'lunch' }),
  294. getMealConfig({ date_type: dateType, meal_type: 'dinner' })
  295. ]).then(function(results) {
  296. self.mealSummary.breakfast = self.parseMembers(results[0])
  297. self.mealSummary.lunch = self.parseMembers(results[1])
  298. self.mealSummary.dinner = self.parseMembers(results[2])
  299. })
  300. },
  301. parseMembers: function(result) {
  302. if (!result || result.code !== 200 || !result.data) return ''
  303. var config = result.data
  304. if (!config || !config.participantMemberIds) return ''
  305. try {
  306. var ids = JSON.parse(config.participantMemberIds)
  307. return '共 ' + ids.length + ' 人'
  308. } catch (e) {
  309. return ''
  310. }
  311. },
  312. isWeekend: function(date) {
  313. var day = date.getDay()
  314. return day === 0 || day === 6
  315. },
  316. showFoodPicker: function() {
  317. this.showPicker = true
  318. },
  319. closePicker: function() {
  320. this.showPicker = false
  321. this.searchQuery = ''
  322. this.searchResults = []
  323. },
  324. searchFood: function() {
  325. if (!this.searchQuery) {
  326. this.searchResults = []
  327. return
  328. }
  329. this.searchResults = []
  330. },
  331. addFood: function(food) {
  332. var self = this
  333. addDietIngredient({ food_id: food.id, name: food.name }).then(function(res) {
  334. self.closePicker()
  335. self.loadIngredients()
  336. })
  337. }
  338. }
  339. }
  340. </script>
  341. <style scoped>
  342. /* ===== 页面令牌(暖灶·家的味道) ===== */
  343. .diet-page {
  344. min-height: 100vh;
  345. background: linear-gradient(180deg, #FFF7ED 0%, #FFF3E6 100%);
  346. overflow: hidden;
  347. }
  348. .dining-hero {
  349. background: linear-gradient(135deg, #FF8C42, #FFB366);
  350. border-radius: 32rpx;
  351. padding: 36rpx 32rpx;
  352. margin-bottom: 24rpx;
  353. box-shadow: 0 8rpx 32rpx rgba(255, 140, 66, 0.25);
  354. }
  355. .hero-top { display: flex; align-items: center; margin-bottom: 24rpx; }
  356. .hero-icon-wrap {
  357. width: 88rpx; height: 88rpx; border-radius: 50%;
  358. background: rgba(255,255,255,0.22);
  359. display: flex; align-items: center; justify-content: center;
  360. margin-right: 20rpx; flex-shrink: 0;
  361. }
  362. .hero-icon { font-size: 44rpx; }
  363. .hero-title { font-size: 38rpx; font-weight: 700; color: #FFFFFF; display: block; }
  364. .hero-subtitle { font-size: 24rpx; color: rgba(255,255,255,0.85); margin-top: 6rpx; display: block; }
  365. .hero-meals { display: flex; }
  366. .hero-meal {
  367. flex: 1; margin: 0 8rpx;
  368. background: rgba(255,255,255,0.18);
  369. border-radius: 20rpx; padding: 20rpx 8rpx;
  370. display: flex; flex-direction: column; align-items: center;
  371. }
  372. .hero-meal:first-child { margin-left: 0; }
  373. .hero-meal:last-child { margin-right: 0; }
  374. .hero-meal-emoji { font-size: 40rpx; margin-bottom: 8rpx; }
  375. .hero-meal-label { font-size: 24rpx; color: #FFFFFF; }
  376. .hero-meal-count { font-size: 22rpx; color: rgba(255,255,255,0.9); margin-top: 6rpx; font-weight: 600; }
  377. .hero-empty { display: flex; flex-direction: column; align-items: center; padding: 12rpx 0; }
  378. .hero-empty-text { font-size: 26rpx; color: #FFFFFF; margin-bottom: 20rpx; }
  379. .hero-empty-btn {
  380. background: #FFFFFF; color: #C2410C; font-size: 28rpx; font-weight: 600;
  381. padding: 18rpx 44rpx; border-radius: 999rpx;
  382. }
  383. .content {
  384. padding: 24rpx 32rpx;
  385. box-sizing: border-box;
  386. width: 100%;
  387. overflow: hidden;
  388. }
  389. /* 共餐格子 */
  390. .card {
  391. background: #FFFFFF;
  392. border-radius: 24rpx;
  393. margin-bottom: 24rpx;
  394. box-shadow: 0 4rpx 20rpx rgba(255, 140, 66, 0.08);
  395. overflow: hidden;
  396. box-sizing: border-box;
  397. width: 100%;
  398. }
  399. .card-header {
  400. display: flex;
  401. align-items: center;
  402. padding: 28rpx 28rpx 0;
  403. }
  404. .card-basket-icon {
  405. width: 64rpx; height: 64rpx; border-radius: 18rpx;
  406. background: linear-gradient(135deg, #FF8C42, #FFB366);
  407. display: flex; align-items: center; justify-content: center;
  408. margin-right: 16rpx; flex-shrink: 0;
  409. }
  410. .card-basket-emoji { font-size: 32rpx; }
  411. .card-title {
  412. font-size: 30rpx;
  413. font-weight: 600;
  414. color: #333;
  415. }
  416. .card-body {
  417. padding: 24rpx 28rpx 28rpx;
  418. }
  419. /* 操作按钮栏 */
  420. .action-bar {
  421. display: flex;
  422. margin-bottom: 24rpx;
  423. box-sizing: border-box;
  424. width: 100%;
  425. }
  426. .action-btn {
  427. padding: 14rpx 24rpx;
  428. border-radius: 32rpx;
  429. background: #F5F5F5;
  430. margin-right: 16rpx;
  431. }
  432. .action-btn:last-child {
  433. margin-right: 0;
  434. }
  435. .action-btn-primary {
  436. background: #FF8C42;
  437. }
  438. .action-btn-accent { background: linear-gradient(135deg, #10B981, #34D399); }
  439. .action-btn-text-accent { font-size: 24rpx; color: #FFFFFF; }
  440. .action-btn-disabled {
  441. opacity: 0.4;
  442. }
  443. .action-btn-text {
  444. font-size: 24rpx;
  445. color: #666;
  446. }
  447. .action-btn-text-primary {
  448. font-size: 24rpx;
  449. color: #FFFFFF;
  450. }
  451. /* 食材列表 */
  452. .ingredient-list {
  453. margin-top: 8rpx;
  454. }
  455. .ingredient-item:active { background: #FFF9F0; }
  456. .ingredient-item {
  457. display: flex;
  458. align-items: center;
  459. justify-content: space-between;
  460. padding: 20rpx 0;
  461. border-bottom: 1rpx solid #F5F5F5;
  462. }
  463. .ingredient-item:last-child {
  464. border-bottom: none;
  465. }
  466. .ingredient-left {
  467. display: flex;
  468. align-items: center;
  469. flex: 1;
  470. }
  471. .ingredient-badge {
  472. width: 40rpx;
  473. height: 40rpx;
  474. border-radius: 12rpx;
  475. background: linear-gradient(135deg, #FF8C42, #FFB366);
  476. display: flex;
  477. align-items: center;
  478. justify-content: center;
  479. margin-right: 20rpx;
  480. flex-shrink: 0;
  481. }
  482. .ingredient-badge-text {
  483. font-size: 20rpx;
  484. color: #FFFFFF;
  485. font-weight: 600;
  486. }
  487. .ingredient-info {
  488. display: flex;
  489. flex-direction: column;
  490. flex: 1;
  491. }
  492. .ingredient-name {
  493. font-size: 28rpx;
  494. color: #333;
  495. font-weight: 500;
  496. }
  497. .ingredient-reason {
  498. font-size: 22rpx;
  499. color: #999;
  500. margin-top: 4rpx;
  501. }
  502. .ingredient-remove {
  503. width: 48rpx;
  504. height: 48rpx;
  505. display: flex;
  506. align-items: center;
  507. justify-content: center;
  508. flex-shrink: 0;
  509. }
  510. .remove-text {
  511. font-size: 28rpx;
  512. color: #ccc;
  513. }
  514. /* 区域标签 */
  515. .section-label {
  516. padding: 8rpx 0 16rpx;
  517. }
  518. .section-label-text {
  519. font-size: 28rpx;
  520. font-weight: 600;
  521. color: #333;
  522. }
  523. /* 快捷入口网格 */
  524. .nav-grid {
  525. display: flex;
  526. flex-wrap: wrap;
  527. margin-bottom: 24rpx;
  528. box-sizing: border-box;
  529. width: 100%;
  530. }
  531. .nav-item {
  532. width: 20%;
  533. display: flex;
  534. flex-direction: column;
  535. align-items: center;
  536. padding: 20rpx 0;
  537. position: relative;
  538. z-index: 1;
  539. }
  540. .nav-icon-wrap {
  541. width: 88rpx;
  542. height: 88rpx;
  543. border-radius: 24rpx;
  544. display: flex;
  545. align-items: center;
  546. justify-content: center;
  547. margin-bottom: 12rpx;
  548. transition: transform 0.15s ease;
  549. }
  550. .nav-icon-green { background: linear-gradient(135deg, #FFF1E6, #FFE0C0); }
  551. .nav-icon-blue { background: linear-gradient(135deg, #FFF7ED, #FFEEDD); }
  552. .nav-icon-orange{ background: linear-gradient(135deg, #FF8C42, #FFB366); }
  553. .nav-icon-purple{ background: linear-gradient(135deg, #FFE8D6, #FFD4B0); }
  554. .nav-icon-red { background: linear-gradient(135deg, #E8F8F1, #C8F0E0); }
  555. .nav-item:active .nav-icon-wrap { transform: scale(0.92); }
  556. .nav-icon {
  557. font-size: 36rpx;
  558. }
  559. .nav-label {
  560. font-size: 22rpx;
  561. color: #333;
  562. }
  563. /* 趋势卡片 */
  564. .trend-row {
  565. display: flex;
  566. align-items: center;
  567. box-sizing: border-box;
  568. width: 100%;
  569. }
  570. .trend-item {
  571. flex: 1;
  572. display: flex;
  573. flex-direction: column;
  574. align-items: center;
  575. }
  576. .trend-divider {
  577. width: 1rpx;
  578. height: 60rpx;
  579. background: #FDE8D0;
  580. }
  581. .trend-num {
  582. font-size: 48rpx;
  583. font-weight: 700;
  584. color: #FF8C42;
  585. }
  586. .trend-unit {
  587. font-size: 22rpx;
  588. color: #999;
  589. margin-top: 4rpx;
  590. }
  591. .trend-label {
  592. font-size: 22rpx;
  593. color: #666;
  594. margin-top: 4rpx;
  595. }
  596. /* 空状态 */
  597. .empty-state {
  598. display: flex;
  599. flex-direction: column;
  600. align-items: center;
  601. padding: 40rpx 0;
  602. }
  603. .empty-icon {
  604. font-size: 48rpx;
  605. margin-bottom: 12rpx;
  606. }
  607. .empty-text {
  608. font-size: 26rpx;
  609. color: #999;
  610. }
  611. .empty-sub {
  612. font-size: 22rpx;
  613. color: #ccc;
  614. margin-top: 8rpx;
  615. }
  616. /* 弹窗 */
  617. .modal {
  618. position: fixed;
  619. top: 0;
  620. left: 0;
  621. right: 0;
  622. bottom: 0;
  623. z-index: 999;
  624. display: flex;
  625. align-items: flex-end;
  626. justify-content: center;
  627. }
  628. .modal-mask {
  629. position: fixed;
  630. top: 0;
  631. left: 0;
  632. right: 0;
  633. bottom: 0;
  634. background: rgba(0, 0, 0, 0.5);
  635. }
  636. .modal-content {
  637. position: relative;
  638. width: 100%;
  639. max-height: 80vh;
  640. background: #FFFFFF;
  641. border-radius: 32rpx 32rpx 0 0;
  642. padding: 32rpx;
  643. z-index: 1;
  644. }
  645. .modal-header {
  646. display: flex;
  647. align-items: center;
  648. justify-content: space-between;
  649. margin-bottom: 24rpx;
  650. }
  651. .modal-title {
  652. font-size: 32rpx;
  653. font-weight: 600;
  654. color: #333;
  655. }
  656. .modal-close {
  657. width: 48rpx;
  658. height: 48rpx;
  659. display: flex;
  660. align-items: center;
  661. justify-content: center;
  662. }
  663. .close-text {
  664. font-size: 32rpx;
  665. color: #999;
  666. }
  667. .search-wrap {
  668. margin-bottom: 20rpx;
  669. }
  670. .search-input {
  671. border: 1rpx solid #eee;
  672. border-radius: 40rpx;
  673. padding: 20rpx 28rpx;
  674. font-size: 28rpx;
  675. background: #F8F8F8;
  676. }
  677. .food-list {
  678. max-height: 500rpx;
  679. }
  680. .food-item {
  681. display: flex;
  682. align-items: center;
  683. justify-content: space-between;
  684. padding: 24rpx 0;
  685. border-bottom: 1rpx solid #F5F5F5;
  686. }
  687. .food-name {
  688. font-size: 28rpx;
  689. color: #333;
  690. }
  691. .food-tag {
  692. font-size: 22rpx;
  693. color: #FF8C42;
  694. background: #FFF0E0;
  695. padding: 6rpx 16rpx;
  696. border-radius: 20rpx;
  697. }
  698. /* 底部留白 */
  699. .bottom-space {
  700. height: 40rpx;
  701. }
  702. </style>