lilei 2 vuotta sitten
vanhempi
commit
c4679d4410

+ 1 - 1
public/version.json

@@ -1,5 +1,5 @@
 {
   "message": "发现有新版本发布,确定更新系统?",
   "vendorJsVersion": "",
-  "version": 1663669159876
+  "version": 1663721542481
 }

+ 2 - 2
src/components/NoticeIcon/NoticeIcon.vue

@@ -12,7 +12,7 @@
     <template slot="content">
       <a-spin :spinning="loading">
         <a-tabs>
-          <a-tab-pane tab="公告" key="1">
+          <a-tab-pane tab="消息" key="1">
             <a-list>
               <a-list-item>
                 <a-list-item-meta title="你收到了 14 份新周报" description="一年前">
@@ -49,7 +49,7 @@
   <span @click="fetchNotice" class="header-notice" ref="noticeRef">
     <a-badge :count="unreadCount">
       <a-icon style="font-size: 16px; padding: 0 5px 0 0" type="bell" />
-      <span>公告</span>
+      <span>消息</span>
     </a-badge>
   </span>
 </template>

+ 2 - 2
src/config/router.config.js

@@ -58,13 +58,13 @@ export const asyncRouterMap = [
                 },
                 hidden: true
               },
-              // 公告
+              // 消息
               {
                 path: '/notice',
                 name: 'notice',
                 component: () => import(/* webpackChunkName: "home" */ '@/views/notice/list'),
                 meta: {
-                  title: '公告',
+                  title: '消息',
                   icon: 'bell',
                   hidden: true
                 }

+ 5 - 5
src/views/notice/list.vue

@@ -10,8 +10,8 @@
             </a-form-item>
           </a-col>
           <a-col :md="6" :sm="24">
-            <a-form-item label="公告名称">
-              <a-input id="noticeList-title" v-model.trim="queryParam.notice.title" allowClear placeholder="请输入公告名称"/>
+            <a-form-item label="标题">
+              <a-input id="noticeList-title" v-model.trim="queryParam.notice.title" allowClear placeholder="请输入标题"/>
             </a-form-item>
           </a-col>
           <a-col :md="6" :sm="24">
@@ -78,7 +78,7 @@ export default {
       columns: [
         { title: '序号', dataIndex: 'no', width: 80, align: 'center' },
         { title: '发布时间', dataIndex: 'createDate', align: 'center', customRender: function (text) { return text || '--' } },
-        { title: '公告名称', dataIndex: 'notice.title', align: 'center', customRender: function (text) { return text || '--' } },
+        { title: '标题', dataIndex: 'notice.title', align: 'center', customRender: function (text) { return text || '--' } },
         { title: '操作', scopedSlots: { customRender: 'action' }, width: 200, align: 'center' }
       ],
       loadData: [],
@@ -105,8 +105,8 @@ export default {
     ]),
     //  时间  change
     dateChange (date) {
-      this.queryParam.beginDate = date[0] ? date[0]: ''
-      this.queryParam.endDate = date[1] ? date[1]: ''
+      this.queryParam.beginDate = date[0] ? date[0] : ''
+      this.queryParam.endDate = date[1] ? date[1] : ''
     },
     // 查询列表
     handelSearch (pageNo) {

+ 2 - 2
vue.config.js

@@ -211,8 +211,8 @@ const vueConfig = {
     // If you want to turn on the proxy, please remove the mockjs /src/main.jsL11
     proxy: {
       '/api': {
-        target: 'http://192.168.0.215:8076/qpls-md',
-        // target: 'http://p.iscm.360arrow.com/qpls-md',
+        // target: 'http://192.168.0.115:8503/qpls-md',
+        target: 'http://p.iscm.360arrow.com/qpls-md',
         // ws: false,
         ws: true,
         changeOrigin: true,