|
@@ -1,65 +1,42 @@
|
|
<template>
|
|
<template>
|
|
<!--发件箱详情 只查不改-->
|
|
<!--发件箱详情 只查不改-->
|
|
- <div class="box">
|
|
|
|
|
|
+ <div class="app-container">
|
|
|
|
+ <el-form ref="form" :model="form" :rules="rules" label-width="80px">
|
|
<input hidden="hidden" id="keys" v-model="mailGuid"></input>
|
|
<input hidden="hidden" id="keys" v-model="mailGuid"></input>
|
|
- <el-card class="box-card">
|
|
|
|
-<!-- <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.createTime | format('yyyy-MM-dd hh:mm:ss')}}</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">
|
|
|
|
- <a class="fujian" :href="devapi + site.path" target="_blank">{{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>
|
|
|
|
-
|
|
|
|
-
|
|
|
|
- </p>
|
|
|
|
- </el-row>
|
|
|
|
-
|
|
|
|
|
|
+ <el-form-item label="发件人" prop="senderName">
|
|
|
|
+ <el-input v-model="form.senderName" placeholder="" clearable />
|
|
|
|
+ </el-form-item>
|
|
|
|
+ <el-form-item label="接收时间" prop="createTime">
|
|
|
|
+ <el-input v-model="form.createTime" placeholder="" clearable />
|
|
|
|
+ </el-form-item>
|
|
|
|
+ <el-form-item label="收件人" prop="createTime">
|
|
|
|
+ <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="fujian">
|
|
|
|
+ <span class="hg" v-for="site in fujian">
|
|
|
|
+ <a class="fujian" :href="devapi + site.path" target="_blank" >{{site.name.length > 0 ? site.name :'无附件'}}</a>
|
|
|
|
+ </span>
|
|
|
|
+ </el-form-item>
|
|
|
|
+ <el-form-item label="邮件内容" prop="mailContent" style="height: 250px;">
|
|
|
|
+ <Editor v-model="form.mailContent" />
|
|
|
|
+ </el-form-item>
|
|
|
|
+ </el-form>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
</template>
|
|
|
|
|
|
<script>
|
|
<script>
|
|
// import { listDetail, getDetail, delDetail, addDetail, updateDetail, exportDetail } from "@/api/system/email/detail";
|
|
// import { listDetail, getDetail, delDetail, addDetail, updateDetail, exportDetail } from "@/api/system/email/detail";
|
|
import { listInfo, getInfo, delInfo, addInfo, updateInfo, exportInfo } from "@/api/system/email/info";
|
|
import { listInfo, getInfo, delInfo, addInfo, updateInfo, exportInfo } from "@/api/system/email/info";
|
|
|
|
+ import Editor from '@/components/Editor';
|
|
|
|
|
|
export default {
|
|
export default {
|
|
name: 'senddetails',
|
|
name: 'senddetails',
|
|
|
|
+ components: {
|
|
|
|
+ Editor
|
|
|
|
+ },
|
|
data() {
|
|
data() {
|
|
return {
|
|
return {
|
|
// 遮罩层
|
|
// 遮罩层
|