uat_us
caiyiling 2024-02-20 15:54:42 +08:00
commit 893a528bfc
5 changed files with 15 additions and 9 deletions

View File

@ -2,7 +2,7 @@
ENV = 'production' ENV = 'production'
NODE_ENV = 'production' NODE_ENV = 'production'
# base public path # base public path
VUE_APP_BASE_PATH = 'https://ei-code-prod.s3.amazonaws.com/2024-01-31/' VUE_APP_BASE_PATH = 'https://ei-code-prod.s3.amazonaws.com/2024-02-16/'
# 是否开启登陆限制 true:是 false:否 # 是否开启登陆限制 true:是 false:否
VUE_APP_LOGIN_FOR_PERMISSION = false VUE_APP_LOGIN_FOR_PERMISSION = false

View File

@ -109,7 +109,7 @@
<span style="color:#428bca">关于</span> <span style="color:#428bca">关于</span>
</a> </a>
</div> </div>
<Vcode :show="isShow" slider-text="" :imgs="[Img1]" @success="onSuccess" /> <!-- <Vcode :show="isShow" slider-text="" :imgs="[Img1]" @success="onSuccess" />-->
<el-dialog <el-dialog
v-if="aboutVisible" v-if="aboutVisible"
:visible.sync="aboutVisible" :visible.sync="aboutVisible"
@ -230,7 +230,8 @@ export default {
this.loginType = this.$route.query.loginType this.loginType = this.$route.query.loginType
this.$refs.loginForm.validate(valid => { this.$refs.loginForm.validate(valid => {
if (valid) { if (valid) {
this.isShow = true this.onSuccess()
// this.isShow = true
} else { } else {
// console.log('error submit!!') // console.log('error submit!!')
return false return false

View File

@ -39,7 +39,6 @@
</el-form-item> </el-form-item>
</el-form> </el-form>
</template> </template>
<template slot="main-container"> <template slot="main-container">
<!-- 系统文件列表 --> <!-- 系统文件列表 -->
<el-table <el-table
@ -324,16 +323,21 @@ export default {
closeSignDialog(isSave) { closeSignDialog(isSave) {
this.signVisible = false this.signVisible = false
if (isSave) { if (isSave) {
this.$confirm('是否进入下一个签署文档?').then(res => { this.$confirm(this.$t('trials:self-attachment:message:nextDocument')).then(res => {
getNextUnSignDocument({ getNextUnSignDocument({
TrialId: this.trialId TrialId: this.trialId
}).then(res => { }).then(res => {
if (!res.Result) {
this.currentIsConfirm = true
} else {
this.handleSign(res.Result) this.handleSign(res.Result)
}
this.getList()
}) })
}).catch(() => { }).catch(() => {
this.currentIsConfirm = true this.currentIsConfirm = true
})
this.getList() this.getList()
})
} }
}, },

View File

@ -83,7 +83,7 @@
<!-- <div>{{ dicomInfo.time }}</div> --> <!-- <div>{{ dicomInfo.time }}</div> -->
</div> </div>
<div ref="sliderBox" class="my_slider_box" style="position: absolute;right: 1px;height: calc(100% - 140px);transform: translateY(-50%);top: calc(50% - 30px);width: 10px;background: #333;cursor: pointer" @click.stop="goViewer($event)"> <div ref="sliderBox" class="my_slider_box" style="position: absolute;right: 1px;height: calc(100% - 140px);transform: translateY(-50%);top: calc(50% - 30px);width: 10px;background: #333;cursor: pointer" @click.stop="goViewer($event)">
<div :style="{top: height + '%'}" style="z-index:10;background: #9e9e9e;height: 20px;width: 100%;position: absolute;top: 0;cursor: move" @mousedown.stop="sliderMousedown($event)" /> <div :style="{top: height + '%'}" style="z-index:10;background: #9e9e9e;height: 20px;width: 100%;position: absolute;top: 0;cursor: move" @click.stop.prevent="() => {return}" @mousedown.stop="sliderMousedown($event)" />
</div> </div>
<div style="position: absolute;left: 50%;top: 30px;color: #f44336;transform: translateX(-50%);"> <div style="position: absolute;left: 50%;top: 30px;color: #f44336;transform: translateX(-50%);">
{{ markers.top }} {{ markers.top }}

View File

@ -76,7 +76,7 @@
<!-- <div>{{ dicomInfo.time }}</div> --> <!-- <div>{{ dicomInfo.time }}</div> -->
</div> </div>
<div ref="sliderBox" class="my_slider_box" style="position: absolute;right: 1px;height: calc(100% - 140px);transform: translateY(-50%);top: calc(50% - 30px);width: 10px;background: #333;cursor: pointer" @click.stop="goViewer($event)"> <div ref="sliderBox" class="my_slider_box" style="position: absolute;right: 1px;height: calc(100% - 140px);transform: translateY(-50%);top: calc(50% - 30px);width: 10px;background: #333;cursor: pointer" @click.stop="goViewer($event)">
<div :style="{top: height + '%'}" style="z-index:10;background: #9e9e9e;height: 20px;width: 100%;position: absolute;top: 0;cursor: move" @mousedown.stop="sliderMousedown($event)" /> <div :style="{top: height + '%'}" style="z-index:10;background: #9e9e9e;height: 20px;width: 100%;position: absolute;top: 0;cursor: move" @click.stop.prevent="() => {return}" @mousedown.stop="sliderMousedown($event)" />
</div> </div>
<div style="position: absolute;left: 50%;top: 30px;color: #f44336;transform: translateX(-50%);"> <div style="position: absolute;left: 50%;top: 30px;color: #f44336;transform: translateX(-50%);">
{{ markers.top }} {{ markers.top }}
@ -471,6 +471,7 @@ export default {
}, },
methods: { methods: {
goViewer(e) { goViewer(e) {
console.log('goViewer')
console.log(this.$refs['sliderBox'].clientHeight) console.log(this.$refs['sliderBox'].clientHeight)
var height = e.offsetY * 100 / this.$refs['sliderBox'].clientHeight var height = e.offsetY * 100 / this.$refs['sliderBox'].clientHeight
this.height = height this.height = height