Browse Source

2025.03.07 NPI优化:

项目物料 - 页面整体分页大小没办法手动自己调整,已详情的方式弹出新界面
- 物料转量产后需增加撤销按钮
- 信息显示串行
- 下达前删除的文档下达后又出现了,邮件也同步发了,需要修正
- 删除其他部门权限,除了PJM其他人员不能操作只能查看
- 邮件收到有待上传的文档,系统里没有
java8
jiayang yue 10 months ago
parent
commit
e33244dd9f
  1. 6
      src/views/main-navbar.vue
  2. 5
      src/views/modules/eam/com_project_proof_record.vue
  3. 26
      src/views/modules/eam/eamProjectPartInfo.vue

6
src/views/main-navbar.vue

@ -149,8 +149,8 @@ export default {
message: this.$t('language.name'),
languageList: [],
pageLanguage: {
XjSysManage: 'CKP MES',
abbreviation: '旭捷',
XjSysManage: 'Checkpoint',
abbreviation: 'Checkpoint',
setting: '设置',
languageSetting: '语言设置',
userSetting: '用户设置',
@ -178,7 +178,7 @@ export default {
},
{
functionId: "systemInformation",
languageValue: '旭捷',
languageValue: 'Checkpoint',
objectId: 'abbreviation',
objectType: "label",
tableId: "systemInformation"

5
src/views/modules/eam/com_project_proof_record.vue

@ -51,9 +51,9 @@
v-else
header-align="center"
align="center"
width="50"
width="0"
fixed="right"
label="操作">
label="">
<template slot-scope="scope">
</template>
</el-table-column>
@ -2179,6 +2179,7 @@
border-radius: 4px;
padding: 10px;
margin-bottom: 10px;
overflow-x: auto;
}
</style>

26
src/views/modules/eam/eamProjectPartInfo.vue

@ -242,6 +242,28 @@
</div>
</template>
</el-table-column>
<el-table-column
v-else
fixed="right"
header-align="center"
align="center"
width="70"
label="操作">
<template slot-scope="scope">
<div v-if="scope.row.partType !== 'Active'">
<a style="color: gray; pointer-events: none;">详情</a>
</div>
<div v-else-if="scope.row.status !== '已量产' && scope.row.status !== '正式量产'">
<a type="text" size="small" @click="showProofDetailModal(scope.row)">详情</a>
</div>
<div v-else-if="scope.row.status === '已量产'">
<a style="color: #0c4dbb" type="text" size="small" @click="showProofDetailModal(scope.row)">详情</a>
</div>
<div v-else>
<a style="color: red" type="text" size="small" @click="showProofDetailModal(scope.row)">详情</a>
</div>
</template>
</el-table-column>
</el-table>
<el-pagination
@ -4552,7 +4574,7 @@ import {updateColumnSize} from "../../../api/table";
page: 1,
limit: 1000
}
this.$refs.proofRecord.init(inData)
this.$refs.proofRecord.init(inData,this.authUpdate)
},
showProofDetailModal(row) {
@ -4582,7 +4604,7 @@ import {updateColumnSize} from "../../../api/table";
limit: 1000
};
// proofRecord init
this.$refs.proofRecordModal.init(inData);
this.$refs.proofRecordModal.init(inData,this.authUpdate);
});
},

Loading…
Cancel
Save