4b045f7c
刘淇
江阴初始化项目
|
1
|
import md5 from './md5.min.js';
|
4b045f7c
刘淇
江阴初始化项目
|
2
3
|
// 江阴正式环境
var serverUrl = "https://bus.jycrtc.com";
|
2f02d40c
chenbiao
add 登录页面数据接口联调
|
4
|
//江阴微信小程序appid
|
1cea5358
刘淇
停车记录详情
|
5
|
const hs_wxPay_appId = 'wxfdc1af620d3ab750';
|
2f02d40c
chenbiao
add 登录页面数据接口联调
|
6
7
|
// 江阴慧停车orgId
const public_orgId = '10107';
|
b42d4437
chenbiao
add 公共js信息更新
|
8
9
|
const appName = '江阴慧停车';
const ACompany = '©江阴慧停车管理有限公司';
|
4b045f7c
刘淇
江阴初始化项目
|
10
|
const BCompany = '由中兴智能交通股份有限公司提供技术支持';
|
4b045f7c
刘淇
江阴初始化项目
|
11
|
const appVerson = '1.0.0';
|
4b045f7c
刘淇
江阴初始化项目
|
12
|
const SetToken = uni.getStorageSync("globalUser").token;
|
999ea060
刘淇
我的钱包 充值
|
13
14
15
16
|
// const SetToken = 'e2c1e43722dd43a5b7e268001b39e6f0';
|
4b045f7c
刘淇
江阴初始化项目
|
17
18
|
// ----江阴项目 接口----
// 商户登录
|
2f02d40c
chenbiao
add 登录页面数据接口联调
|
19
|
const userLogin = serverUrl + "/business/h5/index/login";
|
f7e9351e
chenbiao
add 接口文档更新
|
20
21
|
// 获取已登录商户用户信息
const indexInfo = serverUrl + "/business/h5/index/info";
|
4b045f7c
刘淇
江阴初始化项目
|
22
|
// 商户退出登录
|
2f02d40c
chenbiao
add 登录页面数据接口联调
|
23
|
const userLoginout = serverUrl + "/business/h5/index/logout";
|
4b045f7c
刘淇
江阴初始化项目
|
24
|
// 商户关于我们
|
2f02d40c
chenbiao
add 登录页面数据接口联调
|
25
|
const useraboutUs = serverUrl + "/business/h5/index/aboutUs";
|
93c5ecb3
chenbiao
add 添加filter.js 设...
|
26
27
|
// 商户账户余额信息
const walletAccount = serverUrl + "/business/h5/wallet/account";
|
b398dc4a
chenbiao
add 我的钱包 接口联调
|
28
29
|
// 商户充值金额列表
const rechargeList = serverUrl + "/business/h5/wallet/rechargeList";
|
d9f79954
刘淇
停车记录
|
30
31
|
// 通过商户ID查询停车记录信息
const getBusinessParkOrderByBusIdForPage = serverUrl + "/business/h5/order/getBusinessParkOrderByBusIdForPage";
|
d9f79954
刘淇
停车记录
|
32
33
|
// 通过商户ID查询停车记录信息
const getPayOrderByOrderId = serverUrl + "/business/h5/order/getPayOrderByOrderId";
|
1cea5358
刘淇
停车记录详情
|
34
35
|
//刘淇接口
|
0b9d5f71
刘淇
停车记录详情
|
36
|
// 商户卡券-可以购买卡券列表-分页
|
510601e4
刘淇
商户卡券
|
37
|
const couponRuleParkPage = serverUrl + "/business/h5/coupon/couponRuleParkPage";
|
78e17486
刘淇
商户券明细
|
38
39
|
// 商户卡券-卡券申领明细
const couponIssuedParkPage = serverUrl + "/business/h5/couponIssued/couponIssuedParkPage";
|
75b91c08
刘淇
卡券发放
|
40
41
|
// 商户卡券-卡券发放-生成领券的动态码
const getCouponDynamicQR = serverUrl + "/business/h5/couponsend/getCouponDynamicQR";
|
9bac797d
刘淇
卡券发放
|
42
43
44
45
|
// 商户卡券-卡券发放-生成领券的静态码下载地址
const getCouponStaticQR = serverUrl + "/business/h5/couponsend/getCouponStaticQR";
// 卡券申领明细总览
const couponDetailSummary = serverUrl + "/business/h5/couponIssued/couponDetailSummary";
|
78e17486
刘淇
商户券明细
|
46
|
|
904a46e0
刘淇
卡券购买下单
|
47
48
49
50
51
52
53
54
|
// 商户卡券-卡券下单
const createCouponOrder = serverUrl + "/business/h5/coupon/createCouponOrder";
// 商户卡券-使用余额购买
const accountPay = serverUrl + "/business/h5/pay/busAccount/accountPay";
|
78e17486
刘淇
商户券明细
|
55
|
|
1cea5358
刘淇
停车记录详情
|
56
|
//陈彪接口
|
4b045f7c
刘淇
江阴初始化项目
|
57
|
|
00a21ab7
chenbiao
add 余额明细 接口联调
|
58
59
60
61
62
63
64
65
66
67
68
69
|
// 余额明细下拉框选择列表
const walletKindType = serverUrl + "/business/h5/wallet/kindType";
// 余额明细总览
const detailSummary = serverUrl + "/business/h5/wallet/detailSummary";
// 余额明细-分页
const walletDetailsPage = serverUrl + "/business/h5/wallet/detailsPage";
// 钱包充值-微信
const publicUnifiedOrder = serverUrl + "/business/h5/pay/weixinpay/publicUnifiedOrder";
|
2e99af66
chenbiao
add 账单详情 接口联调
|
70
71
|
// 钱包-根据订单ID获取购买优惠券信息
const couponInfo = serverUrl + "/business/h5/wallet/detail/couponInfo";
|
07fee088
chenbiao
add 停车缴费支付订单页面 接口联调
|
72
|
// 根据车牌号查询车牌号订单支付详情
|
ed34839c
chenbiao
add 停车缴费 支付页面 接口联调
|
73
|
const queryParkingRecordByCarNumbers ="https://pay.jycrtc.com/queryParkOrder/queryParkingRecordPageByCarNumbersForBusiness";
|
1cea5358
刘淇
停车记录详情
|
74
|
|
e7895736
chenbiao
add 支付 接口联调
|
75
|
const getOpenIdByCode = "https://pay.jycrtc.com/weixinPublicPay/getSmallRoutineOpenIdByCode"
|
1cea5358
刘淇
停车记录详情
|
76
77
78
|
const requestSign = function (inputData) {
|
0206229e
刘淇
登陆
|
79
|
var jsonList = inputData || {};
|
b6d85d2d
chenbiao
Merge remote-trac...
|
80
|
jsonList.orgId = public_orgId;
|
2f02d40c
chenbiao
add 登录页面数据接口联调
|
81
82
83
84
|
jsonList.sign_type = "md5";
jsonList.app_id = "0eca8f5373ca4866aec2f8e9d9367104";
jsonList.deviceInfo = "BC0703A4-AFB0-4B51-9089-9B7487C0CC6E";
jsonList.salt = getSalt();
|
dd5ecdbd
chenbiao
add 接口文档更新
|
85
|
jsonList.terminalSource = "11";
|
752e0b8b
刘淇
登陆
|
86
|
// jsonList.token = getGlobalUser("globalUser").token;
|
78dcf61c
chenbiao
add 删除无用图片 代码
|
87
88
|
jsonList.token = getGlobalUser("globalUser").token;
// jsonList.token = 'e2c1e43722dd43a5b7e268001b39e6f0';
|
4b045f7c
刘淇
江阴初始化项目
|
89
|
var arrData = [];
|
2f02d40c
chenbiao
add 登录页面数据接口联调
|
90
|
for (var key in jsonList) {
|
4b045f7c
刘淇
江阴初始化项目
|
91
|
var obj = {};
|
2f02d40c
chenbiao
add 登录页面数据接口联调
|
92
93
94
95
96
97
|
// console.log("key = "+key);
// // obj[key] =jsonList[key];
obj.keyname = key;
obj.value = jsonList[key];
// console.log(obj);
arrData.push(obj);
|
4b045f7c
刘淇
江阴初始化项目
|
98
|
}
|
2f02d40c
chenbiao
add 登录页面数据接口联调
|
99
100
101
|
var sign = getSign(arrData);
jsonList.sign = sign;
return jsonList;
|
1cea5358
刘淇
停车记录详情
|
102
|
}
|
4b045f7c
刘淇
江阴初始化项目
|
103
|
//获取sign
|
1cea5358
刘淇
停车记录详情
|
104
|
var getSign = function (objb) {
|
b6bde291
chenbiao
Merge remote-trac...
|
105
|
var compare = function (obj1, obj2) {
|
2f02d40c
chenbiao
add 登录页面数据接口联调
|
106
107
108
109
110
111
112
113
114
|
var val1 = obj1.keyname;
var val2 = obj2.keyname;
if (val1 < val2) {
return -1;
} else if (val1 > val2) {
return 1;
} else {
return 0;
}
|
4b045f7c
刘淇
江阴初始化项目
|
115
116
117
|
}
objb.sort(compare);
var strmd5 = '14318527b13840c2a4af63fef52c2d6e';
|
2f02d40c
chenbiao
add 登录页面数据接口联调
|
118
119
120
121
|
for (var i = 0; i < objb.length; i++) {
if (objb[i].value != null && objb[i].value != '') {
strmd5 += objb[i].keyname + objb[i].value;
}
|
4b045f7c
刘淇
江阴初始化项目
|
122
123
|
}
strmd5 += '14318527b13840c2a4af63fef52c2d6e';
|
2f02d40c
chenbiao
add 登录页面数据接口联调
|
124
|
// console.log('strmd5-------->'+strmd5);
|
4b045f7c
刘淇
江阴初始化项目
|
125
|
strmd5 = md5(strmd5);
|
2f02d40c
chenbiao
add 登录页面数据接口联调
|
126
|
strmd5 = strmd5.toUpperCase();
|
4b045f7c
刘淇
江阴初始化项目
|
127
|
return strmd5;
|
4b045f7c
刘淇
江阴初始化项目
|
128
|
}
|
4b045f7c
刘淇
江阴初始化项目
|
129
|
//获取盐值
|
1cea5358
刘淇
停车记录详情
|
130
|
var getSalt = function () {
|
2f02d40c
chenbiao
add 登录页面数据接口联调
|
131
|
var len = parseInt(32);
|
4b045f7c
刘淇
江阴初始化项目
|
132
133
134
|
var $chars = 'ABCDEFGHJKMNPQRSTWXYZabcdefhijkmnprstwxyz2345678';
var maxPos = $chars.length;
var pwd = '';
|
2f02d40c
chenbiao
add 登录页面数据接口联调
|
135
136
137
|
for (var i = 0; i < len; i++) {
pwd += $chars.charAt(Math.floor(Math.random() * maxPos));
}
|
4b045f7c
刘淇
江阴初始化项目
|
138
|
// console.log(pwd);
|
2f02d40c
chenbiao
add 登录页面数据接口联调
|
139
|
return pwd;
|
4b045f7c
刘淇
江阴初始化项目
|
140
|
}
|
1cea5358
刘淇
停车记录详情
|
141
|
var getGlobalUser = function (key) {
|
4b045f7c
刘淇
江阴初始化项目
|
142
143
144
145
146
147
|
var userInfo = uni.getStorageSync("globalUser");
if (userInfo != null && userInfo != "" && userInfo != undefined) {
return userInfo;
} else {
return '';
}
|
4b045f7c
刘淇
江阴初始化项目
|
148
|
}
|
16cff37f
刘淇
停车记录
|
149
150
|
// 除了金额
var moneyFormat = function (val) {
|
00a21ab7
chenbiao
add 余额明细 接口联调
|
151
|
return (val / 100).toFixed(2)
|
16cff37f
刘淇
停车记录
|
152
|
}
|
51f091d6
刘淇
停车记录详情
|
153
|
var dateFormat = function (msd) { // 时间转换
|
b6bde291
chenbiao
Merge remote-trac...
|
154
|
var time =msd
|
d6331720
刘淇
停车记录详情
|
155
|
|
00a21ab7
chenbiao
add 余额明细 接口联调
|
156
|
if (null != time && "" != time) {
|
00a21ab7
chenbiao
add 余额明细 接口联调
|
157
|
if (time > 60 && time < 60 * 60) {
|
00a21ab7
chenbiao
add 余额明细 接口联调
|
158
|
time = parseInt(time / 60.0) + "分钟" + parseInt((parseFloat(time / 60.0) -
|
d6331720
刘淇
停车记录详情
|
159
|
|
00a21ab7
chenbiao
add 余额明细 接口联调
|
160
|
parseInt(time / 60.0)) * 60) + "秒";
|
d6331720
刘淇
停车记录详情
|
161
|
|
b6bde291
chenbiao
Merge remote-trac...
|
162
|
}
|
d6331720
刘淇
停车记录详情
|
163
|
|
b6bde291
chenbiao
Merge remote-trac...
|
164
|
else if (time >= 60 * 60 && time < 60 * 60 * 24) {
|
00a21ab7
chenbiao
add 余额明细 接口联调
|
165
|
time = parseInt(time / 3600.0) + "小时" + parseInt((parseFloat(time / 3600.0) -
|
d6331720
刘淇
停车记录详情
|
166
|
|
b6bde291
chenbiao
Merge remote-trac...
|
167
|
parseInt(time / 3600.0)) * 60) + "分钟" +
|
d6331720
刘淇
停车记录详情
|
168
|
|
00a21ab7
chenbiao
add 余额明细 接口联调
|
169
|
parseInt((parseFloat((parseFloat(time / 3600.0) - parseInt(time / 3600.0)) * 60) -
|
d6331720
刘淇
停车记录详情
|
170
|
|
00a21ab7
chenbiao
add 余额明细 接口联调
|
171
|
parseInt((parseFloat(time / 3600.0) - parseInt(time / 3600.0)) * 60)) * 60) + "秒";
|
d6331720
刘淇
停车记录详情
|
172
|
|
00a21ab7
chenbiao
add 余额明细 接口联调
|
173
|
} else if (time >= 60 * 60 * 24) {
|
b6bde291
chenbiao
Merge remote-trac...
|
174
|
time = parseInt(time / 3600.0/24) + "天" +parseInt((parseFloat(time / 3600.0/24)-
|
d6331720
刘淇
停车记录详情
|
175
|
|
b6bde291
chenbiao
Merge remote-trac...
|
176
|
parseInt(time / 3600.0/24))*24) + "小时" + parseInt((parseFloat(time / 3600.0) -
|
d6331720
刘淇
停车记录详情
|
177
|
|
b6bde291
chenbiao
Merge remote-trac...
|
178
|
parseInt(time / 3600.0)) * 60) + "分钟" +
|
d6331720
刘淇
停车记录详情
|
179
|
|
00a21ab7
chenbiao
add 余额明细 接口联调
|
180
|
parseInt((parseFloat((parseFloat(time / 3600.0) - parseInt(time / 3600.0)) * 60) -
|
d6331720
刘淇
停车记录详情
|
181
|
|
00a21ab7
chenbiao
add 余额明细 接口联调
|
182
|
parseInt((parseFloat(time / 3600.0) - parseInt(time / 3600.0)) * 60)) * 60) + "秒";
|
d6331720
刘淇
停车记录详情
|
183
|
|
b6bde291
chenbiao
Merge remote-trac...
|
184
|
}
|
d6331720
刘淇
停车记录详情
|
185
|
|
b6bde291
chenbiao
Merge remote-trac...
|
186
|
else {
|
00a21ab7
chenbiao
add 余额明细 接口联调
|
187
|
time = parseInt(time) + "秒";
|
d6331720
刘淇
停车记录详情
|
188
|
|
00a21ab7
chenbiao
add 余额明细 接口联调
|
189
|
}
|
d6331720
刘淇
停车记录详情
|
190
|
|
00a21ab7
chenbiao
add 余额明细 接口联调
|
191
|
}
|
00a21ab7
chenbiao
add 余额明细 接口联调
|
192
|
return time;
|
51f091d6
刘淇
停车记录详情
|
193
|
}
|
4a929260
刘淇
商户券明细
|
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
|
var cardTypeFormat = function(num){
if(num == '1'){
return '单次券'
}
if(num == 2){
return '时长券'
}
if(num == 3){
return '满减券'
}
if(num == 4){
return '金额券'
}
if(num == 5){
return '包天券'
}
if(num == 6){
return '折扣券'
}
}
|
2f02d40c
chenbiao
add 登录页面数据接口联调
|
215
|
export default {
|
4b045f7c
刘淇
江阴初始化项目
|
216
217
218
219
220
221
|
// deviceInfo,
hs_wxPay_appId,
public_orgId,
appName,
ACompany,
BCompany,
|
2f02d40c
chenbiao
add 登录页面数据接口联调
|
222
|
appVerson,
|
4b045f7c
刘淇
江阴初始化项目
|
223
|
SetToken,
|
4b045f7c
刘淇
江阴初始化项目
|
224
|
requestSign,
|
b6d85d2d
chenbiao
Merge remote-trac...
|
225
|
moneyFormat,
|
b6bde291
chenbiao
Merge remote-trac...
|
226
|
dateFormat,
|
4a929260
刘淇
商户券明细
|
227
|
cardTypeFormat,
|
2f02d40c
chenbiao
add 登录页面数据接口联调
|
228
|
// 接口
|
4b045f7c
刘淇
江阴初始化项目
|
229
|
userLogin,
|
f7e9351e
chenbiao
add 接口文档更新
|
230
|
indexInfo,
|
4b045f7c
刘淇
江阴初始化项目
|
231
232
|
userLoginout,
useraboutUs,
|
93c5ecb3
chenbiao
add 添加filter.js 设...
|
233
|
walletAccount,
|
b6d85d2d
chenbiao
Merge remote-trac...
|
234
235
236
|
//刘淇接口
getBusinessParkOrderByBusIdForPage,
getPayOrderByOrderId,
|
510601e4
刘淇
商户卡券
|
237
|
couponRuleParkPage,
|
78e17486
刘淇
商户券明细
|
238
|
couponIssuedParkPage,
|
75b91c08
刘淇
卡券发放
|
239
|
getCouponDynamicQR,
|
9bac797d
刘淇
卡券发放
|
240
241
|
getCouponStaticQR,
couponDetailSummary,
|
904a46e0
刘淇
卡券购买下单
|
242
243
244
|
createCouponOrder,
accountPay,
|
9bac797d
刘淇
卡券发放
|
245
|
|
b6d85d2d
chenbiao
Merge remote-trac...
|
246
|
//陈彪接口
|
b398dc4a
chenbiao
add 我的钱包 接口联调
|
247
|
rechargeList,
|
00a21ab7
chenbiao
add 余额明细 接口联调
|
248
249
250
251
|
walletKindType,
detailSummary,
walletDetailsPage,
publicUnifiedOrder,
|
2e99af66
chenbiao
add 账单详情 接口联调
|
252
|
couponInfo,
|
ed34839c
chenbiao
add 停车缴费 支付页面 接口联调
|
253
|
queryParkingRecordByCarNumbers,
|
e7895736
chenbiao
add 支付 接口联调
|
254
|
getOpenIdByCode,
|
4b045f7c
刘淇
江阴初始化项目
|
255
|
}
|