diff --git a/src/api/ManufacturingCenter/ShopScheduling.js b/src/api/ManufacturingCenter/ShopScheduling.js new file mode 100644 index 00000000..aa12a67c --- /dev/null +++ b/src/api/ManufacturingCenter/ShopScheduling.js @@ -0,0 +1,24 @@ +import request from '@/utils/request' + +// 初始化工艺 +export function getPerson() { + return request({ + url: '', + method: 'post', + data: { + type: '3', + name: 'SELECT 姓名,人员编号 FROM 人事档案管理_人员名单 inner join dbo.人事档案管理_基础表_部门 on 人事档案管理_人员名单.考核部门编号=人事档案管理_基础表_部门.考核部门编号 where 人事档案管理_人员名单.考核部门编号=12 and 人员编号 <> 82 order by 姓名 ' + } + }) +} +export function getParts(pageCurrent, pageSize) { + return request({ + url: '', + method: 'post', + data: { + type: '1', + name: '车间生产管理工艺_车间排产_零件查询', + Pagination: pageCurrent + '&' + pageSize + } + }) +} diff --git a/src/styles/index.scss b/src/styles/index.scss index ae382d70..8187b825 100644 --- a/src/styles/index.scss +++ b/src/styles/index.scss @@ -278,3 +278,15 @@ h3 { .el-tabs--border-card>.el-tabs__content { padding: 15px 15px 0px 15px!important; } +//.el-table__header-wrapper { +// height: 25px!important; +//} +/* 设置表主体的高度 */ +.el-table__body td,.el-table__body th{ + padding:1px!important; + height: 25px!important; +} +/* 设置表头的高度 */ +.el-table__header td,.el-table__header th{ + padding:0px!important; +} diff --git a/src/views/ManufacturingCenter/Querybd/index.vue b/src/views/ManufacturingCenter/Querybd/index.vue index e592de52..01df9f7c 100644 --- a/src/views/ManufacturingCenter/Querybd/index.vue +++ b/src/views/ManufacturingCenter/Querybd/index.vue @@ -186,7 +186,8 @@ - + +