diff --git a/src/api/trials.js b/src/api/trials.js
index 18cf520..b8866b8 100644
--- a/src/api/trials.js
+++ b/src/api/trials.js
@@ -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}`,
@@ -3641,4 +3649,12 @@ export function saveTaskQuestion(saveQuestionType, param) {
method: 'post',
data: param
})
+}
+// 项目添加角色修改权限
+export function updateTrialUserRole(data) {
+ return request({
+ url: `/TrialMaintenance/updateTrialUserRole`,
+ method: 'put',
+ data
+ })
}
\ No newline at end of file
diff --git a/src/views/email-recompose/index.vue b/src/views/email-recompose/index.vue
index c4f7d0d..5b32125 100644
--- a/src/views/email-recompose/index.vue
+++ b/src/views/email-recompose/index.vue
@@ -11,9 +11,9 @@
-
+
@@ -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)