项目激活添加权限
parent
93d352eec2
commit
e303e15edb
|
@ -25,8 +25,8 @@
|
|||
>
|
||||
<el-select v-model="searchData.NoticeTypeEnum" clearable size="small">
|
||||
<el-option
|
||||
v-for="item of $d.NoteType"
|
||||
:key="item.value"
|
||||
v-for="item of $d.TrialType"
|
||||
:key="item.id"
|
||||
:label="item.label"
|
||||
:value="item.value"
|
||||
/>
|
||||
|
@ -60,10 +60,10 @@
|
|||
size="small"
|
||||
>
|
||||
<el-option
|
||||
v-for="item of roleList"
|
||||
v-for="item of $d.UserType"
|
||||
:key="item.Id"
|
||||
:label="item.UserTypeShortName"
|
||||
:value="item.Id"
|
||||
:label="item.label"
|
||||
:value="item.value"
|
||||
/>
|
||||
</el-select>
|
||||
</el-form-item>
|
||||
|
|
|
@ -273,6 +273,7 @@
|
|||
<!-- 激活 -->
|
||||
<el-button
|
||||
v-if="!scope.row.AuthorizationEncrypt"
|
||||
v-hasPermi="['trials:trials-list:activate']"
|
||||
circle
|
||||
icon="el-icon-key"
|
||||
:title="$t('trials:trials-list:action:activate')"
|
||||
|
|
|
@ -96,7 +96,10 @@
|
|||
{{ trialInfo.AuthorizationDate }}
|
||||
</el-descriptions-item>
|
||||
</el-descriptions>
|
||||
<div v-if="otherInfo && otherInfo.TrialId">
|
||||
<div
|
||||
v-if="otherInfo && otherInfo.TrialId"
|
||||
v-hasPermi="['trials:trials-list:activate']"
|
||||
>
|
||||
<p>项目授权信息</p>
|
||||
<el-descriptions :column="2" border style="width: 1000px">
|
||||
<!--单位名称-->
|
||||
|
|
Loading…
Reference in New Issue