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