|
@@ -76,14 +76,6 @@
|
|
|
placeholder="Add text"
|
|
placeholder="Add text"
|
|
|
maxlength="128"/>
|
|
maxlength="128"/>
|
|
|
</el-form-item>
|
|
</el-form-item>
|
|
|
- <div class="buttons">
|
|
|
|
|
- <el-button
|
|
|
|
|
- type="primary"
|
|
|
|
|
- @click="onSave"
|
|
|
|
|
- :loading="loading.save">
|
|
|
|
|
- SAVE
|
|
|
|
|
- </el-button>
|
|
|
|
|
- </div>
|
|
|
|
|
</el-form>
|
|
</el-form>
|
|
|
<el-form
|
|
<el-form
|
|
|
:model="this"
|
|
:model="this"
|
|
@@ -171,6 +163,17 @@
|
|
|
</div>
|
|
</div>
|
|
|
</el-form>
|
|
</el-form>
|
|
|
</div>
|
|
</div>
|
|
|
|
|
+ <div class="card-content flexcr">
|
|
|
|
|
+ <div class="buttons">
|
|
|
|
|
+ <el-button
|
|
|
|
|
+ type="primary"
|
|
|
|
|
+ @click="onSave"
|
|
|
|
|
+ :loading="loading.save">
|
|
|
|
|
+ SAVE
|
|
|
|
|
+ </el-button>
|
|
|
|
|
+ </div>
|
|
|
|
|
+ <audit-view :audit="form.audit"/>
|
|
|
|
|
+ </div>
|
|
|
<EmailAssignment
|
|
<EmailAssignment
|
|
|
v-bind="dialogAssign"
|
|
v-bind="dialogAssign"
|
|
|
@hide="hideAssignDialog"/>
|
|
@hide="hideAssignDialog"/>
|
|
@@ -180,6 +183,7 @@
|
|
|
<script>
|
|
<script>
|
|
|
import api from "../../api/apiEmails.js";
|
|
import api from "../../api/apiEmails.js";
|
|
|
import Pagination from '@/components/Pagination'
|
|
import Pagination from '@/components/Pagination'
|
|
|
|
|
+import AuditView from "@/components/AuditView"
|
|
|
import EmailAssignment from "./EmailAssignment.vue";
|
|
import EmailAssignment from "./EmailAssignment.vue";
|
|
|
export default {
|
|
export default {
|
|
|
data() {
|
|
data() {
|
|
@@ -257,7 +261,7 @@ export default {
|
|
|
}
|
|
}
|
|
|
}
|
|
}
|
|
|
},
|
|
},
|
|
|
- components: {EmailAssignment,Pagination},
|
|
|
|
|
|
|
+ components: {EmailAssignment,Pagination,AuditView},
|
|
|
created() {
|
|
created() {
|
|
|
this.getProtocolTypes();
|
|
this.getProtocolTypes();
|
|
|
this.getMailSettings();
|
|
this.getMailSettings();
|
|
@@ -467,10 +471,8 @@ export default {
|
|
|
}
|
|
}
|
|
|
.buttons {
|
|
.buttons {
|
|
|
display: flex;
|
|
display: flex;
|
|
|
|
|
+ padding: 15px;
|
|
|
align-items: center;
|
|
align-items: center;
|
|
|
- padding-top: 15px;
|
|
|
|
|
- padding-right: 110px;
|
|
|
|
|
- padding-bottom: 15px;
|
|
|
|
|
justify-content: center;
|
|
justify-content: center;
|
|
|
}
|
|
}
|
|
|
::v-deep .el-checkbox__input.is-checked + .el-checkbox__label {
|
|
::v-deep .el-checkbox__input.is-checked + .el-checkbox__label {
|