邮箱初始化删除角色栏
continuous-integration/drone/push Build is passing
Details
continuous-integration/drone/push Build is passing
Details
parent
57f6761d42
commit
832d239f16
|
@ -2912,6 +2912,14 @@ export function getReadingVisitStudyList(trialId, sujectVisitId, visitTaskId) {
|
|||
}
|
||||
})
|
||||
}
|
||||
// 获取关键序列
|
||||
export function getKeySeries(data) {
|
||||
return request({
|
||||
url: `/SubjectVisit/getKeySeries`,
|
||||
method: 'post',
|
||||
data
|
||||
})
|
||||
}
|
||||
export function localFilePreview(relativePath) {
|
||||
return request({
|
||||
url: `/Common/LocalFilePreview?relativePath=${relativePath}`,
|
||||
|
@ -3642,3 +3650,11 @@ export function saveTaskQuestion(saveQuestionType, param) {
|
|||
data: param
|
||||
})
|
||||
}
|
||||
// 项目添加角色修改权限
|
||||
export function updateTrialUserRole(data) {
|
||||
return request({
|
||||
url: `/TrialMaintenance/updateTrialUserRole`,
|
||||
method: 'put',
|
||||
data
|
||||
})
|
||||
}
|
|
@ -11,9 +11,9 @@
|
|||
<el-input v-model="password.Email" disabled />
|
||||
</el-form-item>
|
||||
<!-- 用户名 -->
|
||||
<el-form-item :label="$t('recompose:form:role')" prop="UserType">
|
||||
<!-- <el-form-item :label="$t('recompose:form:role')" prop="UserType">
|
||||
<el-input v-model="password.UserType" disabled />
|
||||
</el-form-item>
|
||||
</el-form-item> -->
|
||||
<!-- 用户名 -->
|
||||
<el-form-item :label="$t('recompose:form:userName')" prop="NewUserName">
|
||||
<el-input v-model="password.NewUserName" />
|
||||
|
@ -99,7 +99,7 @@ export default {
|
|||
this.password.UserId = this.$route.query.UserId
|
||||
this.password.NewUserName = this.$route.query.UserName
|
||||
this.password.Email = this.$route.query.Email
|
||||
this.password.UserType = this.$route.query.UserType
|
||||
// this.password.UserType = this.$route.query.UserType
|
||||
this.password.access_token = this.$route.query.access_token
|
||||
this.$i18n.locale = this.$route.query.lang
|
||||
this.setLanguage(this.$route.query.lang)
|
||||
|
|
Loading…
Reference in New Issue