diff --git a/app/api/property.js b/app/api/property.js
index b950427..efbec90 100644
--- a/app/api/property.js
+++ b/app/api/property.js
@@ -27,6 +27,34 @@ export function wishMenuList(params) {
);
}
+// 每日菜单明细列表(支持按 menuDate 查询)
+export function listDailyMenuDetails(params) {
+ return request.get(
+ 'autogencode/pmdailymenudtl/listByAll',
+ params,
+ { useAdminUrl: true }
+ );
+}
+
+// 菜单明细点赞/点踩
+export function likeDailyMenuItem(data) {
+ return request.post(
+ 'autogencode/pmdailymenudtllike/like',
+ data,
+ { useAdminUrl: true },
+ data
+ );
+}
+
+// 菜品排行(点赞/点踩)
+export function getDailyMenuRanking(params) {
+ return request.get(
+ 'autogencode/pmdailymenudtllike/ranking',
+ params,
+ { useAdminUrl: true }
+ );
+}
+
// 报修记录 - 列表
export function listMaintenanceOrder(params) {
return request.get(
diff --git a/app/manifest.json b/app/manifest.json
index eedff33..2b6cd8f 100644
--- a/app/manifest.json
+++ b/app/manifest.json
@@ -169,7 +169,7 @@
"async" : {
"timeout" : 200000
},
- "title" : "甄味馆"
+ "title" : "八方物业"
},
"plus" : {
"statusbar" : {
diff --git a/app/pages.json b/app/pages.json
index ea9edee..24ebd75 100644
--- a/app/pages.json
+++ b/app/pages.json
@@ -196,8 +196,8 @@
"path": "traceability/index",
"style": {
"navigationBarTitleText": "溯源信息查看",
- "navigationBarBackgroundColor": "#409EFF",
- "navigationBarTextStyle": "white"
+ "navigationBarBackgroundColor": "#FFFFFF",
+ "navigationBarTextStyle": "black"
// #ifdef H5
,
"navigationStyle": "custom"
@@ -208,8 +208,8 @@
"path": "evaluation/index",
"style": {
"navigationBarTitleText": "食材满意度评价",
- "navigationBarBackgroundColor": "#409EFF",
- "navigationBarTextStyle": "white"
+ "navigationBarBackgroundColor": "#FFFFFF",
+ "navigationBarTextStyle": "black"
// #ifdef H5
,
"navigationStyle": "custom"
@@ -220,8 +220,8 @@
"path": "supply_query/index",
"style": {
"navigationBarTitleText": "物供相关查询",
- "navigationBarBackgroundColor": "#409EFF",
- "navigationBarTextStyle": "white"
+ "navigationBarBackgroundColor": "#FFFFFF",
+ "navigationBarTextStyle": "black"
// #ifdef H5
,
"navigationStyle": "custom"
@@ -232,8 +232,8 @@
"path": "purchase/index",
"style": {
"navigationBarTitleText": "采购相关操作",
- "navigationBarBackgroundColor": "#409EFF",
- "navigationBarTextStyle": "white"
+ "navigationBarBackgroundColor": "#FFFFFF",
+ "navigationBarTextStyle": "black"
// #ifdef H5
,
"navigationStyle": "custom"
@@ -244,8 +244,8 @@
"path": "stock/index",
"style": {
"navigationBarTitleText": "库存查询",
- "navigationBarBackgroundColor": "#409EFF",
- "navigationBarTextStyle": "white"
+ "navigationBarBackgroundColor": "#FFFFFF",
+ "navigationBarTextStyle": "black"
// #ifdef H5
,
"navigationStyle": "custom"
@@ -256,8 +256,8 @@
"path": "stock/detail",
"style": {
"navigationBarTitleText": "库存明细",
- "navigationBarBackgroundColor": "#409EFF",
- "navigationBarTextStyle": "white"
+ "navigationBarBackgroundColor": "#FFFFFF",
+ "navigationBarTextStyle": "black"
// #ifdef H5
,
"navigationStyle": "custom"
@@ -268,8 +268,8 @@
"path": "approval/index",
"style": {
"navigationBarTitleText": "审批处理",
- "navigationBarBackgroundColor": "#409EFF",
- "navigationBarTextStyle": "white"
+ "navigationBarBackgroundColor": "#FFFFFF",
+ "navigationBarTextStyle": "black"
// #ifdef H5
,
"navigationStyle": "custom"
@@ -280,8 +280,8 @@
"path": "material_receipt/index",
"style": {
"navigationBarTitleText": "物资领用",
- "navigationBarBackgroundColor": "#409EFF",
- "navigationBarTextStyle": "white"
+ "navigationBarBackgroundColor": "#FFFFFF",
+ "navigationBarTextStyle": "black"
// #ifdef H5
,
"navigationStyle": "custom"
@@ -292,8 +292,8 @@
"path": "complaint/index",
"style": {
"navigationBarTitleText": "投诉与建议",
- "navigationBarBackgroundColor": "#409EFF",
- "navigationBarTextStyle": "white"
+ "navigationBarBackgroundColor": "#FFFFFF",
+ "navigationBarTextStyle": "black"
// #ifdef H5
,
"navigationStyle": "custom"
@@ -303,9 +303,9 @@
{
"path": "wish_menu/index",
"style": {
- "navigationBarTitleText": "祈愿菜单",
- "navigationBarBackgroundColor": "#409EFF",
- "navigationBarTextStyle": "white"
+ "navigationBarTitleText": "每日菜单",
+ "navigationBarBackgroundColor": "#FFFFFF",
+ "navigationBarTextStyle": "black"
// #ifdef H5
,
"navigationStyle": "custom"
@@ -316,8 +316,8 @@
"path": "repair/index",
"style": {
"navigationBarTitleText": "报修服务",
- "navigationBarBackgroundColor": "#409EFF",
- "navigationBarTextStyle": "white"
+ "navigationBarBackgroundColor": "#FFFFFF",
+ "navigationBarTextStyle": "black"
// #ifdef H5
,
"navigationStyle": "custom"
@@ -328,8 +328,8 @@
"path": "notice/index",
"style": {
"navigationBarTitleText": "通知公告列表",
- "navigationBarBackgroundColor": "#409EFF",
- "navigationBarTextStyle": "white"
+ "navigationBarBackgroundColor": "#FFFFFF",
+ "navigationBarTextStyle": "black"
// #ifdef H5
,
"navigationStyle": "custom"
@@ -340,8 +340,8 @@
"path": "notice_detail/index",
"style": {
"navigationBarTitleText": "通知详情",
- "navigationBarBackgroundColor": "#409EFF",
- "navigationBarTextStyle": "white"
+ "navigationBarBackgroundColor": "#FFFFFF",
+ "navigationBarTextStyle": "black"
// #ifdef H5
,
"navigationStyle": "custom"
diff --git a/app/pages/index/index.vue b/app/pages/index/index.vue
index 01f4ed4..1c4ad9d 100644
--- a/app/pages/index/index.vue
+++ b/app/pages/index/index.vue
@@ -6,10 +6,11 @@
-
-
+ 八方物业
+
@@ -1046,17 +1047,23 @@
top: 0;
z-index: 200000;
width: 100%;
- background-color: $theme-color;
+ background-color: #ffffff;//$theme-color;
padding: 28rpx 30rpx;
.serch-wrapper {
margin-top: var(--status-bar-height);
align-items: center;
- /* #ifdef MP-WEIXIN */
+ /* #ifdef MP-WEIXIN */
+ margin-top: calc(var(--status-bar-height) + 30rpx);
width: 75%;
/* #endif */
-
+
+ .title {
+ margin-top: 4rpx;
+ font-weight: 500;
+ font-size: 32rpx;
+ }
.logo {
width: 50rpx;
@@ -1479,7 +1486,7 @@
/* #endif */
width: 100%;
height: 304rpx;
- background: linear-gradient(180deg, #409EFF 0%, #F5F5F5 100%, #409EFF 100%);
+ // background: linear-gradient(180deg, #4dbcff 0%, #F5F5F5 100%, #4dbcff 100%);
// border-radius: 0 0 30rpx 30rpx;
diff --git a/app/pages/supply_chain/wish_menu/index.vue b/app/pages/supply_chain/wish_menu/index.vue
index 5515c4c..12aa2fc 100644
--- a/app/pages/supply_chain/wish_menu/index.vue
+++ b/app/pages/supply_chain/wish_menu/index.vue
@@ -1,730 +1,413 @@
-
-
-
-
-
- 我要祈愿
-
-
- 祈愿记录
-
+
+
+
+ 前一天
+
+ {{ selectedDate }}
+
+ 后一天
-
-
-
-
-
-
- 祈愿菜品
-
- {{ form.csContent.length }}/300
-
-
-
- 联系方式
-
-
+ 默认当天,可切换查看不同日期菜单
+
-
- 上传图片(选填)
-
-
-
-
- ×
+
+ 当日菜单
+
+
+ {{ meal.label }}
+
+
+
+ {{ item.itemName || '未命名菜品' }}
+ {{ item.remark }}
+
+ ¥{{ item.itemPrice }}
+
+
+
+
+ 👍 {{ item.likeCount || 0 }}
-
-
- 添加图片
+
+ 👎 {{ item.dislikeCount || 0 }}
- 最多上传9张图片
-
-
-
-
-
-
- 提交祈愿
-
+ 暂无{{ meal.label }}菜品
-
-
-
-
-
-
-
- 祈愿人
-
- {{ getOwnerName(item) }}
-
-
-
- 祈愿菜品
-
- {{ item.csContent || '—' }}
-
-
-
- 处理结果
-
- {{ item.handlerReslut }}
-
-
-
- 处理人
-
- {{ item.handlerName }}
-
-
-
- 处理时间
-
- {{ item.handlerDate }}
-
-
+
+
+
+
+
+
+ {{ index + 1 }}
+ {{ item.itemName || '未命名菜品' }}
+
+
+ 👍 {{ item.likeCount || 0 }}
+ 👎 {{ item.dislikeCount || 0 }}
+ 暂无排行数据
-
+
\ No newline at end of file
+