This commit is contained in:
2026-03-24 13:38:11 +08:00
parent 12760aaf44
commit c6c262169d
9 changed files with 2924 additions and 773 deletions

View File

@@ -96,7 +96,11 @@
<div class="body-editor-container">
<div class="subject-label" style="margin-bottom: 10px;">{{ $t('mailboxMouldDetail.emailBody') }}:</div>
<CkeditorMail v-model="form.body" />
<TmrEmailEditor
v-model="form.body"
placeholder=""
/>
<!-- <CkeditorMail v-model="form.body" /> -->
</div>
</el-card>
</section>
@@ -106,7 +110,7 @@
<script>
import CkeditorMail from '@/components/page/components/email/CkeditorMail.vue';
import TmrEmailEditor from '@/components/page/components/email/TmrEmailEditor.vue';
const API = {
getAllJournal: 'api/Article/getJournal',
getTemplate: 'api/mail_template/getTemplate',
@@ -115,7 +119,7 @@ const API = {
export default {
name: 'mailboxMouldDetail',
components: { CkeditorMail },
components: { CkeditorMail,TmrEmailEditor },
data() {
return {
journalLoading: true,