前端调整

This commit is contained in:
caoqianming 2021-12-29 14:51:39 +08:00
parent 445bed8e65
commit b5fdd13343
4 changed files with 8 additions and 8 deletions

View File

@ -31,7 +31,7 @@
"nprogress": "0.2.0",
"path-to-regexp": "^6.2.0",
"vue": "^2.6.14",
"vue-function-api": "^2.1.2",
"vue-function-api": "^2.2.0",
"vue-json-editor": "^1.4.3",
"vue-quill-editor": "^3.0.6",
"vue-router": "^3.5.2",

View File

@ -51,7 +51,7 @@
<template slot-scope="scope">{{ scope.row.workshop_.name }}</template>
</el-table-column>
<el-table-column label="生产数量">
<template slot-scope="scope">{{ scope.row.main_count }}</template>
<template slot-scope="scope">{{ scope.row.count }}</template>
</el-table-column>
<el-table-column label="开工时间">
<template slot-scope="scope">{{ scope.row.start_date }}</template>

View File

@ -34,7 +34,7 @@
</el-table-column>
<el-table-column label="生产主产品" width="140">
<template slot-scope="scope">{{
scope.row.main_product_.name
scope.row.product_.name
}}</template>
</el-table-column>
<el-table-column label="名称">
@ -80,8 +80,8 @@
<el-table-column label="计划/生产/合格">
<template slot-scope="scope"
>{{ scope.row.main_count }}/{{ scope.row.main_count_real }}/{{
scope.row.main_count_ok
>{{ scope.row.count }}/{{ scope.row.count_real }}/{{
scope.row.count_ok
}}</template
>
</el-table-column>

View File

@ -61,13 +61,13 @@
</el-table-column>
<el-table-column label="生产主产品">
<template slot-scope="scope" >{{
scope.row.main_product_.name
scope.row.product_.name
}}</template>
</el-table-column>
<el-table-column label="生产进度">
<template slot-scope="scope"
>{{ scope.row.main_count_real }}/{{
scope.row.main_count
>{{ scope.row.count_real }}/{{
scope.row.count
}}</template
>
</el-table-column>