diff --git a/public/dashboard/index.html b/public/dashboard/index.html
index 0e3630c..ca102e7 100644
--- a/public/dashboard/index.html
+++ b/public/dashboard/index.html
@@ -137,8 +137,8 @@
最新出院信息
-
-
+
@@ -396,7 +396,17 @@
projectChartYperson.push(item.paramedic_total)
projectChartY.push(item.total)
})
+ // 最近订单 lastOrder
+ // 最新出院 outOrder
+ var outs = datas.outOrder
+ $(".outOrder").empty("")
+ outs.map(item=>{
+ $(".outOrder").append("
| "
+ +item.contact+" | "+item.project.name+" | "+
+ ""+item.status_name+" | "+
+ "
")
+ })
console.log("result", result)
initChart()
},