mcrm-mobile 1.8.2 → 1.8.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,5 +1,5 @@
1
- /**
2
- * Base64加解密封装
1
+ /**
2
+ * Base64加解密封装
3
3
  */
4
4
  function Base64() {
5
5
  // private property
@@ -116,8 +116,8 @@ function Base64() {
116
116
  return string;
117
117
  };
118
118
  }
119
- /**
120
- * 随机整数: [0, (n-1)]
119
+ /**
120
+ * 随机整数: [0, (n-1)]
121
121
  */
122
122
 
123
123
 
@@ -125,8 +125,8 @@ function rnd(n) {
125
125
  var random = Math.floor(Math.random() * n);
126
126
  return random;
127
127
  }
128
- /**-
129
- * 简单解密
128
+ /**-
129
+ * 简单解密
130
130
  */
131
131
 
132
132
 
@@ -139,8 +139,8 @@ function decodeBase64ForSec(str) {
139
139
  result = deleteChar(index2, result);
140
140
  return base64.decode(result);
141
141
  }
142
- /**
143
- * 简单加密
142
+ /**
143
+ * 简单加密
144
144
  */
145
145
 
146
146
 
@@ -153,8 +153,8 @@ function encodeBase64ForSec(str) {
153
153
  result = insertChar(index2, getRandomForSec(), result);
154
154
  return result.toString();
155
155
  }
156
- /**
157
- * 插入字符
156
+ /**
157
+ * 插入字符
158
158
  */
159
159
 
160
160
 
@@ -162,8 +162,8 @@ function insertChar(n, c, str) {
162
162
  var result = str.substring(0, n) + c + str.substring(n, str.length);
163
163
  return result;
164
164
  }
165
- /**
166
- * 删除字符
165
+ /**
166
+ * 删除字符
167
167
  */
168
168
 
169
169
 
@@ -171,8 +171,8 @@ function deleteChar(n, str) {
171
171
  var result = str.substring(0, n) + str.substring(n + 1, str.length);
172
172
  return result;
173
173
  }
174
- /**
175
- * 加解密获取随机字符
174
+ /**
175
+ * 加解密获取随机字符
176
176
  */
177
177
 
178
178
 
@@ -1,7 +1,7 @@
1
- /**
2
- * @author Wuner
3
- * @date 2021/9/28
4
- * @Description: 数据加解密
1
+ /**
2
+ * @author Wuner
3
+ * @date 2021/9/28
4
+ * @Description: 数据加解密
5
5
  */
6
6
  import Vue from "vue";
7
7
  import { strEnc, strDec } from "./des.js";
@@ -18,11 +18,11 @@ var KEY1 = "TWFrV29d0R3JlYXRBKZ2Fpbg==";
18
18
  var IV1 = "VWVuY1xhta1EyMmYyRcXNwcA==";
19
19
  var KEY = "TUNSTWQ1jcm1BQkNEIRUZHSA==";
20
20
  var IV = "VGRtYlmdsalAxMWUxBcHJraw==";
21
- /**
22
- * AES加密
23
- * @param content 需加密的文本
24
- * @param key 密钥
25
- * @param iv 偏移量
21
+ /**
22
+ * AES加密
23
+ * @param content 需加密的文本
24
+ * @param key 密钥
25
+ * @param iv 偏移量
26
26
  */
27
27
 
28
28
  var aesEncrypt = function aesEncrypt(content, key, iv) {
@@ -38,11 +38,11 @@ var aesEncrypt = function aesEncrypt(content, key, iv) {
38
38
  });
39
39
  return encrypted.toString(); //返回的是base64格式的密文
40
40
  };
41
- /**
42
- * AES加密(拦截器)
43
- * @param content 需加密的文本
44
- * @param key 密钥
45
- * @param iv 偏移量
41
+ /**
42
+ * AES加密(拦截器)
43
+ * @param content 需加密的文本
44
+ * @param key 密钥
45
+ * @param iv 偏移量
46
46
  */
47
47
 
48
48
 
@@ -59,10 +59,10 @@ var aesEncryptHttp = function aesEncryptHttp(content, key, iv) {
59
59
  });
60
60
  return encrypted.toString(); //返回的是base64格式的密文
61
61
  };
62
- /**
63
- * 菜单跳转加密函数
64
- * @param {string} data - 需要加密的数据, 传过来前先进行 JSON.stringify(data);
65
- * @param {string} key - 加密使用的 key
62
+ /**
63
+ * 菜单跳转加密函数
64
+ * @param {string} data - 需要加密的数据, 传过来前先进行 JSON.stringify(data);
65
+ * @param {string} key - 加密使用的 key
66
66
  */
67
67
 
68
68
 
@@ -79,11 +79,11 @@ var aesEncryptBusiness = function aesEncryptBusiness(data, key) {
79
79
 
80
80
  return hexStr;
81
81
  };
82
- /**
83
- * 菜单跳转加密函数(新)
84
- * @param {string} data - 需要加密的数据, 传过来前先进行 JSON.stringify(data);
85
- * @param {string} key - 加密使用的 key
86
- * @param {string} iv - 加密使用的 iv
82
+ /**
83
+ * 菜单跳转加密函数(新)
84
+ * @param {string} data - 需要加密的数据, 传过来前先进行 JSON.stringify(data);
85
+ * @param {string} key - 加密使用的 key
86
+ * @param {string} iv - 加密使用的 iv
87
87
  */
88
88
 
89
89
 
@@ -96,10 +96,10 @@ var aesEncryptBusinessNew = function aesEncryptBusinessNew(data, key, iv) {
96
96
  });
97
97
  return gmCrypto.encrypt(data);
98
98
  };
99
- /**
100
- * 菜单跳转加密函数
101
- * @param {string} encrypted - 加密的数据;
102
- * @param {string} key - 加密使用的 key
99
+ /**
100
+ * 菜单跳转加密函数
101
+ * @param {string} encrypted - 加密的数据;
102
+ * @param {string} key - 加密使用的 key
103
103
  */
104
104
 
105
105
 
@@ -113,11 +113,11 @@ var aesDecryptBusiness = function aesDecryptBusiness(encrypted, key) {
113
113
  });
114
114
  return CryptoJS.enc.Utf8.stringify(decrypt);
115
115
  };
116
- /**
117
- * AES解密
118
- * @param content 密文
119
- * @param key 密钥
120
- * @param iv 偏移量
116
+ /**
117
+ * AES解密
118
+ * @param content 密文
119
+ * @param key 密钥
120
+ * @param iv 偏移量
121
121
  */
122
122
 
123
123
 
@@ -135,11 +135,11 @@ var aesDecrypt = function aesDecrypt(content, key, iv) {
135
135
  });
136
136
  return decrypted.toString(CryptoJS.enc.Utf8);
137
137
  };
138
- /**
139
- * AES解密(拦截器)
140
- * @param content 需加密的文本
141
- * @param key 密钥
142
- * @param iv 偏移量
138
+ /**
139
+ * AES解密(拦截器)
140
+ * @param content 需加密的文本
141
+ * @param key 密钥
142
+ * @param iv 偏移量
143
143
  */
144
144
 
145
145
 
@@ -157,30 +157,30 @@ var aesDecryptHttp = function aesDecryptHttp(content, key, iv) {
157
157
  });
158
158
  return decrypted.toString(CryptoJS.enc.Utf8);
159
159
  };
160
- /**
161
- * DES解密
162
- * @param content 密文
163
- * @param keys 密钥
160
+ /**
161
+ * DES解密
162
+ * @param content 密文
163
+ * @param keys 密钥
164
164
  */
165
165
 
166
166
 
167
167
  var desDecrypt = function desDecrypt(content, keys) {
168
168
  return strDec(content, keys[0], keys[1], keys[2]);
169
169
  };
170
- /**
171
- * DES加密
172
- * @param content 需加密的文本
173
- * @param keys 密钥
170
+ /**
171
+ * DES加密
172
+ * @param content 需加密的文本
173
+ * @param keys 密钥
174
174
  */
175
175
 
176
176
 
177
177
  var desEncrypt = function desEncrypt(content, keys) {
178
178
  return strEnc(content, keys[0], keys[1], keys[2]);
179
179
  };
180
- /**
181
- * base64加密
182
- * @param content
183
- * @returns {*}
180
+ /**
181
+ * base64加密
182
+ * @param content
183
+ * @returns {*}
184
184
  */
185
185
 
186
186
 
@@ -188,10 +188,10 @@ var base64Encrypt = function base64Encrypt(content) {
188
188
  var words = CryptoJS.enc.Utf8.parse(content);
189
189
  return CryptoJS.enc.Base64.stringify(words);
190
190
  };
191
- /**
192
- * base64解密
193
- * @param content
194
- * @returns {*}
191
+ /**
192
+ * base64解密
193
+ * @param content
194
+ * @returns {*}
195
195
  */
196
196
 
197
197
 
@@ -199,18 +199,18 @@ var base64Decrypt = function base64Decrypt(content) {
199
199
  var words = CryptoJS.enc.Base64.parse(content);
200
200
  return CryptoJS.enc.Utf8.stringify(words);
201
201
  };
202
- /**
203
- * 方舟加密
204
- * @param content 需要加密对文本
202
+ /**
203
+ * 方舟加密
204
+ * @param content 需要加密对文本
205
205
  */
206
206
 
207
207
 
208
208
  export var arkEncrypt = function arkEncrypt(content) {
209
209
  return encodeBase64ForSec(content);
210
210
  };
211
- /**
212
- * 方舟解密
213
- * @param content 需要解密对文本
211
+ /**
212
+ * 方舟解密
213
+ * @param content 需要解密对文本
214
214
  */
215
215
 
216
216
  var arkDecrypt = function arkDecrypt(content) {
package/es/http/index.js CHANGED
@@ -1,8 +1,8 @@
1
1
  import _asyncToGenerator from "@babel/runtime/helpers/asyncToGenerator";
2
2
  import _regeneratorRuntime from "@babel/runtime/regenerator";
3
3
 
4
- /**
5
- * Created by Heath on 2019/11/21.
4
+ /**
5
+ * Created by Heath on 2019/11/21.
6
6
  */
7
7
  import Vue from "vue";
8
8
  import { post } from "../utils/http";
@@ -10,33 +10,33 @@ import { json } from "../utils/create-request-body/json";
10
10
  import mcrm from "mcrm-jsapi";
11
11
  import Session from "../session";
12
12
  import { customerTypeFilter } from "../utils/filter/index";
13
- /**
14
- * 创建外部订单流水入参
15
- * @typedef AddOutFormParams
16
- * @property {string} billId 用户手机号
17
- * @property {string} syscode 系统编号
18
- * @property {string} sysName 系统名称
19
- * @property {string} ordertype 业务类型 00 - 自助受理;01 - 营销案;02 - 终端;03 - 宽带新装;04 - 宽带续费;05 - 套卡激活
20
- * @property {string} publishType 推送类型 0:不推送;1:按操作员推送;2.按组织推送;3:推送至客户
21
- * @property {string} title 标题
22
- * @property {string} content 内容
23
- * @property {string} outOrderId 外部订单号 第三方传入的流水号
24
- * @property {string} qrId 二维码 id
25
- * @property {string} sourceCode 来源编码 生成规则:发起调用方的 pageCode + "_" + 要打开页面的 pageCode
26
- * @property {OrderInfo} orderInfo 订单信息
13
+ /**
14
+ * 创建外部订单流水入参
15
+ * @typedef AddOutFormParams
16
+ * @property {string} billId 用户手机号
17
+ * @property {string} syscode 系统编号
18
+ * @property {string} sysName 系统名称
19
+ * @property {string} ordertype 业务类型 00 - 自助受理;01 - 营销案;02 - 终端;03 - 宽带新装;04 - 宽带续费;05 - 套卡激活
20
+ * @property {string} publishType 推送类型 0:不推送;1:按操作员推送;2.按组织推送;3:推送至客户
21
+ * @property {string} title 标题
22
+ * @property {string} content 内容
23
+ * @property {string} outOrderId 外部订单号 第三方传入的流水号
24
+ * @property {string} qrId 二维码 id
25
+ * @property {string} sourceCode 来源编码 生成规则:发起调用方的 pageCode + "_" + 要打开页面的 pageCode
26
+ * @property {OrderInfo} orderInfo 订单信息
27
27
  */
28
28
 
29
- /**
30
- * @typedef OrderInfo
31
- * @property {string} kindId 档次 ID
32
- * @property {string} verifyLogId 认证流水 认证流水号
33
- * @property {string} printId 无纸化单号 无纸化单号
34
- * @property {string} infoNo 免填单号 免填单号
29
+ /**
30
+ * @typedef OrderInfo
31
+ * @property {string} kindId 档次 ID
32
+ * @property {string} verifyLogId 认证流水 认证流水号
33
+ * @property {string} printId 无纸化单号 无纸化单号
34
+ * @property {string} infoNo 免填单号 免填单号
35
35
  */
36
36
 
37
- /**
38
- * 创建外部订单流水
39
- * @param {AddOutFormParams} body 入参
37
+ /**
38
+ * 创建外部订单流水
39
+ * @param {AddOutFormParams} body 入参
40
40
  */
41
41
 
42
42
  var addOutForm = /*#__PURE__*/function () {
@@ -65,24 +65,24 @@ var addOutForm = /*#__PURE__*/function () {
65
65
  return _ref.apply(this, arguments);
66
66
  };
67
67
  }();
68
- /**
69
- * 菜单页面打开接口Body参数
70
- * @typedef MenuPageOpenBody
71
- * @property {string} funcId 认证编号
72
- * @property {string} funcType 认证类型
73
- * @property {string} verifyLogId 认证流水号
74
- * @property {string} billId 用户号码
75
- * @property {string} opVerifyLogId 操作员认证流水
76
- * @property {string} opSys 操作系统 引流使用字段
77
- * @property {string} appVersion APP版本号 引流使用字段
78
- * @property {string} menuCode 菜单编号 地市专区不用传
79
- * @property {string} pageCode 页面编号
80
- * @property {string} pageType 页面类型 不传默认是外部页面,传cityZone是地市专区
68
+ /**
69
+ * 菜单页面打开接口Body参数
70
+ * @typedef MenuPageOpenBody
71
+ * @property {string} funcId 认证编号
72
+ * @property {string} funcType 认证类型
73
+ * @property {string} verifyLogId 认证流水号
74
+ * @property {string} billId 用户号码
75
+ * @property {string} opVerifyLogId 操作员认证流水
76
+ * @property {string} opSys 操作系统 引流使用字段
77
+ * @property {string} appVersion APP版本号 引流使用字段
78
+ * @property {string} menuCode 菜单编号 地市专区不用传
79
+ * @property {string} pageCode 页面编号
80
+ * @property {string} pageType 页面类型 不传默认是外部页面,传cityZone是地市专区
81
81
  */
82
82
 
83
- /**
84
- * 菜单页面打开接口
85
- * @param {MenuPageOpenBody} body 入参
83
+ /**
84
+ * 菜单页面打开接口
85
+ * @param {MenuPageOpenBody} body 入参
86
86
  */
87
87
 
88
88
 
@@ -112,10 +112,10 @@ var menuPageOpen = /*#__PURE__*/function () {
112
112
  return _ref2.apply(this, arguments);
113
113
  };
114
114
  }();
115
- /**
116
- * 菜单页面查询接口
117
- * @param {string} pageCode 页面编号
118
- * @param {string} pageType 页面类型
115
+ /**
116
+ * 菜单页面查询接口
117
+ * @param {string} pageCode 页面编号
118
+ * @param {string} pageType 页面类型
119
119
  */
120
120
 
121
121
 
@@ -148,10 +148,10 @@ var menuPageQuery = /*#__PURE__*/function () {
148
148
  return _ref3.apply(this, arguments);
149
149
  };
150
150
  }();
151
- /**
152
- * 登录前菜单页面查询接口
153
- * @param {string} pageCode 页面编号
154
- * @param {string} pageType 页面类型
151
+ /**
152
+ * 登录前菜单页面查询接口
153
+ * @param {string} pageCode 页面编号
154
+ * @param {string} pageType 页面类型
155
155
  */
156
156
 
157
157
 
@@ -184,23 +184,23 @@ var authMenuPageQuery = /*#__PURE__*/function () {
184
184
  return _ref4.apply(this, arguments);
185
185
  };
186
186
  }();
187
- /**
188
- * 菜单权限校验接口Body参数
189
- * @typedef MenuPageVerifyBody
190
- * @property {string} funcId 认证编号
191
- * @property {string} funcType 认证类型
192
- * @property {string} verifyLogId 认证流水号
193
- * @property {string} custUniqueId 客户唯一标识
194
- * @property {string} billId 用户号码
195
- * @property {string} opVerifyLogId 操作员认证流水
196
- * @property {string} opSys 操作系统 引流使用字段
197
- * @property {string} appVersion APP版本号 引流使用字段
198
- * @property {string} menuCode 菜单编号 地市专区不用传
187
+ /**
188
+ * 菜单权限校验接口Body参数
189
+ * @typedef MenuPageVerifyBody
190
+ * @property {string} funcId 认证编号
191
+ * @property {string} funcType 认证类型
192
+ * @property {string} verifyLogId 认证流水号
193
+ * @property {string} custUniqueId 客户唯一标识
194
+ * @property {string} billId 用户号码
195
+ * @property {string} opVerifyLogId 操作员认证流水
196
+ * @property {string} opSys 操作系统 引流使用字段
197
+ * @property {string} appVersion APP版本号 引流使用字段
198
+ * @property {string} menuCode 菜单编号 地市专区不用传
199
199
  */
200
200
 
201
- /**
202
- * 菜单权限校验接口
203
- * @param {MenuPageVerifyBody} body 菜单权限校验接口Body参数
201
+ /**
202
+ * 菜单权限校验接口
203
+ * @param {MenuPageVerifyBody} body 菜单权限校验接口Body参数
204
204
  */
205
205
 
206
206
 
@@ -230,10 +230,10 @@ var menuPageVerify = /*#__PURE__*/function () {
230
230
  return _ref5.apply(this, arguments);
231
231
  };
232
232
  }();
233
- /**
234
- * 引流菜单校验接口
235
- * @param {string} menuCode 菜单编号
236
- * @param {string} sourceSyscode 系统编号
233
+ /**
234
+ * 引流菜单校验接口
235
+ * @param {string} menuCode 菜单编号
236
+ * @param {string} sourceSyscode 系统编号
237
237
  */
238
238
 
239
239
 
@@ -266,11 +266,11 @@ var menuCanaryRedirect = /*#__PURE__*/function () {
266
266
  return _ref6.apply(this, arguments);
267
267
  };
268
268
  }();
269
- /**
270
- * 引流地址查询接口
271
- * @param {string} envTag 环境标识
272
- * @param {string} opSys 操作系统
273
- * @param {string} appVersion 应用版本号
269
+ /**
270
+ * 引流地址查询接口
271
+ * @param {string} envTag 环境标识
272
+ * @param {string} opSys 操作系统
273
+ * @param {string} appVersion 应用版本号
274
274
  */
275
275
 
276
276
 
@@ -304,36 +304,36 @@ var coreCanaryRedirect = /*#__PURE__*/function () {
304
304
  return _ref7.apply(this, arguments);
305
305
  };
306
306
  }();
307
- /**
308
- * @typedef BuryingSaveLogBody 埋点日志接口body参数
309
- * @property {string} appVersion App版本
310
- * @property {string} areaCode 地区编码
311
- * @property {string} cityCode 地市编码
312
- * @property {string} internetState 手机所用网络
313
- * @property {string} loginSessionId 登入session
314
- * @property {string} opName 操作人
315
- * @property {string} pageDesc 页面描述
316
- * @property {string} pageID 页面ID
317
- * @property {string} pagePath 页面路径
318
- * @property {string} phoneKernel 手机内核
319
- * @property {string} phoneOpVersion 手机操作系统版本
320
- * @property {string} phonePlatformVersion 手机平台版本
321
- * @property {string} phoneSwitched 设备名称
322
- * @property {string} menuCode 菜单编码
323
- * @property {string} date 时间戳
324
- * @property {string} year 日期--年份
325
- * @property {string} month 日期--月份
326
- * @property {string} day 日期--天
327
- * @property {string} source 数据来源
328
- * @property {string} type 数据类型
329
- * @property {string} serviceName 业务名称
330
- * @property {string} yddStatus 移动盾连接状态
331
- * @property {string} fivegStatus 5g网络状态
307
+ /**
308
+ * @typedef BuryingSaveLogBody 埋点日志接口body参数
309
+ * @property {string} appVersion App版本
310
+ * @property {string} areaCode 地区编码
311
+ * @property {string} cityCode 地市编码
312
+ * @property {string} internetState 手机所用网络
313
+ * @property {string} loginSessionId 登入session
314
+ * @property {string} opName 操作人
315
+ * @property {string} pageDesc 页面描述
316
+ * @property {string} pageID 页面ID
317
+ * @property {string} pagePath 页面路径
318
+ * @property {string} phoneKernel 手机内核
319
+ * @property {string} phoneOpVersion 手机操作系统版本
320
+ * @property {string} phonePlatformVersion 手机平台版本
321
+ * @property {string} phoneSwitched 设备名称
322
+ * @property {string} menuCode 菜单编码
323
+ * @property {string} date 时间戳
324
+ * @property {string} year 日期--年份
325
+ * @property {string} month 日期--月份
326
+ * @property {string} day 日期--天
327
+ * @property {string} source 数据来源
328
+ * @property {string} type 数据类型
329
+ * @property {string} serviceName 业务名称
330
+ * @property {string} yddStatus 移动盾连接状态
331
+ * @property {string} fivegStatus 5g网络状态
332
332
  */
333
333
 
334
- /**
335
- * 埋点日志接口
336
- * @param {BuryingSaveLogBody} body 埋点日志接口body参数
334
+ /**
335
+ * 埋点日志接口
336
+ * @param {BuryingSaveLogBody} body 埋点日志接口body参数
337
337
  */
338
338
 
339
339
 
@@ -509,25 +509,25 @@ var operationSaveLog = /*#__PURE__*/function () {
509
509
  return _ref9.apply(this, arguments);
510
510
  };
511
511
  }();
512
- /**
513
- * @typedef GroupBusinessPointBody 数字员工日志接口参数
514
- * @property {string} uniqueId 业务办理ID
515
- * @property {string} operType 操作类型
516
- * @property {string} operDesc 操作描述
517
- * @property {string} menuCode 菜单编号
518
- * @property {string} menuName 菜单名称
519
- * @property {string} moduleName 菜单二级页面
520
- * @property {string} funcName 功能名称
521
- * @property {string} subFuncName 子功能名称
522
- * @property {string} appVersion 网格通APP版本
523
- * @property {string} isDigitalEmployee 是否可定义为数字员工功能
524
- * @property {string} digitalEmployeeCategoryCode 数字员工分类编码
525
- * @property {number} operTime 时间戳
512
+ /**
513
+ * @typedef GroupBusinessPointBody 数字员工日志接口参数
514
+ * @property {string} uniqueId 业务办理ID
515
+ * @property {string} operType 操作类型
516
+ * @property {string} operDesc 操作描述
517
+ * @property {string} menuCode 菜单编号
518
+ * @property {string} menuName 菜单名称
519
+ * @property {string} moduleName 菜单二级页面
520
+ * @property {string} funcName 功能名称
521
+ * @property {string} subFuncName 子功能名称
522
+ * @property {string} appVersion 网格通APP版本
523
+ * @property {string} isDigitalEmployee 是否可定义为数字员工功能
524
+ * @property {string} digitalEmployeeCategoryCode 数字员工分类编码
525
+ * @property {number} operTime 时间戳
526
526
  */
527
527
 
528
- /**
529
- * 数字员工添加日志
530
- * @param {GroupBusinessPointBody} body 数字员工日志接口参数
528
+ /**
529
+ * 数字员工添加日志
530
+ * @param {GroupBusinessPointBody} body 数字员工日志接口参数
531
531
  */
532
532
 
533
533
 
package/es/index.js CHANGED
@@ -91,7 +91,7 @@ import Tag from './tag';
91
91
  import Toast from './toast';
92
92
  import TreeSelect from './tree-select';
93
93
  import Uploader from './uploader';
94
- var version = '1.8.2';
94
+ var version = '1.8.3';
95
95
  var components = [ActionSheet, AddressPicker, Api, Badge, Biz, Button, Calendar, Card, Cell, CellGroup, Checkbox, CheckboxGroup, Circle, Col, Collapse, CollapseItem, CommonUtils, CountDown, DataProcess, DatePicker, DatetimePicker, Dialog, Directive, Divider, Drag, DropdownItem, DropdownMenu, Empty, Field, GoodsAction, GoodsActionButton, GoodsActionIcon, Grid, GridItem, Http, Icon, Image, ImagePreview, IndexAnchor, IndexBar, Info, List, Loading, Local, Menu, MenuIcon, MenuJump, Menus, NavBar, NoticeBar, Notify, Overlay, Pagination, Panel, PasswordInput, Picker, Popover, Popup, Progress, PullRefresh, Radio, RadioGroup, Rank, Rate, Row, SafeKeyboard, Search, Session, ShareSheet, Sidebar, SidebarItem, Slider, Step, Stepper, Steps, Sticky, Swipe, SwipeCell, SwipeItem, Switch, SwitchCell, Tab, Tabbar, TabbarItem, Table, TableColumn, Tabs, Tag, Toast, TreeSelect, Uploader];
96
96
 
97
97
  var install = function install(Vue) {
@@ -440,11 +440,11 @@ var spliceUrl = /*#__PURE__*/function () {
440
440
  break;
441
441
 
442
442
  case 79:
443
- paramsObj[value] = DataProcess.aesEncryptBusiness(billId, data.secretKey) + "&isSecret=1";
443
+ paramsObj[value] = DataProcess.aesEncryptBusiness(billId, data.secretKey) + "&isSecrect=1";
444
444
  return _context2.abrupt("break", 84);
445
445
 
446
446
  case 81:
447
- paramsObj[value] = encodeURIComponent(DataProcess.aesEncryptBusinessNew(billId, secretKey, offset)) + "&isSecret=2";
447
+ paramsObj[value] = encodeURIComponent(DataProcess.aesEncryptBusinessNew(billId, secretKey, offset)) + "&isSecrect=2";
448
448
  return _context2.abrupt("break", 84);
449
449
 
450
450
  case 83:
@@ -461,6 +461,7 @@ var spliceUrl = /*#__PURE__*/function () {
461
461
  return _context2.abrupt("break", 197);
462
462
 
463
463
  case 88:
464
+ // 提交
464
465
  paramsObj[value] = isDef(broadBillId) ? broadBillId : "";
465
466
  return _context2.abrupt("break", 197);
466
467
 
@@ -787,11 +788,11 @@ var spliceUrl = /*#__PURE__*/function () {
787
788
  break;
788
789
 
789
790
  case 239:
790
- paramsObj[_key] = DataProcess.aesEncryptBusiness(extraParams[_key], data.secretKey) + "&isSecret=1";
791
+ paramsObj[_key] = DataProcess.aesEncryptBusiness(extraParams[_key], data.secretKey) + "&isSecrect=1";
791
792
  return _context2.abrupt("break", 244);
792
793
 
793
794
  case 241:
794
- paramsObj[_key] = encodeURIComponent(DataProcess.aesEncryptBusinessNew(extraParams[_key], secretKey, offset)) + "&isSecret=2";
795
+ paramsObj[_key] = encodeURIComponent(DataProcess.aesEncryptBusinessNew(extraParams[_key], secretKey, offset)) + "&isSecrect=2";
795
796
  return _context2.abrupt("break", 244);
796
797
 
797
798
  case 243: