Jelajahi Sumber

发票项目类型,我的通知样式

sangwenwei 1 tahun lalu
induk
melakukan
b2a5bf2655

+ 5 - 2
src/views/cw/invoice/InvoiceFormTask.vue

@@ -750,7 +750,7 @@
           billingDate: '',
           collectDate: '',
           billingPeopleReal: this.$store.state.user.id,
-          reconciliationPeople: '',
+          reconciliationPeople: this.$store.state.user.id,
           reconciliationArea: '',
           remarks: '',
           name: '',
@@ -857,7 +857,7 @@
 				billingDate: '',
 				collectDate: '',
 				billingPeopleReal: this.$store.state.user.id,
-				reconciliationPeople: '',
+				reconciliationPeople: this.$store.state.user.id,
 				reconciliationArea: '',
 				remarks: '',
 				name: '',
@@ -931,6 +931,9 @@
 					if (this.commonJS.isEmpty(this.inputForm.billingPeopleReal)) {
 						this.inputForm.billingPeopleReal = this.$store.state.user.id
 					}
+					if (this.commonJS.isEmpty(this.inputForm.reconciliationPeople)) {
+						this.inputForm.reconciliationPeople = this.$store.state.user.id
+					}
 					if (this.commonJS.isEmpty(this.inputForm.financeInvoiceBaseDTOList)) {
 						this.inputForm.financeInvoiceBaseDTOList = []
 					}

+ 7 - 3
src/views/dashboard/widgets/components/MyNoticePageList.vue

@@ -12,23 +12,27 @@
 				</div>
 			</div>
 		</template>
-		<el-table :data="dataList" style="width: 100%" height="480">
-			<el-table-column label="实例标题" prop="title">
+		<el-table :data="dataList" style="width: 100%" height="480" border="inner" @sort-change="sortChangeHandle">
+			<el-table-column label="实例标题" prop="title" min-width="400px">
 				<template #default="scope">
 					<el-link  type="primary" :underline="false" @click="todo(scope.row)">{{scope.row.title}}</el-link>
 				</template>
 			</el-table-column>
 			<el-table-column
+				min-width="90px"
 				show-overflow-tooltip
 				label="流程名称"
 				prop="taskName"
 			></el-table-column>
 			<el-table-column
+				min-width="100px"
 				show-overflow-tooltip
-				label="流程发起人"
+				label="发起人"
 				prop="createUser"
 			></el-table-column>
 			<el-table-column
+				fixed="right"
+				min-width="100px"
 				show-overflow-tooltip
 				label="创建时间"
 				prop="createTime"