Detail.vue
12.6 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
<template>
<transition name="el-zoom-in-center">
<div class="NCC-preview-main">
<div class="NCC-common-page-header">
<el-page-header @back="goBack" :content="'详情'"/>
<div class="options">
<el-button @click="goBack">取 消</el-button>
</div>
</div>
<div class="offer-container" ref="print">
<div class="tem_list">
<div class="tem_main">
<h1>{{ dataForm.fullName }}</h1>
<h4></h4>
<p class="title text-primary">项目编号:{{ dataForm.enCode }}</p>
<p class="lip">一、基本信息</p>
<el-row
:gutter="15"
class="main"
:style="{ margin: '0 auto', width: '100%' }"
>
<el-form
ref="elForm"
:model="dataForm"
size="medium"
label-width="100px"
label-position="right"
:disabled="!!isDetail"
>
<el-col :span="12">
<el-form-item label="客户名称" prop="customer">
{{dataForm.customer}}
</el-form-item>
</el-col>
<el-col :span="12">
<el-form-item label="项目金额" prop="amount">
{{dataForm.amount}}元
</el-form-item>
</el-col>
<el-col :span="12">
<el-form-item label="项目类型" prop="itemType">
{{dataForm.itemType}}
</el-form-item>
</el-col>
<el-col :span="12">
<el-form-item label="签订时间" prop="signingTime">
{{dataForm.signingTime | toDate("yyyy-MM-dd")}}
</el-form-item>
</el-col>
<el-col :span="12">
<el-form-item label="开始时间" prop="startTime">
{{dataForm.startTime | toDate("yyyy-MM-dd")}}
</el-form-item>
</el-col>
<el-col :span="12">
<el-form-item label="结束时间" prop="endTime">
{{dataForm.endTime | toDate("yyyy-MM-dd")}}
</el-form-item>
</el-col>
<el-col :span="12">
<el-form-item label="项目工期" prop="timeLimit">
{{dataForm.timeLimit }}天
</el-form-item>
</el-col>
<el-col :span="12">
<el-form-item label="完成进度" prop="schedule">
{{dataForm.schedule }}%
</el-form-item>
</el-col>
<el-col :span="12">
<el-form-item label="项目经理" prop="desPerson">
{{dataForm.desPerson }}
</el-form-item>
</el-col>
<el-col :span="12">
<el-form-item label="参与人员" prop="managerIds">
{{dataForm.managerIds }}
</el-form-item>
</el-col>
<el-col :span="24">
<el-form-item label="分配情况" v-for="(item, index) in activities" :key="index">
{{item.text}}
</el-form-item>
</el-col>
</el-form>
</el-row>
<p class="lip">二、项目成本</p>
<el-table
:data="list"
v-loading="listLoading"
ref="detailTable"
:header-cell-style="{ 'text-align': 'center' }"
show-summary
:summary-method="getSummaries"
>
<el-table-column label="编号" show-overflow-tooltip width="160">
<template slot-scope="scope">
<span class="text-grey">{{ scope.row.costId }}</span>
</template>
</el-table-column>
<el-table-column label="成本名称" width="140" align="left">
<template slot-scope="scope" align="left">
{{ scope.row.costName }}
</template>
</el-table-column>
<el-table-column label="发生时间" width="140" align="center">
<template slot-scope="scope" align="center">
<span class="text-primary">{{
scope.row.happendTime | toDate("yyyy-MM-dd")
}}</span>
</template>
</el-table-column>
<el-table-column
prop="amount"
label="实际费用(元)"
align="center"
width="140"
>
<template slot-scope="scope" align="center">
<el-tag type="success">{{
scope.row.amount | currency("¥")
}}</el-tag>
</template>
</el-table-column>
<el-table-column label="备注" align="left">
<template slot-scope="scope" align="left">
{{ scope.row.remark }}
</template>
</el-table-column>
</el-table>
<p class="lip">三、项目报销</p>
<el-table
:data="finrmbtList"
v-loading="finrmbtListLoading"
ref="detailTable"
:header-cell-style="{ 'text-align': 'center' }"
show-summary
:summary-method="getSummaries"
>
<el-table-column label="编号" show-overflow-tooltip width="160">
<template slot-scope="scope">
<span class="text-grey">{{ scope.row.reimbursement }}</span>
</template>
</el-table-column>
<el-table-column label="报销人" width="140" align="left">
<template slot-scope="scope" align="left">
{{ scope.row.handler }}
</template>
</el-table-column>
<el-table-column label="发生时间" width="140" align="center">
<template slot-scope="scope" align="center">
<span class="text-primary">{{
scope.row.happedTime | toDate("yyyy-MM-dd")
}}</span>
</template>
</el-table-column>
<el-table-column
prop="totalAmount"
label="报销金额(元)"
align="center"
width="140"
>
<template slot-scope="scope" align="center">
<el-tag type="success">{{
scope.row.totalAmount | currency("¥")
}}</el-tag>
</template>
</el-table-column>
<el-table-column label="报销事由" align="left">
<template slot-scope="scope" align="left">
{{ scope.row.remark }}
</template>
</el-table-column>
</el-table>
</div>
</div>
</div>
</div>
</transition>
</template>
<script>
import request from "@/utils/request";
import { getDictionaryDataSelector } from "@/api/systemData/dictionary";
import { previewDataInterface } from "@/api/systemData/dataInterface";
export default {
components: {},
props: [],
data() {
return {
loading: false,
list: [],
listLoading: true,
finrmbtList:[],
finrmbtListLoading: true,
visible: false,
isDetail: false,
dataForm: {
enCode: undefined,
fullName: undefined,
itemType: undefined,
amount: 0,
signingTime: undefined,
stage: undefined,
startTime: undefined,
endTime: undefined,
timeLimit: 0,
schedule: 0,
desPerson: undefined,
managerIds: undefined,
state: undefined,
customer: undefined,
proContent: undefined,
appendix: [],
remark: undefined,
creatorUserId: undefined,
creatorTime: undefined,
lastModifyUserId: undefined,
lastModifyTime: undefined,
},
itemTypeOptions: [],
stageOptions: [],
stateOptions: [],
customerOptions: [],
};
},
computed: {},
watch: {},
created() {
this.init();
},
mounted() {},
methods: {
goBack() {
this.$emit("refresh");
},
init(id, isDetail) {
this.dataForm.id = id || 0;
this.visible = true;
this.isDetail = isDetail || false;
this.$nextTick(() => {
this.$refs["elForm"].resetFields();
if (this.dataForm.id) {
request({
url: "/api/SubDev/ZyOaProjectgantt/Actions/GetProjectInfo/" + this.dataForm.id,
method: "get",
}).then((res) => {
this.dataForm = res.data;
this.activities = res.data.postilJson ? JSON.parse(res.data.postilJson) : [];
});
}
});
request({
url: `/api/SubDev/ZyOaProCost/Actions/GetProCostList/${id}`,
method: "GET",
}).then((res) => {
this.list = res.data;
this.listLoading = false;
});
request({
url: `/api/SubDev/ZyOaWfFinrmbt/Actions/GetFinrmbtList/${id}`,
method: "GET",
}).then((res) => {
this.finrmbtList = res.data;
this.finrmbtListLoading = false;
});
},
getSummaries(param) {
const { columns, data } = param;
const sums = [];
columns.forEach((column, index) => {
if (index === 0) {
sums[index] = "合计";
return;
}
if (column.property != undefined) {
//加了prop属性的el-table-column 才能找到column.property
const values = data.map((item) => Number(item[column.property]));
if (!values.every((value) => isNaN(value))) {
sums[index] = values.reduce((prev, curr) => {
const value = Number(curr);
if (!isNaN(value)) {
return prev + curr; //多行相加
} else {
return prev;
}
}, 0);
} else {
sums[index] = "";
}
sums[index] = sums[index].toFixed(2) + "元"; //保留2位小数
}
});
return sums;
},
},
};
</script>
<style lang="scss" scoped>
.tem_main {
width: 1100px;
margin: 0 auto;
}
.content1 {
display: flex;
justify-content: space-between;
align-items: center;
flex-wrap: wrap;
.item {
width: 545px;
padding: 8px 0;
border-bottom: 1px solid #ebeef5;
span {
font-size: 16px;
padding: 10px 0;
color: #606266;
}
}
}
.el-table,
.content1 {
width: 920px !important;
margin: 0 auto !important;
}
h1,
h2,
h3 {
text-align: center !important;
}
p,
h4 {
width: 920px !important;
margin: 0 auto !important;
}
p.title {
border-bottom: 2px dashed #606266;
line-height: 30px;
font-size: 14px;
margin-bottom: 15px;
margin-top: 15px;
color: #606266;
font-weight: bolder;
}
p.lip {
padding: 20px 0;
color: #606266;
}
.temdate {
font-size: 14px;
width: 802px;
margin: 0 auto;
text-align: right;
margin: 20px 60px;
color: #606266;
}
.seal {
font-size: 14px;
width: 480px;
margin: 0 auto;
text-align: right;
margin: 10px 120px;
padding-bottom: 40px;
color: #606266;
}
.offer-container {
height: 100%;
overflow: auto;
.tem_list {
width: 1100px;
height: 100%;
margin: 0 auto;
background: #fff;
.tem_main {
width: 90%;
margin: 0 auto;
font-size: 14px;
padding-top: 10px;
color: #606266;
h1,
h2 {
text-align: center;
color: #606266;
}
.title {
border-bottom: 2px dashed #606266;
line-height: 30px;
font-size: 14px;
color: #606266;
}
>>> .el-table thead tr th {
background-color: #fff;
color: #606266;
}
.lip {
padding: 20px 0;
color: #606266;
}
.demo-form-inline {
display: flex;
flex-wrap: wrap;
justify-content: space-between;
}
.el-form-item--mini.el-form-item,
.el-form-item--small.el-form-item {
border-bottom: 1px solid #ebeef5;
width: 48%;
margin: 0;
>>> .el-input__inner {
border: 0 !important;
padding: 0;
width: 220px;
font-size: 12px;
}
>>> .el-form-item__label {
font-size: 12px;
}
}
.temdate {
text-align: right;
margin: 20px 60px;
}
.seal {
text-align: right;
margin: 10px 120px;
padding-bottom: 40px;
}
}
}
}
</style>