Commit ab5e5b7e authored by renjintao's avatar renjintao

计划管理

parent 03205fa2
...@@ -1655,6 +1655,8 @@ export default { ...@@ -1655,6 +1655,8 @@ export default {
remark: '备注', remark: '备注',
storeId: '库位id', storeId: '库位id',
storeTitle: '库位名称', storeTitle: '库位名称',
stockCode: '物料序号' stockCode: '物料序号',
count1:"可申请数",
count2:"申请数"
} }
} }
...@@ -68,7 +68,7 @@ export default { ...@@ -68,7 +68,7 @@ export default {
}, },
{ {
key: "count", key: "count",
title: this.l("count"), title: this.l("count2"),
align: "right", align: "right",
width: 120, width: 120,
}, },
......
...@@ -176,17 +176,11 @@ export default { ...@@ -176,17 +176,11 @@ export default {
}, },
{ {
key: "count", key: "count",
title: this.l("count"), title: this.l("count1"),
align: "right", align: "right",
slot: "counts", slot: "counts",
width: 120, width: 120,
}, },
{
key: "outStockNumber",
title: this.l("outStockNumber"),
align: "right",
width: 120,
},
{ {
key: "remark", key: "remark",
title: this.l("remark"), title: this.l("remark"),
......
...@@ -20,6 +20,7 @@ ...@@ -20,6 +20,7 @@
class="fr" class="fr"
size="small" size="small"
@click="openMore" @click="openMore"
v-show="tempList.length>1"
>{{butTxt}}</Button> >{{butTxt}}</Button>
</div> </div>
<Table <Table
...@@ -237,7 +238,7 @@ export default { ...@@ -237,7 +238,7 @@ export default {
//this.datas = r.result.children; //this.datas = r.result.children;
this.tempList = r.result.children; this.tempList = r.result.children;
this.datas = this.tempList.slice(0, 1); this.datas = this.tempList.slice(0, 1);
this.tableHeight1 = "96"; this.tableHeight1 = "97";
this.butTxt = "更多"; this.butTxt = "更多";
this.iconLabel = "md-arrow-dropdown"; this.iconLabel = "md-arrow-dropdown";
...@@ -304,7 +305,7 @@ export default { ...@@ -304,7 +305,7 @@ export default {
this.butTxt = "收起"; this.butTxt = "收起";
this.iconLabel = "md-arrow-dropup"; this.iconLabel = "md-arrow-dropup";
} else { } else {
this.tableHeight1 = "96"; this.tableHeight1 = "97";
this.butTxt = "更多"; this.butTxt = "更多";
this.iconLabel = "md-arrow-dropdown"; this.iconLabel = "md-arrow-dropdown";
this.datas = this.tempList.slice(0, 1); this.datas = this.tempList.slice(0, 1);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment