|
|
@@ -58,18 +58,18 @@
|
|
|
<table class="table shoping-cart-table"
|
|
|
data-page-size="15"
|
|
|
>
|
|
|
-<!-- <thead>-->
|
|
|
-<!-- <tr>-->
|
|
|
-<!-- <th class="text-center">物品ID</th>-->
|
|
|
-<!-- <th class="text-center">物品名称</th>-->
|
|
|
-<!-- <th class="text-center">物品编码</th>-->
|
|
|
-<!-- <th class="text-center">物品价格</th>-->
|
|
|
-<!-- <th class="text-center">物品库存</th>-->
|
|
|
-<!-- <th class="text-center">操作</th>-->
|
|
|
+ <!-- <thead>-->
|
|
|
+ <!-- <tr>-->
|
|
|
+ <!-- <th class="text-center">物品ID</th>-->
|
|
|
+ <!-- <th class="text-center">物品名称</th>-->
|
|
|
+ <!-- <th class="text-center">物品编码</th>-->
|
|
|
+ <!-- <th class="text-center">物品价格</th>-->
|
|
|
+ <!-- <th class="text-center">物品库存</th>-->
|
|
|
+ <!-- <th class="text-center">操作</th>-->
|
|
|
|
|
|
|
|
|
-<!-- </tr>-->
|
|
|
-<!-- </thead>-->
|
|
|
+ <!-- </tr>-->
|
|
|
+ <!-- </thead>-->
|
|
|
<tbody>
|
|
|
<tr v-for="resourceStore in resourceStoreManageInfo.resourceStores">
|
|
|
<td class="desc">
|
|
|
@@ -84,30 +84,36 @@
|
|
|
</td>
|
|
|
<td>{{resourceStore.price}}</td>
|
|
|
<td width="65">
|
|
|
+ <span class="input-group-btn">
|
|
|
+ <button class="btn btn-default" type="button">-</button>
|
|
|
+ </span>
|
|
|
<input type="text" class="form-control" :placeholder="resourceStore.stock">
|
|
|
+ <span class="input-group-btn">
|
|
|
+ <button class="btn btn-default" type="button">+</button>
|
|
|
+ </span>
|
|
|
</td>
|
|
|
<td>
|
|
|
<h4>
|
|
|
{{resourceStore.price}}
|
|
|
</h4>
|
|
|
</td>
|
|
|
-<!-- <td class="text-center">{{resourceStore.resId}}</td>-->
|
|
|
-<!-- <td class="text-center">{{resourceStore.resName}}</td>-->
|
|
|
-<!-- <td class="text-center">{{resourceStore.resCode}}</td>-->
|
|
|
-<!-- <td class="text-center">{{resourceStore.price}}</td>-->
|
|
|
-<!-- <td class="text-center">{{resourceStore.stock}}</td>-->
|
|
|
-<!-- <td class="text-center">-->
|
|
|
-<!-- <div class="btn-group">-->
|
|
|
-<!-- <button class="btn-white btn btn-xs"-->
|
|
|
-<!-- v-on:click="_openEditResourceStoreModel(resourceStore)">修改-->
|
|
|
-<!-- </button>-->
|
|
|
-<!-- </div>-->
|
|
|
- <!-- <div class="btn-group">-->
|
|
|
- <!-- <button class="btn-white btn btn-xs"-->
|
|
|
- <!-- v-on:click="_openDeleteResourceStoreModel(resourceStore)">删除-->
|
|
|
- <!-- </button>-->
|
|
|
- <!-- </div>-->
|
|
|
-<!-- </td>-->
|
|
|
+ <!-- <td class="text-center">{{resourceStore.resId}}</td>-->
|
|
|
+ <!-- <td class="text-center">{{resourceStore.resName}}</td>-->
|
|
|
+ <!-- <td class="text-center">{{resourceStore.resCode}}</td>-->
|
|
|
+ <!-- <td class="text-center">{{resourceStore.price}}</td>-->
|
|
|
+ <!-- <td class="text-center">{{resourceStore.stock}}</td>-->
|
|
|
+ <!-- <td class="text-center">-->
|
|
|
+ <!-- <div class="btn-group">-->
|
|
|
+ <!-- <button class="btn-white btn btn-xs"-->
|
|
|
+ <!-- v-on:click="_openEditResourceStoreModel(resourceStore)">修改-->
|
|
|
+ <!-- </button>-->
|
|
|
+ <!-- </div>-->
|
|
|
+ <!-- <div class="btn-group">-->
|
|
|
+ <!-- <button class="btn-white btn btn-xs"-->
|
|
|
+ <!-- v-on:click="_openDeleteResourceStoreModel(resourceStore)">删除-->
|
|
|
+ <!-- </button>-->
|
|
|
+ <!-- </div>-->
|
|
|
+ <!-- </td>-->
|
|
|
|
|
|
</tr>
|
|
|
</tbody>
|