|
@@ -81,7 +81,7 @@
|
|
|
<div class="flexBetween">
|
|
|
<el-form-item
|
|
|
:style="contractForm.isTestModule === 1?'width:25%;':'width:50%;'"
|
|
|
- label="是否开启电签"
|
|
|
+ :label="isShowDq?'是否开启电签':'认证设置'"
|
|
|
prop="isElectronicSignature"
|
|
|
>
|
|
|
<el-radio-group v-model="contractForm.isElectronicSignature">
|
|
@@ -861,6 +861,7 @@ export default {
|
|
|
callback();
|
|
|
};
|
|
|
return {
|
|
|
+ isShowDq: true,
|
|
|
idList: [],
|
|
|
checkList: [],
|
|
|
postIdss: '',
|
|
@@ -1064,6 +1065,13 @@ export default {
|
|
|
created() {
|
|
|
this.init();
|
|
|
//console.log(this.userInfo)
|
|
|
+ let hostName= window.location.hostname;
|
|
|
+ console.log(hostName,'hostName');
|
|
|
+ if(hostName==='183.247.216.148'){
|
|
|
+ this.isShowDq=false//183显示认证设置
|
|
|
+ }else{
|
|
|
+ this.isShowDq=true
|
|
|
+ }
|
|
|
},
|
|
|
mounted() {
|
|
|
this.$nextTick(() => {
|