1. 新增部门产线绑定字段,优化部门列表展示 2. 添加薪资、考核、维度明细的批量新增/修改接口与实现 3. 新增绩效考核得分计算引擎与WMS数据拉取服务 4. 新增一键生成薪资与考核记录的弹窗功能 5. 优化配置页面UI与新增批量导入项目功能 6. 隐藏 coil/ship.vue 页面的校正按钮
40 lines
730 B
Vue
40 lines
730 B
Vue
<template>
|
|
<BasePage
|
|
:querys="querys"
|
|
:labelType="labelType"
|
|
:showStatus="showStatus"
|
|
:hideType="hideType"
|
|
:showControl="showControl"
|
|
:showExportTime="showExportTime"
|
|
:isShipView="isShipView"
|
|
:correctButton="correctButton"
|
|
/>
|
|
</template>
|
|
|
|
<script>
|
|
import BasePage from './panels/base.vue';
|
|
|
|
export default {
|
|
name: "Exp-Coil",
|
|
components: {
|
|
BasePage
|
|
},
|
|
data() {
|
|
return {
|
|
qrcode: false,
|
|
querys: {
|
|
dataType: 1,
|
|
// materialType: '成品',
|
|
status: 1
|
|
},
|
|
isShipView: true,
|
|
showControl: false,
|
|
labelType: '3',
|
|
showStatus: false,
|
|
hideType: false,
|
|
showExportTime: true,
|
|
correctButton: false,
|
|
}
|
|
}
|
|
}
|
|
</script> |