فهرست منبع

首页让添加更多选择项

user5 1 سال پیش
والد
کامیت
f31380729b

+ 3 - 3
src/views/dashboard/widgets/components/MyNotifyList.vue

@@ -2,7 +2,7 @@
 	<el-card class="box-card">
 		<template #header>
 			<div class="card-header">
-				<span>我的通知</span>
+				<span>公告</span>
 			</div>
 		</template>
 		<el-table :data="dataList" style="width: 100%" height="480">
@@ -135,9 +135,9 @@ import NotifyForm from "@/views/notify/NotifyForm.vue";
 import noticeService from '@/api/flowable/NoticeService'
 import taskService from "@/api/flowable/taskService";
 export default {
-	title: "我的通知",
+	title: "公告",
 	icon: "tonggao5",
-	description: "我的通知",
+	description: "公告",
 	layout: {
 		w: 6,
 		h: 15,

+ 7 - 0
src/views/dashboard/widgets/components/TodoList.vue

@@ -3,6 +3,7 @@
 		<template #header>
 			<div class="card-header">
 				<span>我的待办</span>
+				<el-button type="text" style="float:right" @click="toPendingList()">更多>></el-button>
 			</div>
 		</template>
 		<el-table :data="dataList" style="width: 100%" height="480">
@@ -192,6 +193,12 @@ export default {
 					});
 				});
 		},
+		toPendingList () {
+			// this.$router.push('./PendingList')
+			this.$router.push({
+				path: '/flowable/task/TodoList',
+			})
+		},
 		trace(row) {
 			this.processInstanceId = row.task.processInstanceId;
 			this.visible = true;

+ 2 - 2
src/views/zs/reimbursement/info/InfoList.vue

@@ -139,7 +139,7 @@
             </template>
           </vxe-column>
           <vxe-column width="130" title="报销类别" field="typeName" align="center"></vxe-column>
-          <vxe-column width="180" title="报销项目" field="projectName" align="center">
+          <vxe-column title="报销项目" field="projectName" align="center">
             <template #default="scope">
               <el-link  type="primary" :underline="false" v-if="hasPermission('zsReimbursement:info:view') && scope.row.projectId != undefined" @click="viewProject(scope.row.projectId)">{{scope.row.sourceType === '2' ? '' : scope.row.projectName}}</el-link>
               <el-link  type="primary" :underline="false" v-else-if="hasPermission('zsReimbursement:info:view') && scope.row.projectId != undefined" @click="viewProject(scope.row.projectId)">{{scope.row.sourceType === '2' ? '' : scope.row.projectName}}</el-link>
@@ -157,7 +157,7 @@
           <vxe-column width="100" title="报销人" field="name" align="center"></vxe-column>
           <vxe-column width="100" title="报销部门" field="deptName" align="center"></vxe-column>
           <vxe-column width="100" title="报销日期" field="reimDate" align="center"></vxe-column>
-          <vxe-column width="100" title="报销金额(元)" field="number" fixed="right" align="center"></vxe-column>
+          <vxe-column width="120" title="报销金额(元)" field="number" fixed="right" align="center"></vxe-column>
           <vxe-column width="100" title="状态" fixed="right" align="center" field="type">
             <template #default="scope">
               <el-button  @click="detail(scope.row)" :type="$dictUtils.getDictLabel('status_info', scope.row.type, '')" effect="dark" >{{$dictUtils.getDictLabel("status", scope.row.type, '未开始')}} </el-button>