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
| <template>
| <div>
| <div>
| <FormInfo
| :info="projectInfo"
| :keys="projectCompanyInfo"
| title="项目基本信息"
| :loading="loading"
| ></FormInfo>
| <FormInfo
| :info="buildCompanyInfoResp"
| :keys="buildCompanyInfoRespKey"
| title="建设单位信息"
| :loading="loading"
| ></FormInfo>
| <FormInfo
| :info="companyInfoResp"
| :keys="companyInfoRespKey"
| title="劳务单位信息"
| :loading="loading"
| ></FormInfo>
| <KeysTable
| :list="shareholderInfoList"
| :header="creditFlowPublicTableHeader"
| :isShowPages="false"
| title="劳务单位股东信息"
| ></KeysTable>
| <FormInfo
| :info="projectDepositQueryRsp"
| :keys="projectDepositQueryRspKey"
| title="项目保证金信息"
| :loading="loading"
| ></FormInfo>
| </div>
| </div>
| </template>
| <script>
| import FormInfo from "../FormInfo";
| import KeysTable from "../KeysTable";
| import {
| userBaseInfo,
| projectCompanyInfoFormHeader,
| buildCompanyInfoRespFormHeader,
| projectDepositQueryRspFormHeader,
| } from "@comprehensive/utils/formHeaders";
| import { qryProjectAllInfo } 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 {
| projectCompanyInfo: [...projectCompanyInfoFormHeader],
| buildCompanyInfoRespKey: [...buildCompanyInfoRespFormHeader],
| companyInfoRespKey: [...buildCompanyInfoRespFormHeader],
| projectDepositQueryRspKey: [...projectDepositQueryRspFormHeader],
| loading: false,
| projectInfo: {}, //项目信息
| buildCompanyInfoResp: {}, //建设公司信息
| companyInfoResp: {}, //劳务公司信息
| shareholderInfoList: [], //劳务单位股东信息
| creditFlowPublicTableHeader: [
| {
| prop: "shareholdername",
| width: "auto",
| label: "股东名称",
| },
| {
| prop: "shareholdertypeCn",
| width: "auto",
| label: "股东类型",
| },
| {
| prop: "certid",
| width: "auto",
| label: "证件号码",
| },
| {
| prop: "phone",
| width: "auto",
| label: "手机号码",
| },
| {
| prop: "contactsName",
| width: "auto",
| label: "联系人",
| },
| {
| prop: "contactsIdNum",
| width: "auto",
| label: "联系人证件号",
| },
| {
| prop: "contactsPhone",
| width: "auto",
| label: "联系号码",
| },
| ],
| projectDepositQueryRsp: {
| amount: "",
| occupiedAmount: "",
| refundedAmount: "",
| usedAmount: "",
| remainAmount: "",
| }, //项目保证金
| };
| },
| created() {
| this.init();
| },
| methods: {
| init() {
| this.requestQryProjectAllInfo();
| },
| async requestQryProjectAllInfo() {
| const { serialNo } = this;
| const resp = await qryProjectAllInfo({ projectSerialNo: serialNo });
| if (resp.code == "00") {
| this.projectInfo = resp.result.projectInfo;
| this.buildCompanyInfoResp = resp.result.buildCompanyInfoResp;
| this.companyInfoResp = resp.result.companyInfoResp;
| this.shareholderInfoList =
| resp.result.companyInfoResp.shareholderInfoList;
| if (resp.result.projectDepositQueryRsp.amount) {
| this.projectDepositQueryRsp = {
| ...resp.result.projectDepositQueryRsp,
| };
| }
| }
| },
| },
| };
| </script>
| <style lang="postcss" scoped>
| </style>
|
|