1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- <template>
- <view>
- <u-cell-group :border="false">
- <u-cell :border="false">
- <u--text slot="title" :text="`标题:${notication.title}`" ></u--text>
- </u-cell>
- <u-cell :border="false">
- <u--text slot="title" type="info" :text="`发布者:${notication.createBy.name},类型:${$dictUtils.getDictLabel('oa_notify_type', notication.type ,'')}`"></u--text>
- </u-cell>
- <u-cell>
- <u--text slot="title" type="info" :text="`发布时间: ${notication.createTime}`"></u--text>
- </u-cell>
- </u-cell-group>
- <view class="padding bg-white">
- <u-parse :content="notication.content"></u-parse>
- </view>
- </view>
- </template>
- <script>
- import notifyService from "@/api/notify/notifyService";
- export default {
- data() {
- return {
- notication: {
- title: '',
- createTime: '',
- createBy: {
- name: ''
- }
- }
- }
- },
- onLoad (option) {
- notifyService.query({isSelf:true, id:option.id}).then((data)=>{
- this.notication = data
- });
- }
- }
- </script>
- <style>
- </style>
|