Compare commits
No commits in common. "bde8a7d5729df99bd9889d2a1166d9d618db14de" and "ef891857c4ce82d455ab7d66d17518349e9a3ee3" have entirely different histories.
bde8a7d572
...
ef891857c4
2
.env.usa
2
.env.usa
|
@ -2,7 +2,7 @@
|
||||||
ENV = 'usa'
|
ENV = 'usa'
|
||||||
NODE_ENV = 'usa'
|
NODE_ENV = 'usa'
|
||||||
# base public path
|
# base public path
|
||||||
VUE_APP_BASE_PATH = 'https://ei-code-prod.s3.amazonaws.com/2024-08-09/'
|
VUE_APP_BASE_PATH = 'https://ei-code-prod.s3.amazonaws.com/2024-08-08/'
|
||||||
|
|
||||||
# 是否开启登陆限制 true:是 false:否
|
# 是否开启登陆限制 true:是 false:否
|
||||||
VUE_APP_LOGIN_FOR_PERMISSION = true
|
VUE_APP_LOGIN_FOR_PERMISSION = true
|
||||||
|
|
32
src/main.js
32
src/main.js
|
@ -440,22 +440,22 @@ async function VueInit() {
|
||||||
done()
|
done()
|
||||||
}, 500)
|
}, 500)
|
||||||
}
|
}
|
||||||
// if (eval(process.env.VUE_APP_LOCK_FOR_PERMISSION_MFA)) {
|
if (eval(process.env.VUE_APP_LOCK_FOR_PERMISSION_MFA)) {
|
||||||
// sendMFAEmail({ UserId: my_userid, MfaType: 1 }).then((res) => {
|
sendMFAEmail({ UserId: my_userid, MfaType: 1 }).then((res) => {
|
||||||
// done();
|
done();
|
||||||
// Vue.prototype.$MFA({
|
Vue.prototype.$MFA({
|
||||||
// status: "lock",
|
status: "lock",
|
||||||
// UserId: my_userid,
|
UserId: my_userid,
|
||||||
// EMail: res.Result,
|
EMail: res.Result,
|
||||||
// username: my_username,
|
username: my_username,
|
||||||
// callBack: () => {
|
callBack: () => {
|
||||||
// closeLock(_vm)
|
closeLock(_vm)
|
||||||
// },
|
},
|
||||||
// })
|
})
|
||||||
// })
|
})
|
||||||
// } else {
|
} else {
|
||||||
closeLock(_vm)
|
closeLock(_vm)
|
||||||
// }
|
}
|
||||||
|
|
||||||
} else {
|
} else {
|
||||||
// console.log(111)
|
// console.log(111)
|
||||||
|
|
|
@ -272,22 +272,20 @@
|
||||||
</el-select>
|
</el-select>
|
||||||
</template>
|
</template>
|
||||||
<template slot="dialog-footer">
|
<template slot="dialog-footer">
|
||||||
<div style="margin-top:30px;">
|
<el-button
|
||||||
<el-button
|
|
||||||
:disabled="readingCategory_model.btnLoading"
|
:disabled="readingCategory_model.btnLoading"
|
||||||
type="primary"
|
type="primary"
|
||||||
@click="readingCategory_model.visible = false"
|
@click="readingCategory_model.visible = false"
|
||||||
>
|
>
|
||||||
{{ $t('common:button:cancel') }}
|
{{ $t('common:button:cancel') }}
|
||||||
</el-button>
|
</el-button>
|
||||||
<el-button
|
<el-button
|
||||||
type="primary"
|
type="primary"
|
||||||
:loading="readingCategory_model.btnLoading"
|
:loading="readingCategory_model.btnLoading"
|
||||||
@click="handleUpdateReadingCategory"
|
@click="handleUpdateReadingCategory"
|
||||||
>
|
>
|
||||||
{{ $t('common:button:save') }}
|
{{ $t('common:button:save') }}
|
||||||
</el-button>
|
</el-button>
|
||||||
</div>
|
|
||||||
</template>
|
</template>
|
||||||
</base-model>
|
</base-model>
|
||||||
<!-- 修改医生状态 -->
|
<!-- 修改医生状态 -->
|
||||||
|
|
|
@ -16,12 +16,10 @@
|
||||||
<el-input
|
<el-input
|
||||||
v-model="form.ClinicalDataSetEnName"
|
v-model="form.ClinicalDataSetEnName"
|
||||||
:disabled="data.IsFromSystemData === true"
|
:disabled="data.IsFromSystemData === true"
|
||||||
@input="form.ClinicalDataSetName = form.ClinicalDataSetEnName"
|
|
||||||
@blur="form.ClinicalDataSetName = form.ClinicalDataSetEnName"
|
|
||||||
/>
|
/>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
<!-- 临床数据名称 -->
|
<!-- 临床数据名称 -->
|
||||||
<!-- <el-form-item
|
<el-form-item
|
||||||
:label="$t('trials:processCfg:title:clinicalDataName')+ '(CN)'"
|
:label="$t('trials:processCfg:title:clinicalDataName')+ '(CN)'"
|
||||||
prop="ClinicalDataSetName"
|
prop="ClinicalDataSetName"
|
||||||
>
|
>
|
||||||
|
@ -29,7 +27,7 @@
|
||||||
v-model="form.ClinicalDataSetName"
|
v-model="form.ClinicalDataSetName"
|
||||||
:disabled="data.IsFromSystemData === true"
|
:disabled="data.IsFromSystemData === true"
|
||||||
/>
|
/>
|
||||||
</el-form-item> -->
|
</el-form-item>
|
||||||
<!-- 上传人 -->
|
<!-- 上传人 -->
|
||||||
<el-form-item
|
<el-form-item
|
||||||
:label="$t('trials:processCfg:title:uploader')"
|
:label="$t('trials:processCfg:title:uploader')"
|
||||||
|
|
Loading…
Reference in New Issue