duckweed
2019-10-30 26e2bbfdd037c23dcb0bb6f1b8e87babc5a03037
物品入库页面样式调整
2个文件已修改
27 ■■■■ 已修改文件
WebService/src/main/resources/components/itemOutPackage/itemOut-manage/itemOutManage.html 23 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
WebService/src/main/resources/components/itemOutPackage/itemOut-manage/itemOutManage.js 4 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
WebService/src/main/resources/components/itemOutPackage/itemOut-manage/itemOutManage.html
@@ -58,18 +58,6 @@
                    <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>-->
                        <!--                        </tr>-->
                        <!--                        </thead>-->
                        <tbody>
                        <tr v-for="resourceStore in resourceStoreManageInfo.resourceStores">
                            <td class="desc">
@@ -84,15 +72,8 @@
                            </td>
                            <td>{{resourceStore.price}}</td>
                            <td width="65">
                                <div class="input-group">
                                     <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>
                                </div>
                                <input type="text" class="form-control" :placeholder="resourceStore.stock" v-model="resourceStore.stock">
                                <button class="btn btn-default" type="button" @click="_resourceStoreLess(resourceStore.stock)">-</button>
                            </td>
                            <td>
                                <h4>
WebService/src/main/resources/components/itemOutPackage/itemOut-manage/itemOutManage.js
@@ -35,6 +35,10 @@
            });
        },
        methods: {
            _resourceStoreLess:function(stock){
                resourceStoreManageInfo.conditions.stock=parseInt(stock--);
            },
            _listResourceStores: function (_page, _rows) {
                vc.component.resourceStoreManageInfo.conditions.page = _page;