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
| <template>
| <div>
| <KeysTable
| :list="projectProgressData"
| :header="projectProgressDataHeader"
| :isShowPages="false"
| title="项目进度信息"
| ></KeysTable>
| </div>
| </template>
| <script>
| import FormInfo from "../FormInfo";
| import KeysTable from "../KeysTable";
| import { qryProjProgressInfo } from "@/api/product";
| export default {
| props: {
| // 申请编号
| serialNo: {
| type: String,
| required: true,
| },
| objectType: {
| type: String,
| default: "",
| },
| customerID: {
| type: String,
| default: "",
| },
| flowno: {
| type: String,
|
| // 默认为案场
| default: "CreditFlowCase",
| },
| },
| components: {
| FormInfo,
| KeysTable,
| },
| data() {
| return {
| projectProgressData: [],
| projectProgressDataHeader: [
| {
| prop: "projName",
| width: "auto",
| label: "项目名称",
| },
| {
| prop: "contractName",
| width: "auto",
| label: "合同名称",
| },
| {
| prop: "buildingUnitName",
| width: "auto",
| label: "楼栋名称",
| },
| {
| prop: "floorName",
| width: "auto",
| label: "楼层名称",
| },
| {
| prop: "process",
| width: "auto",
| label: "工序名称",
| },
| {
| prop: "processStartDate",
| width: "auto",
| label: "工序开始日期",
| },
| {
| prop: "processEndDate",
| width: "auto",
| label: "工序结束日期",
| },
| {
| prop: "processPercent",
| width: "auto",
| label: "工序百分比",
| },
| {
| prop: "remark",
| width: "auto",
| label: "备注",
| },
| {
| prop: "thirdUpdateTime",
| width: "auto",
| label: "更新日期",
| },
| ],
| };
| },
| created() {
| this.init();
| },
| methods: {
| init() {
| this.requestQryProjProgressInfo();
| },
| async requestQryProjProgressInfo() {
| const resp = await qryProjProgressInfo({
| projectSerialNo: this.serialNo,
| });
| if (resp.result) {
| this.projectProgressData = resp.result;
| this.projectProgressData = this.projectProgressData.map((item) => {
| return {
| ...item,
| processPercent: `${item.processPercent}%`,
| };
| });
| }
| },
| },
| };
| </script>
| <style lang="postcss" scoped>
| </style>
|
|