api.js 45 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998
  1. // 加密 sha1 md5
  2. var encrypt = require('./encrypt.js');
  3. // 缓存
  4. var cache = require('./cache.js');
  5. // 数学精确计算
  6. var math = require('./math.js');
  7. // 腾讯位置服务
  8. var qqMap = require("./qqmap-wx-jssdk");
  9. // 二维码
  10. var qrCode = require("./weapp.qrcode.min");
  11. module.exports = {
  12. /**
  13. * 小程序基本配置
  14. */
  15. config: {
  16. name: '嘉兴拓新',
  17. debug: false, //开发模式true,生产环境改为false;
  18. version: 'xcx',
  19. baseUrl: 'https://txjxjy.com/index.php',
  20. qqMap: false,
  21. loading: false
  22. },
  23. /**
  24. * sha1加密
  25. * @param str
  26. * @param raw 加密方式 1str_sha1 0hex_sha1
  27. */
  28. sha1: function(str, raw) {
  29. return encrypt.sha1(str, raw);
  30. },
  31. /**
  32. * md5加密
  33. * @param str
  34. */
  35. md5: function(str) {
  36. return encrypt.md5(str);
  37. },
  38. /**
  39. * 缓存
  40. */
  41. cache: cache,
  42. /**
  43. * 数字精确计算
  44. */
  45. math: math,
  46. /**
  47. * 腾讯地图
  48. */
  49. qqMap: qqMap,
  50. /**
  51. * 消息提示
  52. * @param title
  53. * @param icon:success,error,loading,none
  54. * @param success
  55. * @param time
  56. * @param mask
  57. */
  58. info: function(title, icon, success, time, mask) {
  59. if (typeof icon == 'function') {
  60. success = icon;
  61. icon = "none";
  62. }
  63. title = title == undefined ? "系统繁忙" : title;
  64. icon = icon == undefined ? "none" : icon;
  65. time = time == undefined ? 800 : time;
  66. mask = mask == undefined ? true : mask;
  67. uni.showToast({
  68. title: title,
  69. icon: icon,
  70. mask: mask,
  71. duration: time,
  72. success: setTimeout(function() {
  73. success && success()
  74. }, time)
  75. });
  76. },
  77. /**
  78. * 确认提示框
  79. * @param {Object} content
  80. * @param {Object} success
  81. * @param {Object} cancel
  82. * @param {Object} confirmText
  83. * @param {Object} cancelText
  84. */
  85. modal: function(content, success, cancel, confirmText, cancelText) {
  86. let opt = {};
  87. opt.title = this.config.name;
  88. opt.content = content;
  89. // 默认不显示取消
  90. opt.showCancel = false;
  91. if (typeof cancel == 'function' || (typeof cancel == 'boolean' && cancel)) {
  92. opt.showCancel = true;
  93. } else if (typeof cancel == 'string') {
  94. cancelText = confirmText;
  95. confirmText = cancel;
  96. }
  97. if (!this.isEmpty(confirmText)) {
  98. opt.confirmText = confirmText;
  99. }
  100. if (!this.isEmpty(cancelText)) {
  101. opt.cancelText = cancelText;
  102. opt.showCancel = true;
  103. }
  104. opt.success = function(res) {
  105. if (res.confirm) {
  106. success && success();
  107. } else if (res.cancel) {
  108. typeof cancel == 'function' && cancel();
  109. }
  110. };
  111. uni.showModal(opt);
  112. },
  113. /**
  114. * loading 提示框
  115. * @param title
  116. */
  117. loading: function(title) {
  118. var that = this;
  119. title = typeof title == 'string' ? title : "加载中...";
  120. !that.config.loading && uni.showLoading({
  121. title: title,
  122. mask: true,
  123. success: function() {
  124. that.config.loading = true;
  125. }
  126. });
  127. },
  128. /**
  129. * 关闭loading 提示框
  130. */
  131. closeLoading: function() {
  132. var that = this;
  133. that.config.loading && uni.hideLoading({
  134. noConflict: true,
  135. success: function() {
  136. that.config.loading = false;
  137. }
  138. });
  139. },
  140. /**
  141. * 判断登录
  142. * @param {Object} type 0不跳转登录 1跳转登录
  143. * @param {Object} success
  144. */
  145. login: function(type, success) {
  146. if (typeof type == 'function') {
  147. success = type;
  148. type = 1;
  149. } else if (typeof type == 'undefined') {
  150. type = 1;
  151. }
  152. var that = this;
  153. /* var userInfo = this.getUserInfo();
  154. if (this.isEmpty(userInfo)) {
  155. if (type == 1) {
  156. that.info('请先登录', function() {
  157. var pages = getCurrentPages();
  158. var route = pages[pages.length - 1].route;
  159. // if (route != 'pages/login/choose') {
  160. // that.jump('/pages/login/choose');
  161. // }
  162. });
  163. }
  164. return false;
  165. } */
  166. // return success && success(userInfo) || userInfo;
  167. return success
  168. },
  169. /**
  170. * 页面跳转
  171. * @param url
  172. * @param type
  173. */
  174. jump: function(url, type, params) {
  175. var that = this;
  176. if (that.isEmpty(url) && type !== -1) return false;
  177. if (url === -1) {
  178. var delta = type || 1;
  179. type = url;
  180. } else if (type === -1) {
  181. var delta = 1;
  182. if (params && params.delta) {
  183. delta = params.delta;
  184. }
  185. }
  186. type = type || 0, //默认0
  187. params = params || {};
  188. if (that.isEmpty(params)) {
  189. cache.remove('jump_data');
  190. } else {
  191. cache.set('jump_data', params);
  192. }
  193. switch (type) {
  194. case -1:
  195. //关闭当前页面,返回上一页面或多级页面 delta:1 返回层数
  196. setTimeout(function() {
  197. uni.navigateBack({
  198. delta: delta
  199. });
  200. }, 800);
  201. return;
  202. case 0:
  203. //保留当前页面,跳转到应用内的某个页面,使用uni.navigateBack可以返回到原页面
  204. uni.navigateTo({
  205. url: url
  206. });
  207. return;
  208. case 1:
  209. //关闭当前页面,跳转到应用内的某个页面
  210. uni.redirectTo({
  211. url: url
  212. });
  213. return;
  214. case 2:
  215. //关闭所有页面,打开到应用内的某个页面
  216. uni.reLaunch({
  217. url: url
  218. });
  219. return;
  220. case 3:
  221. //跳转到 tabBar 页面,并关闭其他所有非 tabBar 页面
  222. uni.switchTab({
  223. url: url
  224. });
  225. return;
  226. default:
  227. return false;
  228. }
  229. },
  230. /**
  231. * 数据请求
  232. */
  233. req: function(option, onsuccess, onerror, oncomplete) {
  234. if (option == 'undefined') return false;
  235. var that = this,
  236. config = {
  237. sign: false, //是否签名数据
  238. load: false, //是否显示loading提示
  239. login: false, //是否需要登录
  240. url: false,
  241. data: option.data,
  242. header: {
  243. 'content-type': 'application/x-www-form-urlencoded;charset=UTF-8',
  244. 'Authorization': uni.getStorageSync('token').token? uni.getStorageSync('token').token: ''
  245. },
  246. method: 'post',
  247. dataType: 'json',
  248. success: function(res) { //通讯成功
  249. // console.log(res);
  250. //获取返回数据
  251. res = res.data;
  252. // if (res.is_disable == 1) {
  253. // that.info('该账号已被禁用')
  254. // uni.removeStorageSync('token')
  255. // setTimeout(function(){
  256. // // $api.jump('/pages/login/login')
  257. // },1000)
  258. // }
  259. that.jslog('请求:' + option.url);
  260. that.jslog(res.data);
  261. //如果存在回调,优先执行回调函数
  262. if (onsuccess) {
  263. if (onsuccess(res) === false) {
  264. return;
  265. }
  266. }
  267. if (typeof(res) == 'object') {
  268. (res.info && res.info != 'success') && that.info(res.info);
  269. if (res.status == 98) { //未登录或账号不存在
  270. cache.remove('user_info');
  271. that.login();
  272. } else if (res.status == 99) { //token验证失败
  273. cache.remove('token');
  274. }
  275. } else {
  276. // that.modal('接口异常');
  277. }
  278. },
  279. fail: function(res) { //通讯失败
  280. that.jslog('请求:' + option.url);
  281. that.jslog(res);
  282. onerror && onerror();
  283. },
  284. complete: function(res) { //通讯完成
  285. option.load && that.closeLoading();
  286. oncomplete && oncomplete();
  287. }
  288. };
  289. option.data && (option.data = option.data);
  290. if (option.url) {
  291. option.url = that.config.baseUrl + option.url;
  292. } else {
  293. return false;
  294. }
  295. option = that.extend({}, config, option);
  296. if (option.login && !that.login()) {
  297. return false;
  298. }
  299. // if (!option.data.submit) {
  300. // option.data.submit = 'yes';
  301. // }
  302. if (option.sign) {
  303. that.getsign(option.data, function(res) {
  304. option.data = res;
  305. option.load && that.loading(option.load);
  306. uni.request(option);
  307. })
  308. } else {
  309. option.load && that.loading(option.load);
  310. uni.request(option);
  311. }
  312. },
  313. /**
  314. * 获取一个Token,登录成功请清空
  315. * @param {function} callback :回调函数
  316. */
  317. gettoken: function(callback) {
  318. var that = this,
  319. token = cache.get('token'),
  320. timestamp = Date.parse(new Date()) / 1000;
  321. // 10分钟缓冲
  322. if (token && token.date_expire > (timestamp + 600)) return callback({
  323. status: 1,
  324. data: token
  325. });
  326. var uuid = that.uuid(),
  327. //clientid=that.getClientId(),
  328. uid = that.getUserInfo('id', 0);
  329. uni.request({
  330. url: that.config.baseUrl + 'token',
  331. data: {
  332. uuid: uuid,
  333. uid: uid,
  334. timestamp: timestamp
  335. }, //clientid:clientid
  336. timeout: 10000, //超时时间设置为10秒
  337. success: function(res) {
  338. var res = res.data;
  339. if (res.status == 1) {
  340. cache.set('token', res.data);
  341. }
  342. return callback(res);
  343. },
  344. complete: function(res) {
  345. that.jslog('获取token:' + res);
  346. }
  347. });
  348. },
  349. /**
  350. * 数据签名
  351. * @param {string} data:要签名的数据
  352. * @param {function} onsuccess:成功回调函数
  353. * @param {function} onerror:失败回调函数
  354. */
  355. getsign: function(param, onsuccess, onerror) {
  356. var that = this,
  357. arr = [];
  358. param._sign_uuid = that.uuid();
  359. param._sign_uid = that.getUserInfo('id', 0);
  360. param._timestamp = Date.parse(new Date()) / 1000;
  361. param._version = that.config.version;
  362. that.gettoken(function(res) {
  363. if (res.status == 1) {
  364. param._sign_token = res.data.token;
  365. for (var i in param) {
  366. if (!that.isEmpty(param[i], true)) {
  367. arr.push(i + '=' + param[i]);
  368. }
  369. }
  370. arr.sort();
  371. param._sign = encrypt.sha1(arr.join('&') + res.data.token).toUpperCase();
  372. return onsuccess(param);
  373. } else {
  374. return onerror && onerror(res.info) || that.info(res.info);
  375. }
  376. });
  377. },
  378. /**
  379. * 格式化参数(password加密)
  380. * @param {string} query:参数
  381. */
  382. formatparam: function(query) {
  383. var json = {};
  384. if (typeof(query) == 'object') {
  385. for (var i in query) {
  386. if (i.indexOf('password') > -1) {
  387. query[i] = encrypt.md5(encrypt.sha1(query[i]));
  388. }
  389. }
  390. return query;
  391. } else {
  392. var vars = query.split('&');
  393. for (var i = 0; i < vars.length; i++) {
  394. var pair = vars[i].split('=');
  395. if (pair[0].indexOf('password') != -1) {
  396. pair[1] = encrypt.md5(encrypt.sha1(pair[1]));
  397. } else {
  398. pair[1] = pair[1];
  399. }
  400. if (typeof json[pair[0]] === 'undefined') {
  401. json[pair[0]] = pair[1];
  402. } else if (typeof json[pair[0]] === 'string') {
  403. var arr = [json[pair[0]], pair[1]];
  404. json[pair[0]] = arr;
  405. } else {
  406. json[pair[0]].push(pair[1]);
  407. }
  408. }
  409. return json;
  410. }
  411. },
  412. /**
  413. * 判断是否数组
  414. *
  415. * 1. 通过object类型的副属性class判断,
  416. * 其中函数的class是Function,结果是[object Function]
  417. * 普通的对象是Object,结果是[object Object]
  418. * Object.prototype.toString.call(arr) === '[object Array]'
  419. * 2. 通过原型去判断
  420. * arr.constructor === Array
  421. * Array.prototype.isPrototypeOf(arr)
  422. * arr.__proto__ === Array.prototype
  423. * Object.getPrototypeOf(arr) === Array.prototype
  424. * arr instanceof Array
  425. * 3. es6新增方法
  426. * Array.isArray(arr)
  427. */
  428. isArray: function(arr) {
  429. return arr && typeof(arr) == 'object' && Object.prototype.toString.call(arr) === '[object Array]';
  430. },
  431. /**
  432. * 否判断指定参数是否是一个纯粹的对象
  433. * 所谓"纯粹的对象",就是通过"{}"或"new Object"创建的,不包括数组等对象
  434. *
  435. * 1. 通过object类型的副属性class判断
  436. * Object.prototype.toString.call(obj) === '[object Object]'
  437. * 2. 通过原型去判断
  438. * obj.constructor === Object
  439. * obj instanceof Object(数组也是对象,所以 arr instanceof Object 也为true)
  440. * 3. typeof
  441. * typeof obj(除了{},null和[]也是'object')
  442. */
  443. isPlainObject: function(obj) {
  444. if (Object.getPrototypeOf) {
  445. return obj && typeof(obj) == 'object' && Object.getPrototypeOf(obj) == Object.prototype;
  446. } else {
  447. return obj && typeof(obj) == 'object' && Object.prototype.toString.call(obj) == "[object Object]" &&
  448. !obj.length;
  449. }
  450. },
  451. /**
  452. * 获取对象大小
  453. * @param object
  454. */
  455. getLength: function(object) {
  456. return Object.keys(object).length
  457. },
  458. /**
  459. * 判断两个Json(纯粹)对象是否一样
  460. * @param objA
  461. * @param objB
  462. */
  463. compareJsonObj: function(objA, objB) {
  464. if (!this.isPlainObject(objA) || !this.isPlainObject(objB)) return false; //判断类型是否正确
  465. return this.compareObj(objA, objB); //默认为true
  466. },
  467. /**
  468. * 判断两个对象是否一样
  469. * @param objA
  470. * @param objB
  471. * @param flag
  472. */
  473. compareObj: function(objA, objB, flag) {
  474. if (this.getLength(objA) != this.getLength(objB)) return false;
  475. flag = flag || true;
  476. for (var key in objA) {
  477. if (!flag) //flag为false,则跳出整个循环
  478. break;
  479. if (!objB.hasOwnProperty(key)) { //是否有自身属性,而不是继承的属性
  480. flag = false;
  481. break;
  482. }
  483. if (!this.isArray(objA[key])) { //子级不是数组时,比较属性值
  484. if (this.isPlainObject(objA[key])) {
  485. if (this.isPlainObject(objB[key])) {
  486. if (!flag) //这里跳出循环是为了不让递归继续
  487. break;
  488. flag = this.compareObj(objA[key], objB[key], flag);
  489. } else {
  490. flag = false;
  491. break;
  492. }
  493. } else {
  494. if (String(objB[key]) != String(objA[key])) { //排除数字比较的类型差异
  495. flag = false;
  496. break;
  497. }
  498. }
  499. } else {
  500. if (!this.isArray(objB[key])) {
  501. flag = false;
  502. break;
  503. }
  504. var oA = objA[key],
  505. oB = objB[key];
  506. if (oA.length != oB.length) {
  507. flag = false;
  508. break;
  509. }
  510. for (var k in oA) {
  511. if (!flag) //这里跳出循环是为了不让递归继续
  512. break;
  513. flag = this.compareObj(oA[k], oB[k], flag);
  514. }
  515. }
  516. }
  517. return flag;
  518. },
  519. /**
  520. * 将一个或多个对象的内容合并到目标对象
  521. * @param Object target 目标对象,其他对象的成员属性将被附加到该对象上
  522. * @param Object target 目标对象,第一个被合并的对象
  523. * @param Object target 目标对象,第二个被合并的对象
  524. */
  525. extend: Object.assign || function(target, source, deep) {
  526. for (key in source) {
  527. if (deep && (this.isPlainObject(source[key]) || this.isArray(source[key]))) {
  528. if (this.isPlainObject(source[key]) && !this.isPlainObject(target[key])) {
  529. target[key] = {};
  530. }
  531. if (this.isArray(source[key]) && !this.isArray(target[key])) {
  532. target[key] = [];
  533. }
  534. this.extend(target[key], source[key], deep);
  535. } else if (source[key] !== undefined) {
  536. target[key] = source[key];
  537. }
  538. }
  539. return target;
  540. },
  541. /**
  542. * 判断一个对象是否为空
  543. * @param {string} string:要判断的参数
  544. * @param {string} is_zero:是否要判断'0'
  545. */
  546. isEmpty: function(string, is_zero = false) {
  547. if (is_zero && string === '0') {
  548. return true;
  549. }
  550. // 0 == '',false == '',[] == ''
  551. if (string == '' || string == null || typeof(string) == 'undefined' || string == 'undefined') {
  552. return true;
  553. }
  554. // 对象 和 数组
  555. if (typeof(string) == 'object') {
  556. return this.getLength(string) ? false : true;
  557. }
  558. return false;
  559. },
  560. /**
  561. * 为客户端生成一个唯一的uuid
  562. */
  563. uuid: function() {
  564. var uuid,
  565. random = function() {
  566. return (((1 + Math.random()) * 0x10000) | 0).toString(16).substring(1);
  567. };
  568. uuid = cache.get('uuid');
  569. if (!uuid) {
  570. uuid = encrypt.sha1(random() + random() + '-' + random() + '-' + random() + '-' + random() + '-' +
  571. random() + random() + random());
  572. cache.set('uuid', uuid);
  573. }
  574. return uuid;
  575. },
  576. /**
  577. * 获取设备唯一标识
  578. */
  579. getClientId: function() {
  580. //获取客户端ID
  581. var clientid = cache.get('client_id');
  582. if (clientid) return clientid;
  583. //TODO::
  584. },
  585. /**
  586. * 获取用户登录信息
  587. * @param k 键值
  588. * @param d 入没有返回的默认值
  589. */
  590. getUserInfo: function(k, d) {
  591. if (d == 'undefined') {
  592. d = 0;
  593. }
  594. var userInfo = cache.get('user_info');
  595. if (this.isEmpty(userInfo)) {
  596. return d;
  597. } else {
  598. if (typeof k == 'undefined') {
  599. return userInfo;
  600. } else {
  601. if (typeof userInfo[k] == 'undefined') {
  602. return d;
  603. } else {
  604. return userInfo[k];
  605. }
  606. }
  607. }
  608. },
  609. /**
  610. * 查找指定值的元素在数组中第一次出现的位置
  611. * 查找指定键的值的元素在二维数组中第一次出现的位置
  612. * @param arr 数组
  613. * @param val 要查找的值
  614. * @param key 二维数组元素的值对应的键
  615. */
  616. indexOf: function(arr, val, key) {
  617. if (this.isEmpty(arr) || this.isEmpty(val)) return -1;
  618. if (typeof key == 'undefined') {
  619. for (let i = 0; i < arr.length; i++) {
  620. if (arr[i] == val) {
  621. return i;
  622. }
  623. }
  624. } else {
  625. for (let i = 0; i < arr.length; i++) {
  626. if (arr[i][key] == val) {
  627. return i;
  628. }
  629. }
  630. }
  631. return -1;
  632. },
  633. /**
  634. * (批量)删除数组中指定值的元素
  635. * (批量)删除二维数组中指定键的值的元素
  636. * @param {Object} arr (二维)数组
  637. * @param {Object} vals 值(数组)
  638. * @param {Object} key 值(数组)组对应的键
  639. */
  640. removeItemByVals: function(arr, vals, key) {
  641. var that = this;
  642. if (this.isEmpty(arr) || this.isEmpty(vals)) return arr;
  643. if (this.isArray(vals)) {
  644. //!倒序删除
  645. if (typeof key == 'undefined') {
  646. for (let i = arr.length - 1; i >= 0; i--) {
  647. let index = that.indexOf(vals, arr[i]);
  648. if (index > -1) {
  649. arr.splice(i, 1);
  650. }
  651. }
  652. } else {
  653. for (let i = arr.length - 1; i >= 0; i--) {
  654. let index = that.indexOf(vals, arr[i][key]);
  655. if (index > -1) {
  656. arr.splice(i, 1);
  657. }
  658. }
  659. }
  660. } else {
  661. let index = this.indexOf(arr, vals, key);
  662. if (index > -1) {
  663. arr.splice(index, 1);
  664. }
  665. }
  666. return arr;
  667. },
  668. /**
  669. * 批量删除数组中指定键的元素
  670. * @param {Object} arr 数组
  671. * @param {Object} indexs 序号(数组)
  672. */
  673. removeItemByIndex: function(arr, indexs) {
  674. var that = this;
  675. if (this.isEmpty(arr) || this.isEmpty(indexs)) return arr;
  676. if (this.isArray(indexs)) {
  677. //!倒序删除
  678. for (let i = arr.length - 1; i >= 0; i--) {
  679. let index = that.indexOf(indexs, i);
  680. if (index > -1) {
  681. arr.splice(i, 1);
  682. }
  683. }
  684. } else {
  685. arr.splice(indexs, 1);
  686. }
  687. return arr;
  688. },
  689. /**
  690. * 返回数组中某个单一列的值
  691. */
  692. array_column: function(arr, key) {
  693. if (this.isEmpty(arr)) return arr;
  694. if (this.isEmpty(key)) return [];
  695. var vals = [];
  696. arr.forEach(item => {
  697. vals.push(item[key]);
  698. });
  699. return vals;
  700. },
  701. /**
  702. * 对象按照key排序
  703. * @param {Object} arr
  704. */
  705. array_ksort: function(arr) {
  706. let sorted = {},
  707. keys = Object.keys(arr);
  708. keys.sort();
  709. keys.forEach((key) => {
  710. sorted[key] = arr[key];
  711. })
  712. return sorted;
  713. },
  714. /**
  715. * 数组按元素(指定键值)排序
  716. * @param {Object} arr
  717. * @param {Object} key
  718. * @param {Object} sort asc desc
  719. */
  720. array_vsort: function(arr, key, sort) {
  721. if (this.isEmpty(arr)) return arr;
  722. key = key || '';
  723. sort = sort || 'asc';
  724. if (key == '') {
  725. return arr.sort();
  726. } else {
  727. if (sort == 'asc') {
  728. return arr.sort(function(a, b) {
  729. return a[key] - b[key];
  730. });
  731. } else {
  732. return arr.sort(function(a, b) {
  733. return b[key] - a[key];
  734. });
  735. }
  736. }
  737. },
  738. /**
  739. * 日期时间格式化
  740. * @param {Object} date 日期对象
  741. * @param {Object} type 增加加的时间间隔:y年 q季度(3个月) m月 d天
  742. * @param {Object} number 增加的时间间隔的个数
  743. * @param {Object} format 格式化样式
  744. */
  745. formatDate: function({
  746. date = '',
  747. type = 'y',
  748. number = 0,
  749. format = 'Y-m-d H:i:s'
  750. }) {
  751. var that = this;
  752. if (that.isEmpty(date, true)) {
  753. date = new Date();
  754. } else {
  755. if (typeof date == 'number') {
  756. date = new Date(parseInt(date) * 1000);
  757. } else if (typeof date == 'string') {
  758. date = new Date(date);
  759. }
  760. }
  761. date = that.addDate(type, number, date);
  762. var zero = function(value) {
  763. if (value < 10) {
  764. return '0' + value;
  765. }
  766. return value;
  767. },
  768. year = date.getFullYear(),
  769. month = zero(date.getMonth() + 1),
  770. day = zero(date.getDate()),
  771. hour = zero(date.getHours()),
  772. minite = zero(date.getMinutes()),
  773. second = zero(date.getSeconds());
  774. return format.replace(/Y|m|d|H|i|s/ig, function(matches) {
  775. return ({
  776. Y: year,
  777. m: month,
  778. d: day,
  779. H: hour,
  780. i: minite,
  781. s: second,
  782. })[matches];
  783. });
  784. },
  785. /**
  786. * 日期时间计算
  787. * addDate(type,number,date)
  788. * @param {Object} type 增加的时间间隔:y年 q季度(3个月) m月 d天
  789. * @param {Object} number 增加的时间间隔的个数
  790. * @param {Object} date 开始日期对象
  791. * @return {type} 新的日期对象
  792. * var now = new Date();
  793. * var newDate = addDate( "d", 5, now);
  794. */
  795. addDate: function(type, number, date) {
  796. switch (type) {
  797. case "y": {
  798. date.setFullYear(date.getFullYear() + number);
  799. return date;
  800. break;
  801. }
  802. case "q": {
  803. date.setMonth(date.getMonth() + number * 3);
  804. return date;
  805. break;
  806. }
  807. case "m": {
  808. date.setMonth(date.getMonth() + number);
  809. return date;
  810. break;
  811. }
  812. case "w": {
  813. date.setDate(date.getDate() + number * 7);
  814. return date;
  815. break;
  816. }
  817. case "d": {
  818. date.setDate(date.getDate() + number);
  819. return date;
  820. break;
  821. }
  822. case "h": {
  823. date.setHours(date.getHours() + number);
  824. return date;
  825. break;
  826. }
  827. case "m": {
  828. date.setMinutes(date.getMinutes() + number);
  829. return date;
  830. break;
  831. }
  832. case "s": {
  833. date.setSeconds(date.getSeconds() + number);
  834. return date;
  835. break;
  836. }
  837. default: {
  838. date.setDate(date.getDate() + number);
  839. return date;
  840. break;
  841. }
  842. }
  843. },
  844. /**
  845. * 二维码操作
  846. * @param {Object} canvas 图片路径
  847. * @param {Object} action 操作类型
  848. * qrcode:绘制二维码(根据内容data)
  849. * scan:扫描二维码
  850. * @param {Object} canvas 绘制二维码canvasID
  851. * @param {Object} data 绘制二维码内容
  852. * @param {Object} camera 扫描二维码是否只使用相机
  853. * @param {Object} success 成功回调
  854. * @param {Object} error 失败回调
  855. */
  856. qrCodeOperat({
  857. action = 'qrcode',
  858. canvas,
  859. data,
  860. camera = false,
  861. success,
  862. error
  863. }) {
  864. var that = this;
  865. switch (action) {
  866. case 'qrcode':
  867. qrCode({
  868. width: 180,
  869. height: 180,
  870. x: 20,
  871. y: 20,
  872. canvasId: canvas,
  873. text: data,
  874. });
  875. break;
  876. case 'scan':
  877. uni.scanCode({
  878. onlyFromCamera: camera,
  879. success(res) {
  880. if (res.errMsg == 'scanCode:ok') {
  881. // 二维码内容 res.result
  882. success && success(res.result);
  883. } else {
  884. error && error(res);
  885. }
  886. },
  887. fail(res) {
  888. if (res.errMsg != 'scanCode:fail cancel') {
  889. error && error(res);
  890. }
  891. }
  892. });
  893. break;
  894. default:
  895. that.modal('请明确二维码操作类型');
  896. }
  897. },
  898. /**
  899. * 图片操作
  900. * @param {Object} path 图片路径
  901. * @param {Object} action 操作类型
  902. * choose:选择图片
  903. * upload:图片上传
  904. * info:图片信息
  905. * read:读取图片(base64)
  906. * write:保存图片(base64)
  907. * down:下载图片
  908. * save:保存图片(临时路径)
  909. * preview:图片预览
  910. * @param {Object} data 保存图片:图片base64内容(不带 data:image/png;base64,),
  911. * 图片预览:图片数组
  912. * @param {Object} fileName 保存图片的名称
  913. * @param {Object} menu 图片预览:是否显示长按菜单
  914. * @param {Object} count 图片选择:默认图片选择数量
  915. * @param {Object} success 成功回调
  916. * @param {Object} error 失败回调
  917. */
  918. imageOperat({
  919. action = 'choose',
  920. path,
  921. fileName = 'write',
  922. data,
  923. count = 1,
  924. menu = true,
  925. success,
  926. error
  927. }) {
  928. var that = this;
  929. if (action == 'choose') {
  930. uni.chooseImage({
  931. count: count,
  932. sizeType: ['original', 'compressed'], //可以指定是原图还是压缩图,默认二者都有
  933. sourceType: ['camera', 'album'], //相册选择、使用相机
  934. success: (e) => {
  935. e.tempFilePaths.forEach((item) => {
  936. success && success(item);
  937. });
  938. },
  939. fail(e) {
  940. error && error(e);
  941. }
  942. });
  943. } else if (action == 'upload') {
  944. uni.uploadFile({
  945. url: that.config.baseUrl + '/api/Publics/uploadLocality',
  946. filePath: path,
  947. name: 'upfile',
  948. /* header: {
  949. 'content-type': 'multipart/form-data'
  950. }, */
  951. formData: {
  952. // uid: that.getUserInfo('id', 0)
  953. file: path
  954. },
  955. success(e) {
  956. console.log(e)
  957. let res = JSON.parse(e.data);
  958. if (res.status == 1) {
  959. success && success(res);
  960. } else {
  961. error && error({
  962. errMsg: res.info
  963. });
  964. }
  965. },
  966. fail(e) {
  967. error && error(e);
  968. }
  969. });
  970. } else if (action == 'info') {
  971. uni.getImageInfo({
  972. src: path,
  973. success(e) {
  974. if (e.errMsg == 'getImageInfo:ok') {
  975. //e.height e.width e.type
  976. success && success(e);
  977. } else {
  978. error && error(e);
  979. }
  980. },
  981. fail(e) {
  982. error && error(e);
  983. }
  984. });
  985. } else if (action == 'read') {
  986. uni.getFileSystemManager().readFile({
  987. filePath: path,
  988. encoding: 'base64',
  989. position: 0,
  990. success(e) {
  991. if (e.errMsg == 'readFile:ok') {
  992. //let img = 'data:image/png;base64,' + e.data.replace(/[\r\n]/g, "");
  993. success && success(e);
  994. } else {
  995. error && error(e);
  996. }
  997. },
  998. fail(e_t) {
  999. error && error(e);
  1000. }
  1001. });
  1002. } else if (action == 'write') {
  1003. let filePath = `${uni.env.USER_DATA_PATH}/${fileName}.png`;
  1004. uni.getFileSystemManager().writeFile({
  1005. filePath: filePath,
  1006. data: data,
  1007. encoding: 'base64',
  1008. success(e) {
  1009. if (e.errMsg == 'writeFile:ok') {
  1010. success && success(filePath);
  1011. } else {
  1012. error && error(e);
  1013. }
  1014. },
  1015. fail(e) {
  1016. console.log(e);
  1017. error && error(e);
  1018. }
  1019. });
  1020. } else if (action == 'down') {
  1021. uni.downloadFile({
  1022. url: path,
  1023. success(e) {
  1024. if (e.errMsg === 'downloadFile:ok') {
  1025. //e.tempFilePath
  1026. success && success(e);
  1027. } else {
  1028. error && error(e);
  1029. }
  1030. },
  1031. fail(e) {
  1032. error && error(e);
  1033. }
  1034. })
  1035. } else if (action == 'save') {
  1036. let filePath = `${uni.env.USER_DATA_PATH}/${fileName}.png`;
  1037. uni.getFileSystemManager().saveFile({
  1038. tempFilePath: path,
  1039. filePath: filePath,
  1040. success(e) {
  1041. if (e.errMsg == 'saveFile:ok') {
  1042. success && success(filePath);
  1043. } else {
  1044. error && error(e);
  1045. }
  1046. },
  1047. fail(e) {
  1048. console.log(e);
  1049. error && error(e);
  1050. }
  1051. });
  1052. } else if (action == 'preview') {
  1053. uni.previewImage({
  1054. currnet: path,
  1055. urls: data,
  1056. showmenu: menu
  1057. });
  1058. }
  1059. },
  1060. /**
  1061. * 视频操作
  1062. */
  1063. viedoOperat({
  1064. action = 'choose',
  1065. count = 1, //上传视频的个数
  1066. mediaType = ['video'], //限制上传的类型为video
  1067. sourceType = ['album', 'camera'], //视频选择来源
  1068. maxDuration = 58, //拍摄限制时间
  1069. camera = 'back', //采用后置摄像头
  1070. filePath,
  1071. path,
  1072. size = 20,
  1073. success,
  1074. error
  1075. }) {
  1076. var that = this
  1077. if (action == 'choose') {
  1078. uni.chooseMedia({
  1079. count: count,
  1080. mediaType: mediaType,
  1081. sourceType: sourceType,
  1082. maxDuration: maxDuration,
  1083. camera: camera,
  1084. success(e) {
  1085. console.log(e)
  1086. if (e.errMsg == 'chooseMedia:ok') {
  1087. e.tempFiles.forEach((item) => {
  1088. let sel_size = parseFloat(item.size / 1024 / 1024).toFixed(1)
  1089. if (sel_size > size) {
  1090. let beyongSize = sel_size - size //获取视频超出限制大小的数量
  1091. that.info("上传的视频大小超限,超出" + beyongSize + "MB,请重新上传!")
  1092. error && error();
  1093. } else {
  1094. success && success(item);
  1095. }
  1096. });
  1097. } else {
  1098. error && error(e);
  1099. }
  1100. },
  1101. fail(e) {
  1102. console.log(e);
  1103. error && error(e);
  1104. }
  1105. })
  1106. }
  1107. //压缩视频
  1108. if (action == 'compress') {
  1109. uni.compressVideo({
  1110. quality: 'high',
  1111. src: filePath,
  1112. success(e) {
  1113. console.log(e)
  1114. if (e.errMsg == 'compressVideo:ok') {
  1115. // e.tempFiles.forEach((item) => {
  1116. success && success(e);
  1117. // });
  1118. } else {
  1119. error && error(e);
  1120. }
  1121. },
  1122. fail(e) {
  1123. console.log(e);
  1124. error && error(e);
  1125. }
  1126. })
  1127. }
  1128. },
  1129. /**
  1130. * 位置服务
  1131. * @param {Object} action 操作类型
  1132. * getLocation: 获取当前的地理位置、速度
  1133. * openLocation: 使用微信内置地图查看位置
  1134. * chooseLocation: 打开地图选择位置
  1135. * choosePoi: 打开 POI 列表选择位置
  1136. * getLatLng: 获取指定地址经纬度
  1137. * getAreaCode: 根据经纬度获取区划信息
  1138. * getDistance: 计算2个经纬度之间的距离
  1139. * @param {Object} type 返回坐标类型: wgs84返回gps坐标,gcj02 返回可用于 uni.openLocation 的坐标
  1140. * @param {Object} address 查询地址: '北京市海淀区彩和坊路海淀西大街74号'
  1141. * @param {Object} from 计算距离起点坐标,默认当前位置
  1142. * {latitude: 0, longitude: 0}
  1143. * @param {Object} to 计算距离终点坐标
  1144. * [{latitude: 0, longitude: 0}]
  1145. * @param {Object} success 成功回调
  1146. * @param {Object} error 失败回调
  1147. */
  1148. locationOperat({
  1149. action = 'getLocation',
  1150. type = 'gcj02',
  1151. address,
  1152. from = '',
  1153. to,
  1154. success,
  1155. error
  1156. }) {
  1157. var that = this;
  1158. if (action == 'getLocation') {
  1159. uni.getLocation({
  1160. type: type,
  1161. success(e) {
  1162. if (e.errMsg == 'getLocation:ok') {
  1163. success && success(e);
  1164. } else {
  1165. error && error(e);
  1166. }
  1167. },
  1168. fail(e) {
  1169. error && error(e);
  1170. }
  1171. });
  1172. } else if (action == 'openLocation') {
  1173. var {
  1174. latitude,
  1175. longitude
  1176. } = from;
  1177. uni.openLocation({
  1178. latitude: latitude,
  1179. longitude: longitude,
  1180. success(e) {
  1181. if (e.errMsg == 'openLocation:ok') {
  1182. success && success(e);
  1183. } else {
  1184. error && error(e);
  1185. }
  1186. },
  1187. fail(e) {
  1188. error && error(e);
  1189. }
  1190. });
  1191. } else if (action == 'chooseLocation') {
  1192. var {
  1193. latitude = '',
  1194. longitude = ''
  1195. } = from;
  1196. uni.chooseLocation({
  1197. latitude: latitude,
  1198. longitude: longitude,
  1199. success(e) {
  1200. if (e.errMsg == 'chooseLocation:ok') {
  1201. success && success(e);
  1202. } else {
  1203. error && error(e);
  1204. }
  1205. },
  1206. fail(e) {
  1207. error && error(e);
  1208. }
  1209. });
  1210. } else if (action == 'choosePoi') {
  1211. var {
  1212. latitude = '',
  1213. longitude = ''
  1214. } = from;
  1215. uni.choosePoi({
  1216. success(e) {
  1217. if (e.errMsg == 'choosePoi:ok') {
  1218. success && success(e);
  1219. } else {
  1220. error && error(e);
  1221. }
  1222. },
  1223. fail(e) {
  1224. error && error(e);
  1225. }
  1226. });
  1227. } else if (action == 'getLatLng') {
  1228. new qqMap({
  1229. key: that.config.qqMapKey
  1230. }).geocoder({
  1231. address: address,
  1232. success(e) {
  1233. if (e.status == 0 && e.message == 'query ok') {
  1234. success && success(e.result);
  1235. } else {
  1236. error && error(e);
  1237. }
  1238. },
  1239. fail(e) {
  1240. error && error(e);
  1241. }
  1242. });
  1243. } else if (action == 'getAreaCode') {
  1244. new qqMap({
  1245. key: that.config.qqMapKey
  1246. }).reverseGeocoder({
  1247. success(e) {
  1248. if (e.status == 0 && e.message == 'query ok') {
  1249. success && success(e.result);
  1250. } else {
  1251. error && error(e);
  1252. }
  1253. },
  1254. fail(e) {
  1255. error && error(e);
  1256. }
  1257. });
  1258. } else if (action == 'getDistanceApi') {
  1259. new qqMap({
  1260. key: that.config.qqMapKey
  1261. }).calculateDistance({
  1262. from: from, //若起点有数据则采用起点坐标,若为空默认当前地址
  1263. to: to,
  1264. success(e) {
  1265. if (e.status == 0 && e.message == 'query ok') {
  1266. success && success(e.result.elements);
  1267. } else {
  1268. error && error(e);
  1269. }
  1270. },
  1271. fail(e) {
  1272. error && error(e);
  1273. }
  1274. });
  1275. } else if (action == 'getDistanceMath') { // 返回KM
  1276. var {
  1277. latitude: lat1 = '',
  1278. longitude: lng1 = ''
  1279. } = from;
  1280. if (lat1 == '' && lng1 == '') {
  1281. return 0;
  1282. }
  1283. var {
  1284. latitude: lat2 = '',
  1285. longitude: lng2 = ''
  1286. } = to;
  1287. var toRad = function(d) {
  1288. return d * Math.PI / 180;
  1289. };
  1290. var dis = 0;
  1291. var deltaLng = toRad(lng1) - toRad(lng2);
  1292. var radLat1 = toRad(lat1);
  1293. var radLat2 = toRad(lat2);
  1294. var deltaLat = radLat1 - radLat2;
  1295. var dis = 2 * Math.asin(Math.sqrt(Math.pow(Math.sin(deltaLat / 2), 2) + Math.cos(radLat1) * Math.cos(
  1296. radLat2) * Math.pow(Math.sin(deltaLng / 2), 2)));
  1297. return that.math.toFixed(dis * 6378.137, 2); // km
  1298. }
  1299. },
  1300. /**
  1301. * 过滤emoji
  1302. * @param {Object} str
  1303. */
  1304. filterEmoji: function(str) {
  1305. return str.replace(/\uD83C[\uDF00-\uDFFF]|\uD83D[\uDC00-\uDE4F]/g, '');
  1306. },
  1307. /**
  1308. * 打印对象
  1309. * @param obj
  1310. */
  1311. jslog: function(obj) {
  1312. this.config.debug && console.log(JSON.stringify(obj));
  1313. },
  1314. /**
  1315. * form表单数据校验
  1316. * @param value
  1317. * @param rule
  1318. */
  1319. formCheck: function(value, rule, error) {
  1320. var that = this;
  1321. var regs = {
  1322. required: [
  1323. /[\s\S]+/,
  1324. '必填项不能为空',
  1325. ],
  1326. english: [
  1327. /^[a-zA-Z]+$/,
  1328. '必填项只能由大小写字母组成',
  1329. ],
  1330. mobile: [
  1331. /^1[3|4|5|7|8|9][0-9]\d{4,8}$/,
  1332. '请输入正确的手机号',
  1333. ],
  1334. phone: [
  1335. /^(\d{3,4}-?)?\d{7,9}$/g,
  1336. '请输入正确的电话号码',
  1337. ],
  1338. email: [
  1339. /^([a-zA-Z0-9_\.\-])+\@(([a-zA-Z0-9\-])+\.)+([a-zA-Z0-9]{2,4})+$/,
  1340. '请输入正确的电子邮箱'
  1341. ],
  1342. url: [
  1343. /(^#)|(^http(s*):\/\/[^\s]+\.[^\s]+)/,
  1344. '请输入正确的链接'
  1345. ],
  1346. number: [
  1347. /^\d+$/,
  1348. '必填项只能填数字'
  1349. ],
  1350. code4: [
  1351. /^\d{4}$/,
  1352. '请输入正确的手机验证码'
  1353. ],
  1354. code6: [
  1355. /^\d{6}$/,
  1356. '请输入正确的手机验证码'
  1357. ],
  1358. captcha4: [
  1359. /^[0-9a-zA-Z]{4}$/,
  1360. '请输入正确的图片验证码'
  1361. ],
  1362. date: [
  1363. /^(\d{4})[-\/](\d{1}|0\d{1}|1[0-2])([-\/](\d{1}|0\d{1}|[1-2][0-9]|3[0-1]))*$/,
  1364. '请输入正确的日期格式'
  1365. ],
  1366. identity: [
  1367. /(^\d{15}$)|(^\d{17}(x|X|\d)$)/,
  1368. '请输入正确的身份证号'
  1369. ],
  1370. username: [
  1371. /^[a-zA-Z0-9\u4e00-\u9fa5-_\.]{2,12}$/,
  1372. '请输入正确的帐号(只能包含中文、英文、数字、下划线等字符)'
  1373. ],
  1374. password: [
  1375. /^[a-zA-Z]+\w{5,12}$/,
  1376. '请输入正确的密码(以字母开头,长度在6-12之间)'
  1377. ],
  1378. passwords: [
  1379. /^[a-zA-Z]+\w{5,12}$/,
  1380. '请输入正确的密码(以字母开头,长度在6-12之间)'
  1381. ],
  1382. pwd: [
  1383. /^(?![0-9]+$)(?![a-zA-Z]+$)[0-9a-zA-Z]{6,12}$/,
  1384. '请输入正确的密码(6-12位数字+字母组合)'
  1385. ],
  1386. invite: [
  1387. /^[0-9a-zA-Z]{10}$/,
  1388. '邀请码为8位数字或字母组合'
  1389. ],
  1390. truename: [
  1391. /^[\u4e00-\u9fa5]{2,4}$/,
  1392. '请输入正确的真实姓名(2-4个汉字)'
  1393. ],
  1394. money: [
  1395. /((^[1-9]\d*)|^0)(\.\d{0,2}){0,1}$/,
  1396. '请输入正确的金额'
  1397. ]
  1398. };
  1399. var reg = regs[rule];
  1400. if (that.isEmpty(reg)) {
  1401. return true;
  1402. } else {
  1403. if (value == '' || !RegExp(reg[0]).test(value)) {
  1404. that.info(error || reg[1]);
  1405. return false;
  1406. }
  1407. return true;
  1408. }
  1409. },
  1410. /****************************************************/
  1411. /**
  1412. *获取系统信息
  1413. * @param label 获取系统的某一项信息
  1414. * screenWidth 屏幕宽度,
  1415. * screenHeight 屏幕高度,单位px
  1416. * windowWidth 单位px可使用窗口宽度,单位px
  1417. * windowHeight 可使用窗口高度,单位px
  1418. * statusBarHeight 状态栏的高度,单位px
  1419. * menuButton:右上角胶囊按钮的布局位置信息,坐标信息以屏幕左上角为原点
  1420. * width 宽度,单位:px
  1421. * height 高度,单位:px
  1422. * top 上边界坐标,单位:px
  1423. * right 右边界坐标,单位:px
  1424. * bottom 下边界坐标,单位:px
  1425. * left 左边界坐标,单位:px
  1426. */
  1427. getSystemInfo(success) {
  1428. // 获取系统状态栏信息
  1429. uni.getSystemInfo({
  1430. success: (res) => {
  1431. if (res.errMsg == 'getSystemInfo:ok') {
  1432. res.menuButton = uni.getMenuButtonBoundingClientRect();
  1433. success && success(res);
  1434. } else {
  1435. that.modal('获取系统信息失败:' + res.errMsg);
  1436. }
  1437. },
  1438. fail: (res) => {
  1439. that.modal('获取系统信息失败:' + res.errMsg);
  1440. }
  1441. });
  1442. },
  1443. /**
  1444. * 检查登录
  1445. */
  1446. getSessionKey: function(success) {
  1447. let that = this;
  1448. let data = {};
  1449. data.openid = cache.get('open_id');
  1450. data.session_key = cache.get('session_key');
  1451. // 都存在
  1452. if (!that.isEmpty(data.session_key) && !that.isEmpty(data.openid)) {
  1453. uni.checkSession({
  1454. success() {
  1455. success && success(data);
  1456. },
  1457. fail() {
  1458. cache.remove('open_id');
  1459. cache.remove('session_key');
  1460. that.getOpenId(success);
  1461. }
  1462. });
  1463. } else {
  1464. cache.remove('open_id');
  1465. cache.remove('session_key');
  1466. that.getOpenId(success);
  1467. }
  1468. },
  1469. /**
  1470. * 获取openid
  1471. * @param success
  1472. */
  1473. getOpenId: function(success, error) {
  1474. var that = this;
  1475. that.loading();
  1476. uni.login({
  1477. success: (e) => {
  1478. that.req({
  1479. url: 'public/getOpenid',
  1480. data: {
  1481. code: e.code
  1482. },
  1483. login: false,
  1484. load: false
  1485. }, function(res) {
  1486. if (res.status == 1) {
  1487. cache.set('open_id', res.data.openid);
  1488. cache.set('session_key', res.data.session_key);
  1489. success && success(res.data);
  1490. } else {
  1491. that.modal('微信登录失败:' + res.info, function() {
  1492. error && error();
  1493. });
  1494. return false;
  1495. }
  1496. }, function() {}, function() {
  1497. that.closeLoading();
  1498. });
  1499. },
  1500. fail: (e) => {
  1501. that.closeLoading();
  1502. that.modal('微信登录失败:' + e.errMsg, function() {
  1503. error && error();
  1504. });
  1505. }
  1506. });
  1507. },
  1508. /**
  1509. * 登录
  1510. * @param {Object} data
  1511. * @param {Object} success
  1512. * @param {Object} error
  1513. */
  1514. doLogin: function(data, success, error) {
  1515. var that = this;
  1516. data.loginsubmit = 'yes';
  1517. this.req({
  1518. url: 'account/login',
  1519. data: data,
  1520. login: false
  1521. }, function(res) {
  1522. if (res.status == 1) {
  1523. cache.set('user_info', res.data);
  1524. success && success(res.data);
  1525. } else {
  1526. error && error(res);
  1527. }
  1528. });
  1529. },
  1530. /**
  1531. * 注册
  1532. * @param {Object} data
  1533. * @param {Object} success
  1534. * @param {Object} error
  1535. */
  1536. doRegist: function(data, success, error) {
  1537. var that = this;
  1538. data.registsubmit = 'yes';
  1539. this.req({
  1540. url: 'account/register',
  1541. data: data,
  1542. login: false
  1543. }, function(res) {
  1544. if (res.status == 1) {
  1545. cache.set('user_info', res.data);
  1546. success && success(res.data);
  1547. } else {
  1548. error && error(res);
  1549. }
  1550. });
  1551. },
  1552. /**
  1553. * 查询是否注册
  1554. * @param {Object} success
  1555. * @param {Object} error
  1556. */
  1557. checkRegist: function(success, error) {
  1558. var that = this;
  1559. that.getSessionKey(function(data) {
  1560. that.req({
  1561. url: 'account/checkRegist',
  1562. data: {
  1563. open_id: data.openid,
  1564. registsubmit: 'yes'
  1565. },
  1566. login: false,
  1567. load: false
  1568. }, function(res) {
  1569. if (res.status == 1) {
  1570. success && success();
  1571. } else {
  1572. error && error();
  1573. }
  1574. });
  1575. });
  1576. },
  1577. /**
  1578. * 获取会员信息
  1579. * @param {Object} success
  1580. * @param {Object} error
  1581. */
  1582. getMemberInfo: function(success, error) {
  1583. var that = this;
  1584. this.req({
  1585. url: 'center/getMemberInfo',
  1586. load: false
  1587. }, function(res) {
  1588. if (res.status == 1) {
  1589. cache.set('user_info', res.data);
  1590. success && success(res.data);
  1591. } else {
  1592. error && error(res);
  1593. }
  1594. });
  1595. },
  1596. /**
  1597. * 获取用户微信资料
  1598. * @param success
  1599. */
  1600. getUserProfile: function(success, error) {
  1601. var that = this;
  1602. that.loading('获取微信信息中...');
  1603. uni.getUserProfile({
  1604. lang: 'zh_CN',
  1605. desc: '用于完善会员资料',
  1606. success: (res) => {
  1607. if (res.errMsg == 'getUserProfile:ok') {
  1608. // 过滤掉emoji
  1609. res.userInfo.nickName = that.filterEmoji(res.userInfo.nickName);
  1610. success(res.userInfo);
  1611. } else {
  1612. that.modal('获取微信信息失败:' + res.errMsg, function() {
  1613. error && error(res);
  1614. });
  1615. }
  1616. },
  1617. fail: (res) => {
  1618. that.modal('获取微信信息失败:' + res.errMsg, function() {
  1619. console.log(res)
  1620. error && error(res);
  1621. });
  1622. },
  1623. complete: () => {
  1624. that.closeLoading();
  1625. }
  1626. });
  1627. },
  1628. /**
  1629. * 获取配置信息
  1630. * @param success
  1631. */
  1632. getConfigInfo: function({
  1633. source = 'system',
  1634. label = '',
  1635. success
  1636. }) {
  1637. this.req({
  1638. url: 'public/configInfo',
  1639. data: {
  1640. source: source,
  1641. label: label
  1642. },
  1643. login: false,
  1644. load: false
  1645. }, function(res) {
  1646. success(res.data);
  1647. });
  1648. },
  1649. /**
  1650. * 获取微信手机号
  1651. * @param e
  1652. * @param success
  1653. */
  1654. getMobile: function(e, success) {
  1655. var that = this;
  1656. that.getSessionKey(function(data) {
  1657. if (e.detail.errMsg == 'getPhoneNumber:ok') {
  1658. that.req({
  1659. url: 'public/getMobile',
  1660. data: {
  1661. encryptedData: e.detail.encryptedData,
  1662. iv: e.detail.iv,
  1663. sessionKey: data.session_key
  1664. },
  1665. login: false
  1666. }, function(res) {
  1667. if (res.status == 1) {
  1668. success(res.data);
  1669. } else {
  1670. that.modal('获取手机号失败' + res.info);
  1671. return false;
  1672. }
  1673. });
  1674. } else {
  1675. that.modal('获取手机号失败' + e.detail.errMsg);
  1676. }
  1677. });
  1678. },
  1679. /**
  1680. * 拨打电话
  1681. * @param mobile
  1682. */
  1683. makeCall: function(mobile) {
  1684. this.modal('确定拨打' + mobile, function() {
  1685. uni.makePhoneCall({
  1686. phoneNumber: mobile
  1687. });
  1688. }, true);
  1689. },
  1690. /**
  1691. * 修改页面标题
  1692. * @param title
  1693. */
  1694. changeNavBarTitle: function(title) {
  1695. uni.setNavigationBarTitle({
  1696. title: title
  1697. });
  1698. },
  1699. /**
  1700. * 检查版本更新
  1701. */
  1702. checkUpdate: function() {
  1703. if (uni.canIUse('getUpdateManager')) {
  1704. const updateManager = uni.getUpdateManager()
  1705. updateManager.onCheckForUpdate(function(res) {
  1706. if (res.hasUpdate) {
  1707. updateManager.onUpdateReady(function() {
  1708. uni.showModal({
  1709. title: '更新提示',
  1710. content: '新版本已经准备好,是否重启应用?',
  1711. success: function(res) {
  1712. if (res.confirm) {
  1713. updateManager.applyUpdate()
  1714. }
  1715. }
  1716. })
  1717. })
  1718. updateManager.onUpdateFailed(function() {
  1719. uni.showModal({
  1720. title: '已经有新版本了~',
  1721. content: '新版本已经上线啦~,请您删除当前小程序,重新搜索打开~'
  1722. })
  1723. })
  1724. }
  1725. })
  1726. } else {
  1727. uni.showModal({
  1728. title: '提示',
  1729. content: '当前微信版本过低,无法使用该功能,请升级到最新微信版本后重试。'
  1730. })
  1731. }
  1732. },
  1733. /**
  1734. * html转义
  1735. * @param {object} str //需要转义内容
  1736. * @param {object} success
  1737. */
  1738. escape2Html(str, success) {
  1739. var arrEntities = {
  1740. 'lt': '<',
  1741. 'gt': '>',
  1742. 'nbsp': ' ',
  1743. 'amp': '&',
  1744. 'quot': '"'
  1745. };
  1746. return str.replace(/&(lt|gt|nbsp|amp|quot);/ig, function(all, t) {
  1747. return arrEntities[t];
  1748. }).replace(/<section/g, '<div').replace(/<u>/g, '').replace(/<u style="">/g, '').replace(/<\/u>/g, '');
  1749. },
  1750. /**
  1751. * 分享信息
  1752. */
  1753. shareInfo: function() {
  1754. var that = this;
  1755. var userInfo = cache.get('user_info');
  1756. if (!that.isEmpty(userInfo) && !that.isEmpty(userInfo.serial)) {
  1757. var path = `/pages/index/index?invite_code=${userInfo.serial}`;
  1758. } else {
  1759. var path = '/pages/index/index';
  1760. }
  1761. return {
  1762. title: that.config.name,
  1763. path: path,
  1764. // imageUrl: '/image/iconimg/login.png'
  1765. };
  1766. },
  1767. /**
  1768. * 检测是否收藏
  1769. * @param {object} id //检测是否收藏的商品id
  1770. * @param {object} success
  1771. */
  1772. checkStore(id, key, success) {
  1773. var that = this
  1774. var shopStore = cache.get(key);
  1775. if (that.isEmpty(shopStore)) {
  1776. success && success(false)
  1777. } else {
  1778. var have = 0
  1779. for (let i in shopStore) {
  1780. var d = shopStore[i];
  1781. if (d.id == id) {
  1782. // 有收藏
  1783. have = 1
  1784. success && success(true)
  1785. break;
  1786. }
  1787. if (have == 0) {
  1788. // 无收藏
  1789. success && success(false)
  1790. }
  1791. }
  1792. }
  1793. },
  1794. /**
  1795. * 收藏缓存
  1796. * @param {object} id //需要收藏或取消的商品id
  1797. * @param {object} success
  1798. */
  1799. changeStore(data, key, success) {
  1800. var shopStore = cache.get(key);
  1801. var that = this
  1802. var p = {}
  1803. p = data
  1804. if (that.isEmpty(shopStore)) {
  1805. var shopStore = []
  1806. shopStore.push(p);
  1807. cache.set(key, shopStore);
  1808. success && success('收藏成功')
  1809. } else {
  1810. var have = 0
  1811. for (let i in shopStore) {
  1812. var d = shopStore[i];
  1813. console.log(d, data)
  1814. if (d.id == data.id && d.table == data.table) {
  1815. // 有的话取消收藏
  1816. have = 1
  1817. shopStore.splice(i, 1);
  1818. cache.set(key, shopStore);
  1819. success && success('取消成功')
  1820. break;
  1821. }
  1822. }
  1823. if (have == 0) {
  1824. // 没有的话收藏
  1825. shopStore.push(p);
  1826. cache.set(key, shopStore);
  1827. success && success('收藏成功')
  1828. }
  1829. }
  1830. },
  1831. /****************************************************/
  1832. /**
  1833. * 获取购物车信息,设置导航红点信息
  1834. * @param index 设置信息 tabBar 序号
  1835. */
  1836. getshopcar: function(success) {
  1837. var shopCar_list = cache.get('shop_car');
  1838. if (this.isEmpty(shopCar_list)) {
  1839. uni.hideTabBarRedDot({ //隐藏 tabBar 某一项的右上角文本
  1840. index: 2, //第几个 tabBar,从左边 0 算起
  1841. success: function() {
  1842. success && success(0);
  1843. }
  1844. });
  1845. } else {
  1846. var len = this.getLength(shopCar_list);
  1847. uni.setTabBarBadge({ //为 tabBar 某一项的右上角添加文本
  1848. index: 2, //第几个 tabBar,从左边 0 算起
  1849. text: String(len), //右上角添加的文本
  1850. success: function() {
  1851. success && success(len);
  1852. }
  1853. });
  1854. }
  1855. },
  1856. /**
  1857. * 上拉刷新加载数据
  1858. * @param {object} type
  1859. * @param {object} page
  1860. * @param {object} succes
  1861. */
  1862. onReachFoot: function(url, data, succes) {
  1863. //type=1时请求找工作
  1864. if (url) {
  1865. this.req({
  1866. url: url,
  1867. data: data
  1868. }, function(res) {
  1869. if (res.status == 1) {
  1870. succes && succes(res.data);
  1871. }
  1872. })
  1873. } else {
  1874. succes && success(false)
  1875. }
  1876. },
  1877. /**
  1878. * 电话聊天控制
  1879. * @param price 价格
  1880. * @param mobile 手机号
  1881. * @param work_id 工作或求职id
  1882. * @param {String} type 类型,work招工,worker求职
  1883. * @param {String} buy_type 购买类型 pirce电话,chat_price聊天
  1884. * @param send_id 被购买的用户id
  1885. * @param send_name 被购买的名字
  1886. */
  1887. makeCall(price, mobile, work_id, type, buy_type, send_id, send_name = '') {
  1888. var that = this
  1889. that.modal('将自动使用会员次数或东豆进行抵扣', function(params) {
  1890. that.req({
  1891. url: 'center/MobileOrMessage',
  1892. data: {
  1893. price: price,
  1894. mobile: mobile,
  1895. work_id: work_id,
  1896. type: type,
  1897. buy_type: buy_type,
  1898. send_id: send_id,
  1899. send_name: send_name
  1900. }
  1901. }, function(params) {
  1902. if (params.status == 1) {
  1903. if (buy_type == 'price') {
  1904. uni.makePhoneCall({
  1905. phoneNumber: mobile,
  1906. })
  1907. } else {
  1908. that.jump('/pages/chat/chat?id=' + send_id + '&nickname=' + send_name)
  1909. }
  1910. }
  1911. if (params.status == 2) {
  1912. }
  1913. })
  1914. }, true)
  1915. },
  1916. /**
  1917. * 微信小程序防抖
  1918. * @param func 防抖事件
  1919. * @param wait 阻止时间
  1920. */
  1921. debounce: function(func, wait) {
  1922. let timeout;
  1923. return function() {
  1924. console.log('防抖事件:' + func, '防抖时间:' + wait)
  1925. let context = this
  1926. let args = arguments
  1927. let later = () => {
  1928. timeout = null
  1929. func.apply(context, args)
  1930. }
  1931. clearTimeout(timeout)
  1932. timeout = setTimeout(later, wait)
  1933. }
  1934. }
  1935. }