Compare commits

...

3 Commits

Author SHA1 Message Date
lizhenhua 4935f52233 谁DVD发DVD发到付v 2025-09-12 18:37:10 +08:00
lizhenhua a730a7761a Merge remote-tracking branch 'origin/bonus-jyy-smart-canteen' into bonus-jyy-smart-canteen
# Conflicts:
#	src/views/canteen/order/reserveManagement/index.vue
2025-09-12 18:25:31 +08:00
lizhenhua cfc37c65ff 基本配置修改 优化 2025-09-11 14:43:16 +08:00
3 changed files with 13 additions and 14 deletions

View File

@ -157,17 +157,6 @@ export function delHealthInfoApi(data) {
data: data
})
}
export function getHealthReportPageApi(data) {
return request({
url: '/smart-canteen/health_person_medical_report/list',
method: 'get',
headers: {
//"merchant-id":"378915229716713472",
},
params:data
})
}
// 模板-列表
export function getModelListApi() {
return request({

View File

@ -42,6 +42,8 @@
</el-table-column>
<el-table-column label="住院日期" align="center" prop="inpatientDate" :show-overflow-tooltip="true">
</el-table-column>
<el-table-column label="慢性病" align="center" prop="chronicNames" :show-overflow-tooltip="true">
</el-table-column>
<el-table-column label="劳动强度" align="center" prop="labourIntensity" :show-overflow-tooltip="true">
<template slot-scope="scope">
<span v-if="scope.row.labourIntensity==1">轻劳动</span>

View File

@ -192,9 +192,17 @@
<el-table-column label="餐次" align="center" prop="mealtimeName" :show-overflow-tooltip="true" width="80"/>
<el-table-column label="菜品明细" align="center" prop="orderDetailList" :show-overflow-tooltip="true" width="120">
<template slot-scope="scope">
<span v-for="item in scope.row.orderDetailList" :key="item.detailId">{{ item.goodsName }}*{{
item.quantity
}};</span>
<!-- 如果是数组List<OrderDetail> -->
<span v-if="Array.isArray(scope.row.orderDetailList)">
<span v-for="item in scope.row.orderDetailList" :key="item.detailId">
{{ item.goodsName }}*{{ item.quantity }};
</span>
</span>
<!-- 如果是字符串yrorder_details -->
<span v-else>
{{ scope.row.orderDetailList }}
</span>
</template>
</el-table-column>
<el-table-column label="订单金额" align="center" prop="payableAmount" :show-overflow-tooltip="true" width="80">