newly.js
8.59 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
430
431
432
433
434
435
436
import request from '@/utils/request'
// import request from '@/utils/request2'
// 租赁信息
export function cereContractInformationgetPages(data) {
return request({
url: '/cereContractInformation/getPages',
method: 'post',
data
})
}
// 广告位投放效果统计
export function selectByAdPlacementId(data) {
return request({
url: `/cereAdvertisingVisitLog/selectByAdPlacementId?adPlacementId=${data}`,
method: 'get',
data
})
}
// 广告位投放效果统计
export function selectByAdPlacementIdAndTime(data) {
return request({
url: '/cereAdvertisingVisitLog/selectByAdPlacementIdAndTime',
method: 'post',
data
})
}
// 物业缴费
export function cerePaymentInfo(data) {
return request({
url: '/cerePaymentInfo/queryByPage',
method: 'post',
data
})
}
// 广告位投放效果统计
export function selectByAdPlacementIdAndTimeAndHour(data) {
return request({
url: '/cereAdvertisingVisitLog/selectByAdPlacementIdAndTimeAndHour',
method: 'post',
data
})
}
// 合同
export function cereContractInformationgetPage(data) {
return request({
url: '/cereContractInformation/getPage',
method: 'post',
data
})
}
// 查看发票
export function cereInvoiceTitlegetByTenementId(data) {
return request({
url: 'cereInvoiceTitle/getByTenementId/'+data.id,
method: 'GET',
})
}
// 上传发票
export function uploadInvoice(data) {
return request({
url: '/cereInvoiceTitle/uploadInvoice',
method: 'post',
data
})
}
// 复核
export function editToRecheck(data) {
return request({
url: '/cerePropertyOrder/editToRecheck/'+data.id,
method: 'GET',
})
}
// 缴费记录-租赁缴费
export function cerePropertyOrder(data) {
return request({
url: '/cerePropertyOrder/queryByContractId',
method: 'post',
data
})
}
// 招商过程信息-谈判记录,
export function cereNegotiationDetails(data) {
return request({
url: '/cereNegotiationDetails/queryByPhone',
method: 'post',
data
})
}
// 招商过程信息-跟进日志
export function cereFollowDetails(data) {
return request({
url: '/cereFollowDetails/queryByPage',
method: 'post',
data
})
}
// 资源数量增长趋势
export function resourceQuantityGrowth(data) {
return request({
url: '/statistical/resourceQuantityGrowth',
method: 'post',
data
})
}
// 资源分布统计
export function resourceDistributionStatistics(data) {
return request({
url: '/statistical/resourceDistributionStatistics',
method: 'post',
data
})
}
// 资源情况占比
export function resourceSituationProportion(data) {
return request({
url: '/statistical/resourceSituationProportion',
method: 'post',
data
})
}
// 资源利用率占比
export function resourceUtilizationProportion(data) {
return request({
url: '/statistical/resourceUtilizationProportion',
method: 'post',
data
})
}
// 租赁情况统计
export function rentalSituationStatistics(data) {
return request({
url: '/statistical/rentalSituationStatistics',
method: 'post',
data
})
}
// 绿道段统计
export function areaShopStatistics(data) {
return request({
url: '/statistical/areaShopStatistics',
method: 'post',
data
})
}
// 绿道公园统计
export function areaParkStatistics(data) {
return request({
url: '/statistical/areaParkStatistics',
method: 'post',
data
})
}
// 字典
export function getChilds(data) {
return request({
url: '/dict/getChilds',
method: 'post',
data
})
}
// 方案资源
export function resourcesFindPlan(data) {
return request({
url: '/cereBusinessPlan/resourcesFindPlan',
method: 'post',
data
})
}
// 发消息
export function sendToUser(data) {
return request({
url: '/cereMessage/sendToUser',
method: 'post',
data
})
}
// 修改查询合同的店铺
export function cereAssetShopInformationedit(data) {
return request({
url: '/cereAssetShopInformation/edit',
method: 'post',
data
})
}
// 查询合同的店铺
export function cereAssetShopInformationqueryByPage(data) {
return request({
url: '/cereAssetShopInformation/queryByPage',
method: 'post',
data
})
}
// 退租决算管理oa
export function generalBySurrenderTenancy(data) {
return request({
url: '/oaInterconnection/generalBySurrenderTenancy',
method: 'post',
data
})
}
// 退租决算管理修改
export function changeContractInformationedit(data) {
return request({
url: '/changeContractInformation/edit',
method: 'post',
data
})
}
// 退租决算管理
export function changeContractInformationqueryByPage(data) {
return request({
url: '/changeContractInformation/queryByPage',
method: 'post',
data
})
}
// oa
export function general(data) {
return request({
url: '/oaInterconnection/general',
method: 'post',
data,
headers: {
// 'Content-Type': 'application/octet-stream'
'Content-Type': 'multipart/form-data'
}
})
}
// 生成合同附件
export function dataInprotDocument(data) {
return request({
url: '/cereContractTemplate/dataInprotDocument',
method: 'post',
data
})
}
// ******模版******
// 列表
export function cereContractTemplate(data) {
return request({
url: '/cereContractTemplate/queryByPage',
method: 'post',
data
})
}
// 添加
export function cereContractTemplateadd(data) {
return request({
url: '/cereContractTemplate/add',
method: 'post',
data
})
}
// 删除
export function cereContractTemplatedeleteById(data) {
return request({
url: '/cereContractTemplate/deleteById',
method: 'post',
data
})
}
// 获取方案资源
export function cereBusinessPlanqueryById(data) {
return request({
url: '/cereBusinessPlan/queryById',
method: 'post',
data
})
}
// 获取方案
export function queryAllByLimit(data) {
return request({
url: '/cereBusinessPlan/queryAllByLimit',
method: 'post',
data
})
}
// 批量修改资源状态
export function modifyResourceStatus(data) {
return request({
url: '/cereBasicInformationShop/modifyResourceStatus',
method: 'post',
data
})
}
// 获取续租管理合同
export function contractRenewalReminder(data) {
return request({
url: '/cereContractInformation/contractRenewalReminder',
method: 'post',
data
})
}
// 获取到期合同
export function expwarning(data) {
return request({
url: '/cereContractInformation/expwarning',
method: 'post',
data
})
}
// 获取资源的租赁列表
export function cereContractInformation(data) {
return request({
url: '/cereContractInformation/leaseRecords',
method: 'post',
data
})
}
// 上下架
// 列表
export function cereBusinessOperationqueryByPage(data) {
return request({
url: '/cereBusinessOperation/queryByPage',
method: 'post',
data
})
}
// 添加
export function cereBusinessOperationadd(data) {
return request({
url: '/cereBusinessOperation/add',
method: 'post',
data
})
}
// 资源获取方案
export function cereBusinessPlan(data) {
return request({
url: '/cereBusinessPlan/getPage ',
method: 'post',
data
})
}
// 资源状态修改
export function editStatus(data) {
return request({
url: '/cereResourceStrategy/editStatus',
method: 'post',
data
})
}
// 资源策略查询
export function getResourceStrategy(data) {
return request({
url: '/cereResourceStrategy/getResourceStrategy',
method: 'post',
data
})
}
// 获取策略
export function cereResourceStrategylist(data) {
return request({
url: '/cereResourceStrategy/queryByResources',
method: 'post',
data
})
}
// 绑定策略
export function cereResourceStrategy(data) {
return request({
url: '/cereResourceStrategy/addList',
method: 'post',
data
})
}
// ******商家管理******
// 列表
export function cerePlatformMerchant(data) {
return request({
url: '/cerePlatformMerchant/queryByPage',
method: 'post',
data
})
}
// 添加
export function cerePlatformMerchantadd(data) {
return request({
url: '/cerePlatformMerchant/add',
method: 'post',
data
})
}
// 详情
export function cerePlatformMerchantinfo(data) {
return request({
url: '/cerePlatformMerchant/queryById',
method: 'post',
data
})
}
// 修改
export function cerePlatformMerchantedit(data) {
return request({
url: '/cerePlatformMerchant/edit',
method: 'post',
data
})
}
// 修改
export function cerePlatformMerchantdelet(data) {
return request({
url: '/cerePlatformMerchant/deleteById',
method: 'post',
data
})
}