|
|
|
@ -1,5 +1,5 @@ |
|
|
|
|
<template> |
|
|
|
|
<el-dialog :visible="true" v-if="type==='notice-list'" :show-close="false" width="500px"> |
|
|
|
|
<el-dialog :visible.sync="visible" @closed="$emit('close')" :show-close="false" width="500px"> |
|
|
|
|
<el-row type="flex" slot="title" justify="space-between" class="title"> |
|
|
|
|
<el-col>全部消息</el-col> |
|
|
|
|
<el-col class="text-right"> |
|
|
|
@ -23,6 +23,11 @@ export default { |
|
|
|
|
components: { NoticeContent }, |
|
|
|
|
props: { |
|
|
|
|
type: String |
|
|
|
|
}, |
|
|
|
|
data() { |
|
|
|
|
return { |
|
|
|
|
visible: true |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
</script> |
|
|
|
|