fix:增加评估管理-创建人 创建时间

This commit is contained in:
wyx
2023-03-03 18:04:45 +08:00
parent 31129433b2
commit 9f5fee0473
2 changed files with 12 additions and 8 deletions

View File

@@ -76,7 +76,7 @@
@click=" handleEditPage(record.id)" type="link">基础信息
</a-button>
<a-button v-if="record.releaseStatus === '2' && checkPer(record.permissions)"
@click=" toManage(record.id)" type="link">管理
@click=" toManage(record.id, record)" type="link">管理
</a-button>
<a-button v-if="checkPer(record.permissions)" @click=" handleOper(record,'copy')" type="link">复制
</a-button>
@@ -369,9 +369,10 @@ function handleEditPage(id) {
router.push("/researchadd/" + id);
}
function toManage(id) {
router.push("/managepage/" + id);
function toManage(id, record) {
router.push({ path: `/managepage/${id}`, query: { createName:record.createName, createTime:record.createTime } });
}
const handleNext = async () => {
await validate().catch(({ errorFields }) => {
message.warning(errorFields[0].errors.join());