|
|
@@ -6,8 +6,8 @@
|
|
|
</div>-->
|
|
|
<basicInfo @onSuccess="infoData"></basicInfo>
|
|
|
<!--消息提示设置-->
|
|
|
- <messageTips/>
|
|
|
-
|
|
|
+ <messageTips ref="messageTips" :data="setData"/>
|
|
|
+ <changeSite ref="changeSite" :data="setData"></changeSite>
|
|
|
<div class="container normal-panel" style="display:flex;justify-content:space-around;border-bottom:none">
|
|
|
<el-descriptions title="规则设置"></el-descriptions>
|
|
|
</div>
|
|
|
@@ -154,6 +154,7 @@ import productImage from './modules/productImage.vue'
|
|
|
|
|
|
import loginSelect from './modules/loginSelect.vue'
|
|
|
import messageTips from '../messageSendtype/index.vue'
|
|
|
+import changeSite from '../changeSite/index.vue'
|
|
|
import advertisementMag from '../advertisement_mag/index'
|
|
|
|
|
|
import customerCheckRule from "@/HManagement/siteManage/securityConfig/modules/customerCheckRule";
|
|
|
@@ -169,6 +170,7 @@ export default {
|
|
|
basicInfo,
|
|
|
productImage,
|
|
|
messageTips,
|
|
|
+ changeSite,
|
|
|
advertisementMag,
|
|
|
customerCheckRule,
|
|
|
projectCheckRule,
|
|
|
@@ -183,7 +185,8 @@ export default {
|
|
|
customerRule:{},
|
|
|
projectRule:{},
|
|
|
projectReportRule:{},
|
|
|
- projectprotectionperiod:''
|
|
|
+ projectprotectionperiod:'',
|
|
|
+ setData:''
|
|
|
}
|
|
|
},
|
|
|
computed:{
|
|
|
@@ -211,6 +214,7 @@ export default {
|
|
|
"content": {
|
|
|
}
|
|
|
})
|
|
|
+
|
|
|
this.obj = {
|
|
|
password_needcapital:res.data.password_needcapital,
|
|
|
password_needlowercase:res.data.password_needlowercase,
|
|
|
@@ -221,15 +225,19 @@ export default {
|
|
|
loginmode_phonenumber:res.data.loginmode_phonenumber,
|
|
|
loginmode_wechat:res.data.loginmode_wechat
|
|
|
}
|
|
|
+ /*this.setData = res.data*/
|
|
|
+ this.$refs.messageTips.form = Object.assign({},this.$refs.messageTips.form,res.data)
|
|
|
+ this.$refs.changeSite.form = Object.assign({},this.$refs.changeSite.form,res.data)
|
|
|
},
|
|
|
/*企业水印*/
|
|
|
async queryEnterpriseWatermark(){
|
|
|
+ console.log(this.siteinfo,'1111水印')
|
|
|
const res = await this.$api.requested({
|
|
|
"classname": "system.attachment.Attachment",
|
|
|
"method": "queryFileLink",
|
|
|
"content": {
|
|
|
"ownertable": 'sys_site',
|
|
|
- "ownerid": this.siteinfo.siteuid,
|
|
|
+ "ownerid": this.siteinfo.siteuid || 0,
|
|
|
"usetype":'watermark'//传空返回有所
|
|
|
}
|
|
|
})
|