美国环境修改
continuous-integration/drone/push Build is passing Details

uat_us
wangxiaoshuang 2024-07-12 18:07:31 +08:00
parent a78195fbca
commit 8a4674452f
4 changed files with 716 additions and 696 deletions

View File

@ -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-07-11/' VUE_APP_BASE_PATH = 'https://ei-code-prod.s3.amazonaws.com/2024-07-12/'
# 是否开启登陆限制 true:是 false:否 # 是否开启登陆限制 true:是 false:否
VUE_APP_LOGIN_FOR_PERMISSION = true VUE_APP_LOGIN_FOR_PERMISSION = true

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 91 KiB

After

Width:  |  Height:  |  Size: 98 KiB

View File

@ -23,7 +23,7 @@
> >
<svg-icon <svg-icon
icon-class="login-bg" icon-class="login-bg"
style="width: 450px; height: 450px" style="width: 90%; height: 90%"
v-if="NODE_ENV === 'usa'" v-if="NODE_ENV === 'usa'"
/> />
<img src="@/assets/login-bg.png" v-else /> <img src="@/assets/login-bg.png" v-else />
@ -510,7 +510,7 @@ $light_gray: #606266;
width: 100%; width: 100%;
display: flex; display: flex;
align-items: center; align-items: center;
justify-content: center; justify-content: flex-end;
} }
} }
.login-r { .login-r {

View File

@ -372,7 +372,7 @@
<pagination class="page" :total="total" :page.sync="searchData.PageIndex" :limit.sync="searchData.PageSize" @pagination="getList" /> <pagination class="page" :total="total" :page.sync="searchData.PageIndex" :limit.sync="searchData.PageSize" @pagination="getList" />
<el-dialog <el-dialog
v-if="ConfirmReReadingVisible" v-if="ConfirmReReadingVisible"
title="驳回" :title="$t('trials:rereadTrack:reject:title:reject')"
:visible.sync="ConfirmReReadingVisible" :visible.sync="ConfirmReReadingVisible"
width="600px" width="600px"
append-to-body append-to-body
@ -764,8 +764,16 @@ export default {
}) })
}, },
confirmSign(type) { confirmSign(type) {
const { HeavyReadingApproval } = const_.processSignature const { HeavyReadingApproval } = const_.processSignature;
this.type = type this.type = type
if(type === 2){
return this.$refs.reasonForm.validate(validate=>{
if(validate){
this.signCode = HeavyReadingApproval
this.signVisible = true
}
})
}
this.signCode = HeavyReadingApproval this.signCode = HeavyReadingApproval
this.signVisible = true this.signVisible = true
}, },