浏览代码

合并代码

humingbo 1 年之前
父节点
当前提交
dd28c05987
共有 3 个文件被更改,包括 7 次插入4 次删除
  1. 1 2
      src/views/meeting/weeklyRecords.vue
  2. 3 1
      src/views/task/components/taskDetail.vue
  3. 3 1
      src/views/task/view.vue

+ 1 - 2
src/views/meeting/weeklyRecords.vue

@@ -1,10 +1,9 @@
 <template>
   <div class="app-container" >
     <div style="display: flex;justify-content: space-between;margin-bottom: 8px">
-      <div style="font-size: 24px">{{ title }}</div>
+      <div style="font-size: 24px">{{ m.meetingName }}</div>
       <el-button size="mini" @click="exportPdf" icon="el-icon-download" style="margin-right: 20px">导出</el-button>
     </div>
-    <h3>{{m.meetingName}}</h3>
     <el-descriptions  title="" :column="2" :size="size" border>
       <el-descriptions-item>
         <template slot="label">

+ 3 - 1
src/views/task/components/taskDetail.vue

@@ -75,8 +75,10 @@ export default {
         return '完成'
       } else if (type === '3') {
         return '终止'
+      } else if (type === '4') {
+        return '评论'
       }
-      return '评论'
+      return '审批'
     }
   }
 }

+ 3 - 1
src/views/task/view.vue

@@ -343,8 +343,10 @@ export default {
         return '完成'
       } else if (type === '3') {
         return '终止'
+      } else if (type === '4') {
+        return '评论'
       }
-      return '评论'
+      return '审批'
     }
   }
 }