plugin.js 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466
  1. import api from '../api/index'
  2. import store from '../store/index'
  3. import router from './router'
  4. import config from './config'
  5. import qs from 'qs'
  6. export default {
  7. /**
  8. * 消息提示
  9. * @param title
  10. */
  11. showToast(title = '') {
  12. let config = {}
  13. if (typeof title === 'string') {
  14. config.title = title
  15. } else {
  16. config = title
  17. }
  18. uni.showToast({
  19. title: config.title || '',
  20. icon: 'none',
  21. duration: 2000,
  22. })
  23. },
  24. /**
  25. * 显示模态弹窗
  26. * @param config
  27. * @returns {Promise<any>}
  28. */
  29. showModal(config = {}) {
  30. return new Promise(resolve => {
  31. uni.showModal({
  32. title: config.title || '温馨提示', //标题
  33. content: config.content || '', //内容
  34. showCancel: config.showCancel === false ? config.showCancel : true, //是否显示取消按钮
  35. cancelText: config.cancelText || '取消', //取消按钮的文字
  36. cancelColor: config.cancelColor || '#000', //取消按钮的文字颜色
  37. confirmText: config.confirmText || '确定', //确定按钮的文字
  38. confirmColor: config.confirmColor || '#000', //确定按钮的文字颜色
  39. success: res => {
  40. resolve(res)
  41. },
  42. fail: res => {
  43. resolve(res)
  44. },
  45. })
  46. })
  47. },
  48. /**
  49. * ​显示操作菜单
  50. * @param list
  51. * @returns {Promise<any>}
  52. */
  53. showActionSheet(list = []) {
  54. if (list.length) {
  55. return new Promise(resolve => {
  56. uni.showActionSheet({
  57. itemList: list,
  58. success: res => {
  59. resolve(res.tapIndex)
  60. },
  61. fail: () => {
  62. console.log('取消选择')
  63. },
  64. })
  65. })
  66. } else {
  67. console.log('至少需要一个元素')
  68. }
  69. },
  70. /**
  71. * 设置标题
  72. * @param title
  73. */
  74. setTitle(title) {
  75. if (title) {
  76. uni.setNavigationBarTitle({
  77. title: decodeURIComponent(title),
  78. })
  79. }
  80. },
  81. /**
  82. * 打开分享菜单
  83. * @param config
  84. */
  85. shareMenu(config) {
  86. // #ifdef MP-WEIXIN
  87. uni.showShareMenu({
  88. withShareTicket: true,
  89. ...config,
  90. })
  91. // #endif
  92. },
  93. /**
  94. * 更新用户信息
  95. */
  96. updateUserInfo() {
  97. // 用户微信信息
  98. api.get('/User/GerUserInfo').then(res => {
  99. store.commit('user/update', {
  100. userInfo: res.data,
  101. })
  102. })
  103. // 用户积分、会员身份
  104. api.get('/My/GetMy').then(res => {
  105. if (res.data) {
  106. store.commit('user/update', {
  107. integral: res.data.pointsInfo.points,
  108. })
  109. }
  110. })
  111. },
  112. /**
  113. * 支付
  114. * @param orderId
  115. * @param price
  116. */
  117. pay(orderId, price, jump = false) {
  118. const self = this
  119. return new Promise(resolve => {
  120. if (store.state.common.payStatus) {
  121. console.log('支付中...')
  122. // 改为支付中的状态
  123. store.commit('common/update', {
  124. payStatus: false,
  125. })
  126. api.post('/Order/Pay', {
  127. payMethod: 'WeiXin',
  128. orderId: orderId,
  129. }).then(res => {
  130. let options = res.data
  131. uni.requestPayment({
  132. timeStamp: options.timeStamp,
  133. nonceStr: options.nonceStr,
  134. package: options.package,
  135. signType: options.signType,
  136. paySign: options.paySign,
  137. success: function () {
  138. console.log('支付成功')
  139. // 改为可以支付的状态
  140. store.commit('common/update', {
  141. payStatus: true,
  142. })
  143. self.orderTake(orderId, 2)
  144. api.post('/Order/Query', {
  145. orderId: orderId,
  146. })
  147. router.replace({
  148. path: '/pages/pay/result',
  149. query: {
  150. orderId: orderId,
  151. price: price,
  152. type: 'success',
  153. },
  154. })
  155. },
  156. fail: function () {
  157. console.log('支付失败')
  158. // 改为可以支付的状态
  159. store.commit('common/update', {
  160. payStatus: true,
  161. })
  162. if (jump) {
  163. self.orderTake(orderId, 1)
  164. router.replace({
  165. path: '/pages/pay/result',
  166. query: {
  167. orderId: orderId,
  168. price: price,
  169. type: 'fail',
  170. },
  171. })
  172. }
  173. },
  174. complete: function () {
  175. resolve()
  176. },
  177. })
  178. })
  179. }
  180. })
  181. },
  182. // 开店申请订阅
  183. applyShopsubscribe(objId) {
  184. api.get('/Subscription/GetMsgTpls', {
  185. type: 7,
  186. }).then(res => {
  187. uni.requestSubscribeMessage({
  188. tmplIds: res.data,
  189. success: () => {
  190. api.post('/Subscription/Subscribe', {
  191. type: 7,
  192. objectId: objId.toString(),
  193. }).then(() => {
  194. console.log('订阅成功')
  195. })
  196. },
  197. fail: err => {
  198. console.log(err)
  199. },
  200. })
  201. })
  202. },
  203. // 接口请求前的初始化
  204. init() {
  205. return new Promise(resolve => {
  206. let timer = setInterval(() => {
  207. if (store.state.user.init) {
  208. clearInterval(timer)
  209. resolve()
  210. }
  211. }, 10)
  212. })
  213. },
  214. roleHandle() {
  215. let user = store.state.user.user;
  216. if (user) {
  217. // 配送员
  218. if (user.roleId === '05caf6e0-9069-4da0-9d7e-92d27ce2b7be') {
  219. uni.hideTabBar({});
  220. }
  221. }
  222. },
  223. // 获取token
  224. getToken() {
  225. return new Promise(resolve => {
  226. uni.login({
  227. provider: 'weixin',
  228. success: async result => {
  229. api.post('/Login/Login', {
  230. code: result.code,
  231. appId: config.appId,
  232. }, { pass: true }).then(res => {
  233. resolve();
  234. if (res.success) {
  235. store.commit("user/login", res.data);
  236. if (res.data.roleId && res.data.bundleId !== 0) {
  237. if (res.data.authStatus === 0) {
  238. // 未注册
  239. router.replace({
  240. path: "/pages/manage/mina/register",
  241. });
  242. return;
  243. } else if (res.data.authStatus === 90) {
  244. // 等待注册
  245. router.replace({
  246. path: "/pages/manage/mina/query",
  247. });
  248. return;
  249. }
  250. // 正常用户
  251. store.commit("user/login", res.data);
  252. store.commit("common/update", {
  253. curShop: {},
  254. });
  255. if (!res.data.storeId) {
  256. router.push({
  257. isTabBar: true,
  258. path: "/pages/assistant/index",
  259. });
  260. this.setTabBar([3]);
  261. } else {
  262. router.push({
  263. isTabBar: true,
  264. path: "/pages/index/index",
  265. });
  266. this.setTabBar([1, 2]);
  267. }
  268. this.roleHandle();
  269. return;
  270. } else {
  271. // 正常用户
  272. store.commit("user/login", res.data);
  273. store.commit("common/update", {
  274. curShop: {},
  275. });
  276. // this.checkcode(
  277. // {
  278. // // code: "hht2120201",
  279. // platform: res.data.fromPlatform,
  280. // },
  281. // res
  282. // );
  283. router.push({
  284. isTabBar: true,
  285. path: "/pages/index/index",
  286. });
  287. }
  288. } else {
  289. router.push({
  290. path: '/pages/index/login',
  291. isTabBar: true
  292. });
  293. return;
  294. }
  295. })
  296. },
  297. })
  298. })
  299. },
  300. checkcode(data, res) {
  301. api
  302. .get("/Group/CheckCode", data, { pass: true })
  303. .then((res) => {
  304. if (res.success) {
  305. if (res.data.verified) {
  306. if (!res.data.storeId) {
  307. router.push({
  308. isTabBar: true,
  309. path: "/pages/assistant/index",
  310. });
  311. this.setTabBar([3]);
  312. } else {
  313. router.push({
  314. isTabBar: true,
  315. path: "/pages/index/index",
  316. });
  317. this.setTabBar([1, 2]);
  318. }
  319. } else {
  320. router.push({
  321. path: "/pages/index/register",
  322. query: {
  323. pidCode: res.data.code,
  324. step: 3,
  325. },
  326. });
  327. this.setTabBar([3]);
  328. }
  329. } else {
  330. router.push({
  331. path: "/pages/index/register",
  332. query: {
  333. step: 2,
  334. },
  335. });
  336. this.setTabBar([3]);
  337. }
  338. });
  339. },
  340. setTabBar(arr) {
  341. let tabList = store.state.common.tabList;
  342. tabList = JSON.parse(JSON.stringify(tabList));
  343. for (let item of tabList) {
  344. if (arr.indexOf(item.id) !== -1) {
  345. item.hide = false;
  346. } else {
  347. item.hide = true;
  348. }
  349. }
  350. store.commit('common/update', {
  351. tabList
  352. })
  353. },
  354. // 修改配置
  355. setConfig() {
  356. api.get('/Shop/GetConfig').then(res => {
  357. let data = JSON.parse(res.data)
  358. store.commit('common/update', data)
  359. })
  360. },
  361. // 打开设置
  362. openSetting() {
  363. uni.openSetting()
  364. },
  365. /**
  366. * 转化为指定格式日期
  367. * @param date
  368. * @param format
  369. * @returns {string}
  370. */
  371. dateFormat(date, format = 'yyyy-MM-dd') {
  372. if (date) {
  373. date = date.replace(/-/g, '/')
  374. date = new Date(Date.parse(date))
  375. let o = {
  376. 'M+': date.getMonth() + 1, //月份
  377. 'd+': date.getDate(), //日
  378. 'h+': date.getHours(), //小时
  379. 'm+': date.getMinutes(), //分
  380. 's+': date.getSeconds(), //秒
  381. 'S': date.getMilliseconds(), //毫秒
  382. 'q+': Math.floor((date.getMonth() + 3) / 3), //季度
  383. }
  384. if (/(y+)/.test(format)) {
  385. format = format.replace(RegExp.$1, (date.getFullYear() + '').substr(4 - RegExp.$1.length))
  386. }
  387. for (let k in o) {
  388. if (new RegExp('(' + k + ')').test(format)) {
  389. format = format.replace(RegExp.$1, (RegExp.$1.length == 1) ? (o[k]) : (('00' + o[k]).substr(('' + o[k]).length)))
  390. }
  391. }
  392. return format
  393. } else {
  394. return ''
  395. }
  396. },
  397. /**
  398. * 转化为指定格式日期
  399. * @param date
  400. * @param format
  401. * @returns {string}
  402. */
  403. dateFormat2(date, format = 'yyyy-MM-dd') {
  404. if (date) {
  405. let o = {
  406. 'M+': date.getMonth() + 1, //月份
  407. 'd+': date.getDate(), //日
  408. 'h+': date.getHours(), //小时
  409. 'm+': date.getMinutes(), //分
  410. 's+': date.getSeconds(), //秒
  411. 'S': date.getMilliseconds(), //毫秒
  412. 'q+': Math.floor((date.getMonth() + 3) / 3), //季度
  413. }
  414. if (/(y+)/.test(format)) {
  415. format = format.replace(RegExp.$1, (date.getFullYear() + '').substr(4 - RegExp.$1.length))
  416. }
  417. for (let k in o) {
  418. if (new RegExp('(' + k + ')').test(format)) {
  419. format = format.replace(RegExp.$1, (RegExp.$1.length == 1) ? (o[k]) : (('00' + o[k]).substr(('' + o[k]).length)))
  420. }
  421. }
  422. return format
  423. } else {
  424. return ''
  425. }
  426. }
  427. }