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