用户追溯添加跳转至项目详情
continuous-integration/drone/push Build is passing
Details
continuous-integration/drone/push Build is passing
Details
parent
949ec6d2d6
commit
541e309d1d
|
@ -92,7 +92,6 @@
|
|||
</el-form>
|
||||
</div>
|
||||
|
||||
<!-- 浏览器推荐版本列表 -->
|
||||
<el-table
|
||||
v-loading="loading"
|
||||
v-adaptive="{ bottomOffset: 45 }"
|
||||
|
@ -159,7 +158,6 @@
|
|||
prop="TrialUserRoleList"
|
||||
:label="$t('system:retrospect:table:TrialUserRoleList')"
|
||||
show-overflow-tooltip
|
||||
sortable="custom"
|
||||
>
|
||||
<template slot-scope="scope">
|
||||
<el-tooltip
|
||||
|
@ -212,14 +210,15 @@
|
|||
width="200"
|
||||
fixed="right"
|
||||
>
|
||||
<!-- <template slot-scope="scope">
|
||||
<el-button type="text" @click="handleEdit(scope.row)">
|
||||
{{ $t('dictionary:browser:button:edit') }}
|
||||
</el-button>
|
||||
<el-button type="text" @click="handleDelete(scope.row)">
|
||||
{{ $t('dictionary:browser:button:delete') }}
|
||||
</el-button>
|
||||
</template> -->
|
||||
<template slot-scope="scope">
|
||||
<!-- 详情 -->
|
||||
<el-button
|
||||
circle
|
||||
icon="el-icon-info"
|
||||
:title="$t('system:retrospect:table:detail')"
|
||||
@click.stop="handleDetail(scope.row)"
|
||||
/>
|
||||
</template>
|
||||
</el-table-column>
|
||||
</el-table>
|
||||
|
||||
|
@ -311,6 +310,11 @@ export default {
|
|||
this.loading = false
|
||||
}
|
||||
},
|
||||
handleDetail(row) {
|
||||
this.$router.push({
|
||||
path: `/trials/trials-panel?trialId=${row.TrialId}&trialCode=${row.TrialCode}&researchProgramNo=${row.ResearchProgramNo}`,
|
||||
})
|
||||
},
|
||||
// 查询
|
||||
handleSearch() {
|
||||
this.searchData.PageIndex = 1
|
||||
|
|
Loading…
Reference in New Issue