成组采购

This commit is contained in:
liushuai
2019-11-18 19:51:48 +08:00
parent 7ccc5db920
commit fb950f38bd
25 changed files with 1525 additions and 394 deletions

View File

@@ -20,30 +20,29 @@
<el-table
v-loading="loading"
:data="tableData"
style="width: 100%"
size="small"
highlight-current-row
min-height="540px"
height="540px"
border>
<el-table-column align="center" label="采购合同编号" width="150">
<el-table-column align="center" label="采购合同编号" width="150px">
<template slot-scope="scope">
{{ scope.row.采购合同编号 }}
</template>
</el-table-column>
<el-table-column align="center" label="供应商" show-overflow-tooltip width="100">
<el-table-column align="center" label="供应商" show-overflow-tooltip width="200px">
<template slot-scope="scope">
{{ scope.row.供应商名称 }}
</template>
</el-table-column>
<el-table-column align="center" label="零件号" width="170px">
<template slot-scope="scope">
{{ scope.row.物料型号 }}
{{ scope.row.物料型号 ? scope.row.物料型号 : scope.row.组号 }}
</template>
</el-table-column>
<el-table-column align="center" label="零件名称" width="120px">
<el-table-column align="center" label="零件名称" width="150px">
<template slot-scope="scope">
{{ scope.row.物料名称 }}
{{ scope.row.物料名称 ? scope.row.物料名称 : scope.row.组件名称 }}
</template>
</el-table-column>
<el-table-column align="center" label="数量" width="70px">
@@ -51,22 +50,12 @@
{{ scope.row.数量 }}
</template>
</el-table-column>
<el-table-column align="center" label="重量或面积" width="100px">
<template slot-scope="scope">
{{ scope.row.重量或面积 }}
</template>
</el-table-column>
<el-table-column align="center" label="单位" width="80px">
<template slot-scope="scope">
{{ scope.row.单位 }}
</template>
</el-table-column>
<el-table-column align="center" label="单价" width="100px">
<template slot-scope="scope">
<el-input v-model="scope.row.单价" size="mini" width="80px" align="center" @change="update(scope.row)"/>
</template>
</el-table-column>
<el-table-column align="center" label="总额">
<el-table-column align="center" label="总额" width="70px">
<template slot-scope="scope">
{{ scope.row.金额 }}
</template>