123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466 |
- import api from '../api/index'
- import store from '../store/index'
- import router from './router'
- import config from './config'
- import qs from 'qs'
- export default {
- /**
- * 消息提示
- * @param title
- */
- showToast(title = '') {
- let config = {}
- if (typeof title === 'string') {
- config.title = title
- } else {
- config = title
- }
- uni.showToast({
- title: config.title || '',
- icon: 'none',
- duration: 2000,
- })
- },
- /**
- * 显示模态弹窗
- * @param config
- * @returns {Promise<any>}
- */
- showModal(config = {}) {
- return new Promise(resolve => {
- uni.showModal({
- title: config.title || '温馨提示', //标题
- content: config.content || '', //内容
- showCancel: config.showCancel === false ? config.showCancel : true, //是否显示取消按钮
- cancelText: config.cancelText || '取消', //取消按钮的文字
- cancelColor: config.cancelColor || '#000', //取消按钮的文字颜色
- confirmText: config.confirmText || '确定', //确定按钮的文字
- confirmColor: config.confirmColor || '#000', //确定按钮的文字颜色
- success: res => {
- resolve(res)
- },
- fail: res => {
- resolve(res)
- },
- })
- })
- },
- /**
- * 显示操作菜单
- * @param list
- * @returns {Promise<any>}
- */
- showActionSheet(list = []) {
- if (list.length) {
- return new Promise(resolve => {
- uni.showActionSheet({
- itemList: list,
- success: res => {
- resolve(res.tapIndex)
- },
- fail: () => {
- console.log('取消选择')
- },
- })
- })
- } else {
- console.log('至少需要一个元素')
- }
- },
- /**
- * 设置标题
- * @param title
- */
- setTitle(title) {
- if (title) {
- uni.setNavigationBarTitle({
- title: decodeURIComponent(title),
- })
- }
- },
- /**
- * 打开分享菜单
- * @param config
- */
- shareMenu(config) {
- // #ifdef MP-WEIXIN
- uni.showShareMenu({
- withShareTicket: true,
- ...config,
- })
- // #endif
- },
- /**
- * 更新用户信息
- */
- updateUserInfo() {
- // 用户微信信息
- api.get('/User/GerUserInfo').then(res => {
- store.commit('user/update', {
- userInfo: res.data,
- })
- })
- // 用户积分、会员身份
- api.get('/My/GetMy').then(res => {
- if (res.data) {
- store.commit('user/update', {
- integral: res.data.pointsInfo.points,
- })
- }
- })
- },
- /**
- * 支付
- * @param orderId
- * @param price
- */
- pay(orderId, price, jump = false) {
- const self = this
- return new Promise(resolve => {
- if (store.state.common.payStatus) {
- console.log('支付中...')
- // 改为支付中的状态
- store.commit('common/update', {
- payStatus: false,
- })
- api.post('/Order/Pay', {
- payMethod: 'WeiXin',
- orderId: orderId,
- }).then(res => {
- let options = res.data
- uni.requestPayment({
- timeStamp: options.timeStamp,
- nonceStr: options.nonceStr,
- package: options.package,
- signType: options.signType,
- paySign: options.paySign,
- success: function () {
- console.log('支付成功')
- // 改为可以支付的状态
- store.commit('common/update', {
- payStatus: true,
- })
- self.orderTake(orderId, 2)
- api.post('/Order/Query', {
- orderId: orderId,
- })
- router.replace({
- path: '/pages/pay/result',
- query: {
- orderId: orderId,
- price: price,
- type: 'success',
- },
- })
- },
- fail: function () {
- console.log('支付失败')
- // 改为可以支付的状态
- store.commit('common/update', {
- payStatus: true,
- })
- if (jump) {
- self.orderTake(orderId, 1)
- router.replace({
- path: '/pages/pay/result',
- query: {
- orderId: orderId,
- price: price,
- type: 'fail',
- },
- })
- }
- },
- complete: function () {
- resolve()
- },
- })
- })
- }
- })
- },
- // 开店申请订阅
- applyShopsubscribe(objId) {
- api.get('/Subscription/GetMsgTpls', {
- type: 7,
- }).then(res => {
- uni.requestSubscribeMessage({
- tmplIds: res.data,
- success: () => {
- api.post('/Subscription/Subscribe', {
- type: 7,
- objectId: objId.toString(),
- }).then(() => {
- console.log('订阅成功')
- })
- },
- fail: err => {
- console.log(err)
- },
- })
- })
- },
- // 接口请求前的初始化
- init() {
- return new Promise(resolve => {
- let timer = setInterval(() => {
- if (store.state.user.init) {
- clearInterval(timer)
- resolve()
- }
- }, 10)
- })
- },
- roleHandle() {
- let user = store.state.user.user;
- if (user) {
- // 配送员
- if (user.roleId === '05caf6e0-9069-4da0-9d7e-92d27ce2b7be') {
- uni.hideTabBar({});
- }
- }
- },
- // 获取token
- getToken() {
- return new Promise(resolve => {
- uni.login({
- provider: 'weixin',
- success: async result => {
- api.post('/Login/Login', {
- code: result.code,
- appId: config.appId,
- }, { pass: true }).then(res => {
- resolve();
- if (res.success) {
- store.commit("user/login", res.data);
- if (res.data.roleId && res.data.bundleId !== 0) {
- if (res.data.authStatus === 0) {
- // 未注册
- router.replace({
- path: "/pages/manage/mina/register",
- });
- return;
- } else if (res.data.authStatus === 90) {
- // 等待注册
- router.replace({
- path: "/pages/manage/mina/query",
- });
- return;
- }
- // 正常用户
- store.commit("user/login", res.data);
- store.commit("common/update", {
- curShop: {},
- });
- if (!res.data.storeId) {
- router.push({
- isTabBar: true,
- path: "/pages/assistant/index",
- });
- this.setTabBar([3]);
- } else {
- router.push({
- isTabBar: true,
- path: "/pages/index/index",
- });
- this.setTabBar([1, 2]);
- }
- this.roleHandle();
- return;
- } else {
- // 正常用户
- store.commit("user/login", res.data);
- store.commit("common/update", {
- curShop: {},
- });
- // this.checkcode(
- // {
- // // code: "hht2120201",
- // platform: res.data.fromPlatform,
- // },
- // res
- // );
- router.push({
- isTabBar: true,
- path: "/pages/index/index",
- });
- }
- } else {
- router.push({
- path: '/pages/index/login',
- isTabBar: true
- });
- return;
- }
- })
- },
- })
- })
- },
- checkcode(data, res) {
- api
- .get("/Group/CheckCode", data, { pass: true })
- .then((res) => {
- if (res.success) {
- if (res.data.verified) {
- if (!res.data.storeId) {
- router.push({
- isTabBar: true,
- path: "/pages/assistant/index",
- });
- this.setTabBar([3]);
- } else {
- router.push({
- isTabBar: true,
- path: "/pages/index/index",
- });
- this.setTabBar([1, 2]);
- }
- } else {
- router.push({
- path: "/pages/index/register",
- query: {
- pidCode: res.data.code,
- step: 3,
- },
- });
- this.setTabBar([3]);
- }
- } else {
- router.push({
- path: "/pages/index/register",
- query: {
- step: 2,
- },
- });
- this.setTabBar([3]);
- }
- });
- },
- setTabBar(arr) {
- let tabList = store.state.common.tabList;
- tabList = JSON.parse(JSON.stringify(tabList));
- for (let item of tabList) {
- if (arr.indexOf(item.id) !== -1) {
- item.hide = false;
- } else {
- item.hide = true;
- }
- }
- store.commit('common/update', {
- tabList
- })
- },
- // 修改配置
- setConfig() {
- api.get('/Shop/GetConfig').then(res => {
- let data = JSON.parse(res.data)
- store.commit('common/update', data)
- })
- },
- // 打开设置
- openSetting() {
- uni.openSetting()
- },
- /**
- * 转化为指定格式日期
- * @param date
- * @param format
- * @returns {string}
- */
- dateFormat(date, format = 'yyyy-MM-dd') {
- if (date) {
- date = date.replace(/-/g, '/')
- date = new Date(Date.parse(date))
- let o = {
- 'M+': date.getMonth() + 1, //月份
- 'd+': date.getDate(), //日
- 'h+': date.getHours(), //小时
- 'm+': date.getMinutes(), //分
- 's+': date.getSeconds(), //秒
- 'S': date.getMilliseconds(), //毫秒
- 'q+': Math.floor((date.getMonth() + 3) / 3), //季度
- }
- if (/(y+)/.test(format)) {
- format = format.replace(RegExp.$1, (date.getFullYear() + '').substr(4 - RegExp.$1.length))
- }
- for (let k in o) {
- if (new RegExp('(' + k + ')').test(format)) {
- format = format.replace(RegExp.$1, (RegExp.$1.length == 1) ? (o[k]) : (('00' + o[k]).substr(('' + o[k]).length)))
- }
- }
- return format
- } else {
- return ''
- }
- },
- /**
- * 转化为指定格式日期
- * @param date
- * @param format
- * @returns {string}
- */
- dateFormat2(date, format = 'yyyy-MM-dd') {
- if (date) {
- let o = {
- 'M+': date.getMonth() + 1, //月份
- 'd+': date.getDate(), //日
- 'h+': date.getHours(), //小时
- 'm+': date.getMinutes(), //分
- 's+': date.getSeconds(), //秒
- 'S': date.getMilliseconds(), //毫秒
- 'q+': Math.floor((date.getMonth() + 3) / 3), //季度
- }
- if (/(y+)/.test(format)) {
- format = format.replace(RegExp.$1, (date.getFullYear() + '').substr(4 - RegExp.$1.length))
- }
- for (let k in o) {
- if (new RegExp('(' + k + ')').test(format)) {
- format = format.replace(RegExp.$1, (RegExp.$1.length == 1) ? (o[k]) : (('00' + o[k]).substr(('' + o[k]).length)))
- }
- }
- return format
- } else {
- return ''
- }
- }
- }
|