Browse Source

[企告]添‘发布状态’查询、’(取消)发布‘接口成功、首页渲染已发布公告

liangyan0105 3 years ago
parent
commit
b95632c08b

+ 2 - 0
README.md

@@ -156,6 +156,8 @@ yarn run lint
 
 	/**是否发布*/
  	private Boolean isRelease 
+   
+   发布状态 0 未 |||| 1 已
 
 - [用品领用]---------------------------
 

+ 30 - 19
src/views/dashboard/MyToDo.vue

@@ -77,19 +77,31 @@
     <a-row :gutter="24" class="news">
       <a-col :xs="24" :sm="24" :md="24" :lg="24" :xl="24" :style="{ marginBottom: '10px' }">
         <a-row :gutter="20">
-          <!-- 企业公告 -->
           <a-col :xs="24" :sm="24" :md="24" :lg="24" :xl="10" :style="{ marginBottom: '10px' }">
             <a-card title="企业公告" :bordered="false" class="notice newsColItem">
-              <template #extra><a href="javascript:void(0);" @click="openEnterAnn">详情</a></template>
-              <ul class="clearfix"  >
-                <!-- style="overflow:hidden;" -->
+              <template #extra>
+                <a href="javascript:void(0);" @click="openEnterAnn">更多</a>
+              </template>
+
+              <ul class="clearfix">
                 <li v-for="item in annList" :key="item.id">
-                  <a href="https://m.thepaper.cn/baijiahao_14855630" class="clearfix">
-                    <span class="department fl">[{{ item.type }}]</span>
-                    <span class="title fl">{{ item.title }}</span>
-                    <span class="createTime fr">{{ item.createTime }}</span>
-                    <span class="createBy fr">{{ item.createBy }}</span>
-                  </a>
+                  <!-- 显示已发布的公告  需轮播 -->
+                  <div v-if="item.isRelease == '1'">
+                    <a href="javascript:void(0);" class="clearfix">
+                      <span class="department fl" v-if="item.type == '项目'" style="color:#006d77;">
+                        [ {{ item.type }} ]
+                      </span>
+                      <span class="department fl" v-if="item.type == '人事'" style="color:#98c1d9;">
+                        [ {{ item.type }} ]
+                      </span>
+                      <span class="department fl" v-if="item.type == '财务'" style="color:orange;">
+                        [ {{ item.type }} ]
+                      </span>
+                      <span class="title fl">{{ item.title }}</span>
+                      <span class="createTime fr">{{ item.createTime }}</span>
+                      <span class="createBy fr">{{ item.createBy }}</span>
+                    </a>
+                  </div>
                 </li>
               </ul>
             </a-card>
@@ -113,7 +125,7 @@
           <!-- 友情链接 -->
           <a-col :xs="24" :sm="10" :md="12" :lg="12" :xl="7">
             <a-card title="友情链接" :bordered="false" class="link newsColItem">
-              <template #extra><a href="javascript:void(0);" @click="openMyLinks">详情</a></template>
+              <template #extra><a href="javascript:void(0);" @click="openMyLinks">更多</a></template>
 
               <div class="linkBtn">
                 <button><a href="https://www.yonyou.com/" target="_blank">用友</a></button>
@@ -240,7 +252,7 @@ import FullCalendar from '@fullcalendar/vue'
 import dayGridPlugin from '@fullcalendar/daygrid'
 import interactionPlugin from '@fullcalendar/interaction'
 import timeGridPlugin from '@fullcalendar/timegrid'
-import SchedulePlan from '@views/oa/my-plan/schedulePlan' // 子组件
+import SchedulePlan from '@views/oa/my-plan/schedulePlan'
 // import '@fullcalendar/core/main.css'
 import { scheduleGetListByTime, scheduleQueryById } from '@api/oa/cd-schedule'
 import { enterpriseEList } from '@api/oa/cd-enterprise-announcement'
@@ -323,7 +335,7 @@ export default {
       activeKeyAll: [],
       msg1Count: '0',
       msg2Count: '0',
-      annList: [],//企业公告列表
+      annList: [], //企业公告列表
       url: {
         listCementByUser: '/sys/annountCement/listByUser'
       },
@@ -356,7 +368,7 @@ export default {
     this.getScheduleData() //查询日程数据
     this.getDataList() //待办数据
     this.getActiveKeyAll() //OA按钮
-    this.getAnnList() //渲染公告
+    this.getAnnList() //渲染公告(已发布的)
   },
   computed: {
     // 系统消息计算
@@ -446,15 +458,14 @@ export default {
 
     // 公告数据
     getAnnList() {
-      enterpriseEList(null).then(res => {
-        // console.log('>>>>', res)
+      enterpriseEList().then(res => {
         if (res.success) {
-          this.annList = res.result.records ||[]
-        // =type: this.annList.type
-          console.log('----->', this.annList)
+          this.annList = res.result.records || []
+          console.log('首页公告----->', this.annList)
         }
       })
     },
+
     handleEvents(info) {
       // console.log('what', info)
       // 打印了事件(完成、位置)

+ 0 - 1
src/views/oa/enter-ann/add/addAnnModal.vue

@@ -185,7 +185,6 @@ export default {
                     news.title = vals.title
                     news.type = vals.type
                     news.createBy = vals.createBy
-                    // news.createTime = vals.createTime.format('YYYY-MM-DD HH:mm:ss')
                     news.isRelease = vals.isRelease
                     news.content = this.$refs.JEditor.myValue
                     // 编辑--------------------------------------

+ 64 - 34
src/views/oa/enterpriseAnnouncement.vue

@@ -10,11 +10,21 @@
             </a-form-item>
           </a-col>
 
-          <span>
-            <a-col :md="6" :sm="12">
+          <a-col :md="6" :sm="8">
+            <a-form-item label="发布状态">
+              <a-select v-model="queryParam.isRelease" placeholder="请选择发布状态">
+                <a-select-option value="">请选择</a-select-option>
+                <a-select-option value="0">未发布</a-select-option>
+                <a-select-option value="1">已发布</a-select-option>
+              </a-select>
+            </a-form-item>
+          </a-col>
+          <a-col :md="6" :sm="8">
+            <span style="float: left;overflow: hidden;">
               <a-button type="primary" style="left: 10px" @click="searchQuery" icon="search">查询</a-button>
-            </a-col>
-          </span>
+              <a-button type="primary" @click="searchReset" icon="reload" style="margin-left: 20px">重置</a-button>
+            </span>
+          </a-col>
         </a-row>
       </a-form>
     </div>
@@ -55,34 +65,41 @@
         >
           <!-- 发布 -->
           <span slot="isReleaseSlot" slot-scope="text, record">
-            <a-badge v-if="record.isRelease == '0'" status="warning" text="未发布" />
-            <a-badge v-else status="success" text="已发布" style="color:red;" />
+            <a-tag color="orange" v-if="record.isRelease == '0'">
+              未发布
+            </a-tag>
+            <a-tag color="green" v-else>
+              已发布
+            </a-tag>
           </span>
 
           <!-- 操作 -->
           <span slot="operationSlot" slot-scope="text, record">
             <a href="javascript:void(0);" @click="editAnn(record)"> 编辑 </a>
 
-            <a-divider type="vertical" v-if="record.isRelease == '0'"/>
-            <a-popconfirm v-if="record.isRelease == '0'" title="确定发布吗?" @confirm="sendAnn(record.id)" ok-text="是" cancel-text="否">
+            <a-divider type="vertical" v-if="record.isRelease == '0'" />
+
+            <!-- 判断是否发布 -->
+            <a-popconfirm
+              v-if="record.isRelease == '0'"
+              title="确定发布吗?"
+              @confirm="sendAnn(record.id)"
+              ok-text="是"
+              cancel-text="否"
+            >
               <a href="javascript:void(0);" class="sendGr"> 发布 </a>
             </a-popconfirm>
-
-            <a-divider type="vertical" v-if="record.isRelease == '1'"/>
-            <a-popconfirm v-if="record.isRelease == '1'" title="确定撤销发布吗?" ok-text="是" cancel-text="否">
-              <a href="javascript:void(0);" @click="save(record.id)" class="sendGr"> 取消发布 </a>
+            <!-- --------------------------------------------------- -->
+            <a-divider type="vertical" v-if="record.isRelease == '1'" />
+            <a-popconfirm
+              v-if="record.isRelease == '1'"
+              title="确定取消发布吗?"
+              @confirm="saveAnn(record.id)"
+              ok-text="是"
+              cancel-text="否"
+            >
+              <a href="javascript:void(0);" class="sendGr"> 取消发布 </a>
             </a-popconfirm>
-            <!-- 判断显示 发布 or 存稿 -->
-            <!-- <div v-if="record.isRelease == '0'">
-              <a-popconfirm title="确定发布吗?" ok-text="是" cancel-text="否">
-                <a href="javascript:void(0);" @click="sendAnn(record.id)" class="sendGr"> 发布 </a>
-              </a-popconfirm>
-              <div v-if="record.isRelease == '1'">
-                <a-popconfirm title="确定撤销发布吗?" ok-text="是" cancel-text="否">
-                  <a href="javascript:void(0);" @click="save(record.id)" class="sendGr"> 仅存稿 </a>
-                </a-popconfirm>
-              </div>
-            </div> -->
 
             <a-divider type="vertical" />
 
@@ -148,16 +165,18 @@ export default {
                 }
             ],
             annList: [], // 公告数据
+            // 分页参数
             pagination: {
                 total: 0,
                 current: 0,
                 pageSize: 0
-            }, // 分页
+            },
             showInfo: {}, // 编辑时回显的公告数据
             // 查询条件
             queryParam: {
-                pageNo: '1',
-                title: ''
+                pageNo: '1', // 页码
+                title: '', // 标题
+                isRelease: '' // 是否发布
             }
         }
     },
@@ -169,10 +188,10 @@ export default {
         getAnnList () {
             enterpriseEList(this.queryParam).then(res => {
                 // console.log('>>>>', this.queryParam)
-                // 无查询条件情况下  全部数据
                 if (res.success) {
                     this.annList = res.result.records
-                    // console.log('当前页数据', this.annList)
+                    console.log('列表公告=====', this.annList)
+
                     this.pagination = {
                         total: res.result.total,
                         current: res.result.current,
@@ -185,11 +204,16 @@ export default {
         searchQuery () {
             this.getAnnList() // 渲染公告
         },
+        searchReset () {
+            // console.log('>>>>重置')
+            this.queryParam.title = ''
+            this.queryParam.isRelease = ''
+            this.getAnnList()
+        },
 
         // 新增 按钮
         addAnn () {
             console.log('点击新增,负责打开弹框,剩下功能在子组件的保存按钮')
-            console.log('0000')
             this.$refs.AddAnnModal.addModalVisible = true
             this.$refs.AddAnnModal.title = '新增企业公告'
         },
@@ -223,15 +247,21 @@ export default {
 
         // 发布
         sendAnn (id) {
-            console.log('点击了发布')
-            // 接口
+            // console.log('点击了发布')
             enterpriseEReleseUpdate({ id: id, isRelease: '1' }).then(res => {
                 console.log(res)
+                this.$message.success('发布成功')
+                this.getAnnList()
             })
         },
-        // 撤销
-        backAnn (id) {
-            console.log('点击了撤销')
+        // 取消发布
+        saveAnn (id) {
+            console.log('点击了取消发布')
+            enterpriseEReleseUpdate({ id: id, isRelease: '0' }).then(res => {
+                console.log(res)
+                this.$message.success('取消发布')
+                this.getAnnList() // 渲染公告
+            })
         },
         // 操作  删除
         delAnn () {

+ 5 - 4
src/views/oa/my-plan/calTable.vue

@@ -9,6 +9,7 @@
               <a-input placeholder="请输入标题查询" v-model="queryParam.title" />
             </a-form-item>
           </a-col>
+
           <a-col :md="6" :sm="8">
             <a-form-item label="类型">
               <a-select v-model="queryParam.type" placeholder="请选择类型">
@@ -21,7 +22,7 @@
           </a-col>
 
           <a-col :md="6" :sm="8">
-            <span style="float: left;overflow: hidden;" class="table-page-search-submitButtons">
+            <span style="float: left;overflow: hidden;">
               <a-button type="primary" @click="searchQuery" icon="search">查询</a-button>
               <a-button type="primary" @click="searchReset" icon="reload" style="margin-left: 8px">重置</a-button>
             </span>
@@ -125,10 +126,10 @@ export default {
             }, // 分页
             planList: [], // 列表数据
             queryParam: {
-                pageNo: 1, // 当前页
-                title: '', //
+                pageNo: 1,
+                title: '',
                 type: ''
-            }, // 查询条件对象
+            },
             // 表头
             columns: [
                 {