|
@@ -32,7 +32,7 @@
|
|
|
<el-form-item label="公司简介">
|
|
|
<editor-bar class="editor" v-model.trim="form.companyIntroduce"></editor-bar>
|
|
|
</el-form-item>
|
|
|
- <el-form-item class="button-grounp">
|
|
|
+ <el-form-item v-if="show" class="button-grounp">
|
|
|
<el-button type="primary" @click="determine">确认修改</el-button>
|
|
|
</el-form-item>
|
|
|
</el-form>
|
|
@@ -49,6 +49,7 @@ export default {
|
|
|
cmpMailType: 0
|
|
|
},
|
|
|
info: {},
|
|
|
+ show: false,
|
|
|
email: {},
|
|
|
rules: {
|
|
|
companyAddress: [{
|
|
@@ -132,6 +133,24 @@ export default {
|
|
|
})
|
|
|
})
|
|
|
}
|
|
|
+ },
|
|
|
+ watch: {
|
|
|
+ 'form.companyAddress' (newValue) {
|
|
|
+ this.show = this.info.companyAddress !== newValue
|
|
|
+ console.log(this.info.companyAddress)
|
|
|
+ },
|
|
|
+ 'form.cmpMailAccount' (newValue) {
|
|
|
+ console.log(this.show)
|
|
|
+ this.show = this.email.cmpMailAccount !== newValue
|
|
|
+ },
|
|
|
+ 'form.cmpMailPassword' (newValue) {
|
|
|
+ console.log(this.show)
|
|
|
+ this.show = this.email.cmpMailPassword !== newValue
|
|
|
+ },
|
|
|
+ 'form.cmpMailType' (newValue) {
|
|
|
+ console.log(this.show)
|
|
|
+ this.show = this.email.cmpMailType !== newValue
|
|
|
+ }
|
|
|
}
|
|
|
}
|
|
|
</script>
|