Commit 1a681ab3 authored by zhengke's avatar zhengke

修改

parent 68d22d57
...@@ -173,50 +173,56 @@ ...@@ -173,50 +173,56 @@
</q-card-actions> </q-card-actions>
</q-card> </q-card>
</q-dialog> </q-dialog>
<el-drawer title="" :visible.sync="drawer" size="40%" :with-header="false"> <q-dialog v-model="persistent2" maximized full-height seamless position="right">
<q-img :src="NoticeBaseInfo.Image" spinner-color="white" style=" width: 100%;height: 120px" /> <q-card style="margin-top:21px;width:800px" class="no-border-radius classinfo_Dialog">
<div style="padding: 20px"> <q-img :src="NoticeBaseInfo.Image" v-if="NoticeBaseInfo.Image" spinner-color="white" style=" width: 100%;height: 120px" />
<div class="col-12 g row"> <div style="padding: 20px">
<div class="col-6"> <div class="col-12 g row" style="margin-bottom:10px;">
Fr:{{addMsg.From}} <div class="col-6">
Fr:{{addMsg.From}}
</div>
<div class="col-6 " style="text-align: right">
编号:{{nNumber}}
</div>
</div> </div>
<div class="col-6 " style="text-align: right"> <div class="col-12 row" style="margin-bottom:10px;">
编号:{{nNumber}} To:<span v-for="(item,index) in NInfo.DepartmentList"
:index="index">{{item.DeptName}}{{NInfo.DepartmentList.length==index+1?'':'、'}}</span>
</div>
<div class="col-12 row" style="margin-bottom:10px;">
Cc:<span v-for="(item,index) in NInfo.CopyPeopleList"
:index="index">{{item.EmName}}{{NInfo.CopyPeopleList.length==index+1?'':'、'}}</span>
</div>
<div class="col-12 row" style="margin-bottom:10px;">
Time:{{NInfo.UpdateTime}}
</div>
<div class="col-12 row" style="margin-top: 20px">
<span v-html="addMsg.Content"></span>
</div>
<div class="col-12 row" style="margin-top: 20px">
<div>附件:</div>
<template>
<div class="q-pa-md" style="max-width: 350px">
<q-list dense padding class="rounded-borders">
<q-item clickable v-ripple v-for="(file,fIndex) in fileList" :key="fIndex">
<q-item-section>
<div class="row" @click="wopen(file)">
<i class="iconfont icon-xiazai2" style="margin-right: 10px"></i>
{{file.name}}
</div>
</q-item-section>
</q-item>
</q-list>
</div>
</template>
</div> </div>
</div> </div>
<div class="col-12 row"> </q-card>
To:<span v-for="(item,index) in NInfo.DepartmentList" <div class="dialog-out-close" @click="persistent2=false"
:index="index">{{item.DeptName}}{{NInfo.DepartmentList.length==index+1?'':'、'}}</span> style="height:40px !important;border-top-left-radius: 4px !important;border-bottom-left-radius: 4px !important;">
</div> <q-icon name="iconfont icon-jujue1" size="26px" />
<div class="col-12 row">
Cc:<span v-for="(item,index) in NInfo.CopyPeopleList"
:index="index">{{item.EmName}}{{NInfo.CopyPeopleList.length==index+1?'':'、'}}</span>
</div>
<div class="col-12 row">
Time:{{NInfo.UpdateTime}}
</div>
<div class="col-12 row" style="margin-top: 20px">
<span v-html="addMsg.Content"></span>
</div>
<div class="col-12 row" style="margin-top: 20px">
<div>附件:</div>
<template>
<div class="q-pa-md" style="max-width: 350px">
<q-list dense padding class="rounded-borders">
<q-item clickable v-ripple v-for="(file,fIndex) in fileList" :key="fIndex">
<q-item-section>
<div class="row" @click="wopen(file)">
<i class="iconfont icon-xiazai2" style="margin-right: 10px"></i>
{{file.name}}
</div>
</q-item-section>
</q-item>
</q-list>
</div>
</template>
</div>
</div> </div>
</el-drawer> </q-dialog>
</div> </div>
</template> </template>
...@@ -347,6 +353,7 @@ ...@@ -347,6 +353,7 @@
nNumber: null, nNumber: null,
drawer: false, //显示右侧抽屉 drawer: false, //显示右侧抽屉
NInfo: {}, //详情内容 NInfo: {}, //详情内容
persistent2:false
} }
}, },
...@@ -644,7 +651,8 @@ ...@@ -644,7 +651,8 @@
}, },
EditConfig(id) { EditConfig(id) {
this.drawer = true; this.persistent2=true;
// this.drawer = true;
this.getNInfo(id) this.getNInfo(id)
}, },
setNoticeOtion(id, type) { setNoticeOtion(id, type) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment