|
@@ -1,63 +1,54 @@
|
|
|
<template>
|
|
|
<!--收件箱详情 只查不改-->
|
|
|
- <div class="box">
|
|
|
- <el-card class="box-card">
|
|
|
+ <div class="app-container">
|
|
|
<!-- <el-row class="title">-->
|
|
|
<!-- 编号为1的邮件-->
|
|
|
<!-- </el-row>-->
|
|
|
- <el-row :gutter="80">
|
|
|
- <el-col :span="1">
|
|
|
- <el-tag>发件人</el-tag>
|
|
|
- </el-col >
|
|
|
- <el-col :span="22"><span class="hg">{{form.senderName}}</span></el-col>
|
|
|
- </el-row>
|
|
|
- <el-row :gutter="80">
|
|
|
- <el-col :span="1">
|
|
|
- <el-tag>时 间</el-tag>
|
|
|
- </el-col >
|
|
|
- <el-col :span="22"><span class="hg">{{form.readTime}}</span></el-col>
|
|
|
- </el-row>
|
|
|
- <el-row :gutter="80">
|
|
|
- <el-col :span="1">
|
|
|
- <el-tag>收件人</el-tag>
|
|
|
- </el-col >
|
|
|
- <el-col :span="22"><span class="hg">{{form.receiverName}}</span></el-col>
|
|
|
- </el-row>
|
|
|
- <el-row :gutter="80">
|
|
|
- <el-col :span="1">
|
|
|
- <el-tag>邮件主题</el-tag>
|
|
|
- </el-col >
|
|
|
- <el-col :span="22"><span class="hg">{{form.mailTheme}}</span></el-col>
|
|
|
- </el-row>
|
|
|
- <el-row :gutter="80">
|
|
|
- <el-col :span="1">
|
|
|
- <el-tag>附件</el-tag>
|
|
|
- </el-col >
|
|
|
- <el-col :span="22">
|
|
|
- <span class="hg" v-for="site in fujian">
|
|
|
+ <el-form ref="form" :model="form" :rules="rules" label-width="80px">
|
|
|
+ <el-form-item label="发件人" prop="senderName" >
|
|
|
+ <el-input v-model="form.senderName" placeholder="" clearable />
|
|
|
+ </el-form-item>
|
|
|
+ <el-form-item label="接收时间" prop="readTime" >
|
|
|
+ <el-input v-model="form.readTime" placeholder="" clearable />
|
|
|
+ </el-form-item>
|
|
|
+ <el-form-item label="收件人" prop="receiverName" >
|
|
|
+ <el-input v-model="form.receiverName" placeholder="" clearable />
|
|
|
+ </el-form-item>
|
|
|
+ <el-form-item label="收件主题" prop="mailTheme" >
|
|
|
+ <el-input v-model="form.mailTheme" placeholder="" clearable />
|
|
|
+ </el-form-item>
|
|
|
+ <el-form-item label="附件" prop="mailTheme" >
|
|
|
+ <span class="hg" v-for="site in fujian">
|
|
|
<a class="fujian" :href="devapi + site.path">{{site.name}} </a>
|
|
|
- </span></el-col>
|
|
|
- </el-row>
|
|
|
- </el-card>
|
|
|
- <el-row>
|
|
|
- <p class="text">
|
|
|
- <el-row>
|
|
|
- <!--{{form}}-->
|
|
|
- <span v-html="form.mailContent"></span>
|
|
|
- </el-row>
|
|
|
+ </span>
|
|
|
+ </el-form-item>
|
|
|
+ <el-form-item label="邮件内容" prop="mailContent" style="height: 250px;">
|
|
|
+ <Editor v-model="form.mailContent" />
|
|
|
+ </el-form-item>
|
|
|
+ </el-form>
|
|
|
|
|
|
-
|
|
|
- </p>
|
|
|
- </el-row>
|
|
|
+<!-- <el-row :gutter="80">-->
|
|
|
+<!-- <el-col :span="1">-->
|
|
|
+<!-- <el-tag>附件</el-tag>-->
|
|
|
+<!-- </el-col >-->
|
|
|
+<!-- <el-col :span="22">-->
|
|
|
+<!-- <span class="hg" v-for="site in fujian">-->
|
|
|
+<!-- <a class="fujian" :href="devapi + site.path">{{site.name}} </a>-->
|
|
|
+<!-- </span></el-col>-->
|
|
|
+<!-- </el-row>-->
|
|
|
|
|
|
</div>
|
|
|
</template>
|
|
|
|
|
|
<script>
|
|
|
import { listDetail, getDetail, delDetail, addDetail, updateDetail, exportDetail } from "@/api/system/email/detail";
|
|
|
+ import Editor from '@/components/Editor';
|
|
|
|
|
|
export default {
|
|
|
name: 'receiptdetails',
|
|
|
+ components: {
|
|
|
+ Editor
|
|
|
+ },
|
|
|
data() {
|
|
|
return {
|
|
|
// 遮罩层
|