12345678910111213141516171819202122232425262728293031323334 |
- import * as config from '../config'
- const ossUploadUrl = 'https://taohaoliang.oss-cn-beijing.aliyuncs.com/';
- const contactCustomerService = (item) => {
- console.log(item)
- if (!item) {
- item = '110'
- }
- console.log("联系客服")
- uni.makePhoneCall({
- phoneNumber: item,
- success: (res) => {
- console.log('调用成功!')
- },
- // 失败回调
- fail: (res) => {
- console.log('调用失败!')
- contactCustomerService(item)
- }
- });
- }
- const logout = () => {
- uni.removeStorage({
- key: 'userInfo'
- })
- }
- export default {
- logout,
- contactCustomerService
- }
|