api.js 47 KB

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