This commit is contained in:
Vergil
2020-05-07 17:23:05 +08:00
parent 8bf9d30d32
commit a5cfd813cd
2 changed files with 4 additions and 4 deletions

View File

@@ -329,17 +329,17 @@
{{ scope.row.物料名称 ? scope.row.物料名称 : scope.row.零件名称 }}
</template>
</el-table-column>
<el-table-column label="规格" align="center" width="100" show-overflow-tooltip>
<el-table-column label="规格" align="center" width="80" show-overflow-tooltip>
<template slot-scope="scope">
{{ scope.row.物料规格 ? scope.row.物料规格 : scope.row.规格 }}
</template>
</el-table-column>
<el-table-column label="图号或型号" align="center" width="140" show-overflow-tooltip>
<el-table-column label="图号或型号" align="center" width="100" show-overflow-tooltip>
<template slot-scope="scope">
{{ scope.row.物料型号 ? scope.row.物料型号 : scope.row.零件图号 }}
</template>
</el-table-column>
<el-table-column label="采购数" align="center" width="120">
<el-table-column label="采购数" align="center" width="80">
<template slot-scope="scope">
<el-input v-direction="{x: 0, y: scope.$index}" v-if="quickChangePrice" v-model="scope.row.数量" :disabled="disable" size="mini" style="width:100px" @change="saveContract()"/>
<b v-else>{{ scope.row.数量 }}</b>

View File

@@ -11,7 +11,7 @@
</el-card>
<el-card>
<el-table v-loading="loading" :data="tableData" border stripe size="mini" height="650" style="width: 1350px">
<el-table-column label="进程" align="center" width="120px">
<el-table-column label="进程" align="center" width="90px">
<template slot-scope="scope">
{{ scope.row.状态 }}
</template>