From a2854129b50e48159380a71a0049c1fd5a28a6d5 Mon Sep 17 00:00:00 2001
From: shiyj <1098226878@qq.com>
Date: 星期五, 21 六月 2019 11:20:56 +0800
Subject: [PATCH] 修改js获取后台数据到页面显示,由于后台封装不符合规范修改了下展示时获取js数据的方式
---
WebService/src/main/resources/components/list-demo/listDemo.html | 10 +++++-----
1 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/WebService/src/main/resources/components/list-demo/listDemo.html b/WebService/src/main/resources/components/list-demo/listDemo.html
index c6c1cd6..a713ab3 100644
--- a/WebService/src/main/resources/components/list-demo/listDemo.html
+++ b/WebService/src/main/resources/components/list-demo/listDemo.html
@@ -25,20 +25,20 @@
</tr>
</thead>
<tbody>
- <tr v-for="owner in listDemoInfo.owners">
+ <tr v-for="demo in listDemoInfo.demos">
<td>
- {{demos.demoId}}
+ {{demo.demoId}}
</td>
<td>
- {{demos.demoName}}
+ {{demo.demoName}}
</td>
<td>
- {{demos.demoValue}}
+ {{demo.demoValue}}
</td>
<td>
- {{demos.demoRemark}}
+ {{demo.demoRemark}}
</td>
<td class="text-right">
<div class="btn-group">
--
Gitblit v1.8.0