前端调整
This commit is contained in:
parent
445bed8e65
commit
b5fdd13343
|
@ -31,7 +31,7 @@
|
||||||
"nprogress": "0.2.0",
|
"nprogress": "0.2.0",
|
||||||
"path-to-regexp": "^6.2.0",
|
"path-to-regexp": "^6.2.0",
|
||||||
"vue": "^2.6.14",
|
"vue": "^2.6.14",
|
||||||
"vue-function-api": "^2.1.2",
|
"vue-function-api": "^2.2.0",
|
||||||
"vue-json-editor": "^1.4.3",
|
"vue-json-editor": "^1.4.3",
|
||||||
"vue-quill-editor": "^3.0.6",
|
"vue-quill-editor": "^3.0.6",
|
||||||
"vue-router": "^3.5.2",
|
"vue-router": "^3.5.2",
|
||||||
|
|
|
@ -51,7 +51,7 @@
|
||||||
<template slot-scope="scope">{{ scope.row.workshop_.name }}</template>
|
<template slot-scope="scope">{{ scope.row.workshop_.name }}</template>
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
<el-table-column label="生产数量">
|
<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>
|
||||||
<el-table-column label="开工时间">
|
<el-table-column label="开工时间">
|
||||||
<template slot-scope="scope">{{ scope.row.start_date }}</template>
|
<template slot-scope="scope">{{ scope.row.start_date }}</template>
|
||||||
|
|
|
@ -34,7 +34,7 @@
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
<el-table-column label="生产主产品" width="140">
|
<el-table-column label="生产主产品" width="140">
|
||||||
<template slot-scope="scope">{{
|
<template slot-scope="scope">{{
|
||||||
scope.row.main_product_.name
|
scope.row.product_.name
|
||||||
}}</template>
|
}}</template>
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
<el-table-column label="名称">
|
<el-table-column label="名称">
|
||||||
|
@ -80,8 +80,8 @@
|
||||||
|
|
||||||
<el-table-column label="计划/生产/合格">
|
<el-table-column label="计划/生产/合格">
|
||||||
<template slot-scope="scope"
|
<template slot-scope="scope"
|
||||||
>{{ scope.row.main_count }}/{{ scope.row.main_count_real }}/{{
|
>{{ scope.row.count }}/{{ scope.row.count_real }}/{{
|
||||||
scope.row.main_count_ok
|
scope.row.count_ok
|
||||||
}}</template
|
}}</template
|
||||||
>
|
>
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
|
|
|
@ -61,13 +61,13 @@
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
<el-table-column label="生产主产品">
|
<el-table-column label="生产主产品">
|
||||||
<template slot-scope="scope" >{{
|
<template slot-scope="scope" >{{
|
||||||
scope.row.main_product_.name
|
scope.row.product_.name
|
||||||
}}</template>
|
}}</template>
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
<el-table-column label="生产进度">
|
<el-table-column label="生产进度">
|
||||||
<template slot-scope="scope"
|
<template slot-scope="scope"
|
||||||
>{{ scope.row.main_count_real }}/{{
|
>{{ scope.row.count_real }}/{{
|
||||||
scope.row.main_count
|
scope.row.count
|
||||||
}}</template
|
}}</template
|
||||||
>
|
>
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
|
|
Loading…
Reference in New Issue