装箱单
This commit is contained in:
@@ -9,13 +9,12 @@
|
|||||||
:label="item.label"
|
:label="item.label"
|
||||||
:value="item.value"/>
|
:value="item.value"/>
|
||||||
</el-select>
|
</el-select>
|
||||||
<el-button :disabled="disabled" type="success" size="small" icon="el-icon-circle-plus-outline" @click="addReceipt">增加</el-button>
|
<el-button :disabled="disabled" type="primary" size="small" icon="el-icon-circle-plus-outline" @click="addReceipt">增加</el-button>
|
||||||
<el-button type="warning" size="small" icon="el-icon-download">导出</el-button>
|
<el-button type="warning" size="small" icon="el-icon-download">导出</el-button>
|
||||||
<div class="title">总装箱单</div>
|
<div class="title">总装箱单</div>
|
||||||
<el-table
|
<el-table
|
||||||
v-loading="loading"
|
v-loading="loading"
|
||||||
:data="receiptData"
|
:data="receiptData"
|
||||||
highlight-current-row
|
|
||||||
border
|
border
|
||||||
style="margin-top:20px">
|
style="margin-top:20px">
|
||||||
<el-table-column
|
<el-table-column
|
||||||
@@ -67,13 +66,13 @@
|
|||||||
</el-table-column>
|
</el-table-column>
|
||||||
</el-table>
|
</el-table>
|
||||||
</el-card>
|
</el-card>
|
||||||
|
|
||||||
<el-card style="margin-top: 10px">
|
<el-card style="margin-top: 10px">
|
||||||
<el-button :disabled="!disabled" type="primary" size="small" icon="el-icon-search" @click="addMachine">添加主机</el-button>
|
<el-button :disabled="!disabled" type="primary" size="small" icon="el-icon-circle-plus-outline" @click="addMachine">添加主机</el-button>
|
||||||
<div class="title">主机</div>
|
<div class="title">主机</div>
|
||||||
<el-table
|
<el-table
|
||||||
v-loading="loading"
|
v-loading="loading"
|
||||||
:data="machineTableData"
|
:data="machineTableData"
|
||||||
highlight-current-row
|
|
||||||
border
|
border
|
||||||
style="margin-top:20px">
|
style="margin-top:20px">
|
||||||
<el-table-column type="expand">
|
<el-table-column type="expand">
|
||||||
@@ -82,17 +81,16 @@
|
|||||||
:data="props.row.groupData"
|
:data="props.row.groupData"
|
||||||
border
|
border
|
||||||
style="width: 90%">
|
style="width: 90%">
|
||||||
<el-table-column
|
|
||||||
fixed
|
|
||||||
align="center"
|
|
||||||
prop="类别"
|
|
||||||
label="类别"
|
|
||||||
/>
|
|
||||||
<el-table-column
|
<el-table-column
|
||||||
label="序号"
|
label="序号"
|
||||||
type="index"
|
type="index"
|
||||||
align="center"
|
align="center"
|
||||||
width="100px"/>
|
width="100px"/>
|
||||||
|
<el-table-column
|
||||||
|
align="center"
|
||||||
|
prop="类别"
|
||||||
|
label="类别"
|
||||||
|
/>
|
||||||
<el-table-column
|
<el-table-column
|
||||||
align="center"
|
align="center"
|
||||||
prop="代号"
|
prop="代号"
|
||||||
@@ -167,12 +165,11 @@
|
|||||||
</el-card>
|
</el-card>
|
||||||
|
|
||||||
<el-card style="margin-top: 10px">
|
<el-card style="margin-top: 10px">
|
||||||
<el-button :disabled="!disabled" type="primary" size="small" icon="el-icon-search" @click="addSpare">添加备件</el-button>
|
<el-button :disabled="!disabled" type="primary" size="small" icon="el-icon-circle-plus-outline" @click="addSpare">添加备件</el-button>
|
||||||
<div class="title">随机供应的备件</div>
|
<div class="title">随机供应的备件</div>
|
||||||
<el-table
|
<el-table
|
||||||
v-loading="loading"
|
v-loading="loading"
|
||||||
:data="spareData"
|
:data="spareData"
|
||||||
highlight-current-row
|
|
||||||
border
|
border
|
||||||
style="margin-top:20px">
|
style="margin-top:20px">
|
||||||
<el-table-column
|
<el-table-column
|
||||||
@@ -225,12 +222,11 @@
|
|||||||
</el-card>
|
</el-card>
|
||||||
|
|
||||||
<el-card style="margin-top: 10px">
|
<el-card style="margin-top: 10px">
|
||||||
<el-button :disabled="!disabled" type="primary" size="small" icon="el-icon-search" @click="addFile">添加文件</el-button>
|
<el-button :disabled="!disabled" type="primary" size="small" icon="el-icon-circle-plus-outline" @click="addFile">添加文件</el-button>
|
||||||
<div class="title">随机技术文件</div>
|
<div class="title">随机技术文件</div>
|
||||||
<el-table
|
<el-table
|
||||||
v-loading="fileLoading"
|
v-loading="fileLoading"
|
||||||
:data="fileData"
|
:data="fileData"
|
||||||
highlight-current-row
|
|
||||||
border
|
border
|
||||||
style="margin-top:20px">
|
style="margin-top:20px">
|
||||||
<el-table-column
|
<el-table-column
|
||||||
|
|||||||
Reference in New Issue
Block a user