newly.js
5.78 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
import request from '@/utils/request'
// import request from '@/utils/request2'
// 租赁情况统计
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
})
}