|
@@ -6,7 +6,7 @@ export const toast = str => {
|
|
if (str.length < 20) {
|
|
if (str.length < 20) {
|
|
uni.showToast({
|
|
uni.showToast({
|
|
title: str,
|
|
title: str,
|
|
- icon: "none",
|
|
|
|
|
|
+ icon: 'none',
|
|
duration: 1500,
|
|
duration: 1500,
|
|
success: () => {
|
|
success: () => {
|
|
setTimeout(() => {
|
|
setTimeout(() => {
|
|
@@ -16,24 +16,24 @@ export const toast = str => {
|
|
})
|
|
})
|
|
} else {
|
|
} else {
|
|
uni.showModal({
|
|
uni.showModal({
|
|
- title: "提示",
|
|
|
|
|
|
+ title: '提示',
|
|
content: String(str),
|
|
content: String(str),
|
|
showCancel: false,
|
|
showCancel: false,
|
|
- confirmText: "我知道了",
|
|
|
|
|
|
+ confirmText: '我知道了',
|
|
success(res) {
|
|
success(res) {
|
|
if (res.confirm) {
|
|
if (res.confirm) {
|
|
- resolve(res);
|
|
|
|
|
|
+ resolve(res)
|
|
} else {
|
|
} else {
|
|
- reject();
|
|
|
|
|
|
+ reject()
|
|
}
|
|
}
|
|
}
|
|
}
|
|
- });
|
|
|
|
|
|
+ })
|
|
}
|
|
}
|
|
})
|
|
})
|
|
-};
|
|
|
|
|
|
+}
|
|
|
|
|
|
// 成功提示框
|
|
// 成功提示框
|
|
-export const successToast = (str) => {
|
|
|
|
|
|
+export const successToast = str => {
|
|
return new Promise((resolve, reject) => {
|
|
return new Promise((resolve, reject) => {
|
|
uni.showToast({
|
|
uni.showToast({
|
|
title: str || '请求成功',
|
|
title: str || '请求成功',
|
|
@@ -41,61 +41,58 @@ export const successToast = (str) => {
|
|
duration: 1500,
|
|
duration: 1500,
|
|
success: () => {
|
|
success: () => {
|
|
setTimeout(() => {
|
|
setTimeout(() => {
|
|
- resolve();
|
|
|
|
- }, 1500);
|
|
|
|
- },
|
|
|
|
- });
|
|
|
|
- });
|
|
|
|
-};
|
|
|
|
|
|
+ resolve()
|
|
|
|
+ }, 1500)
|
|
|
|
+ }
|
|
|
|
+ })
|
|
|
|
+ })
|
|
|
|
+}
|
|
|
|
|
|
// loading
|
|
// loading
|
|
export const showLoading = () => {
|
|
export const showLoading = () => {
|
|
return new Promise((resolve, reject) => {
|
|
return new Promise((resolve, reject) => {
|
|
uni.showLoading({
|
|
uni.showLoading({
|
|
success: () => {
|
|
success: () => {
|
|
- resolve();
|
|
|
|
- },
|
|
|
|
- });
|
|
|
|
- });
|
|
|
|
-};
|
|
|
|
|
|
+ resolve()
|
|
|
|
+ }
|
|
|
|
+ })
|
|
|
|
+ })
|
|
|
|
+}
|
|
|
|
|
|
// 提示loading
|
|
// 提示loading
|
|
-export const tipLoading = (str) => {
|
|
|
|
|
|
+export const tipLoading = str => {
|
|
return new Promise((resolve, reject) => {
|
|
return new Promise((resolve, reject) => {
|
|
uni.showLoading({
|
|
uni.showLoading({
|
|
title: str,
|
|
title: str,
|
|
success: () => {
|
|
success: () => {
|
|
- resolve();
|
|
|
|
- },
|
|
|
|
- });
|
|
|
|
- });
|
|
|
|
-};
|
|
|
|
|
|
+ resolve()
|
|
|
|
+ }
|
|
|
|
+ })
|
|
|
|
+ })
|
|
|
|
+}
|
|
|
|
|
|
// 隐藏loading
|
|
// 隐藏loading
|
|
export const hideLoading = () => {
|
|
export const hideLoading = () => {
|
|
return new Promise((resolve, reject) => {
|
|
return new Promise((resolve, reject) => {
|
|
uni.hideLoading({
|
|
uni.hideLoading({
|
|
success: () => {
|
|
success: () => {
|
|
- resolve();
|
|
|
|
- },
|
|
|
|
- });
|
|
|
|
- });
|
|
|
|
-};
|
|
|
|
|
|
+ resolve()
|
|
|
|
+ }
|
|
|
|
+ })
|
|
|
|
+ })
|
|
|
|
+}
|
|
|
|
|
|
// 模态弹窗
|
|
// 模态弹窗
|
|
export const modal = (options = {}) => {
|
|
export const modal = (options = {}) => {
|
|
- if (!options) return;
|
|
|
|
- const {
|
|
|
|
- title,
|
|
|
|
- content,
|
|
|
|
- showCancel,
|
|
|
|
- cancelText,
|
|
|
|
- cancelColor,
|
|
|
|
- confirmText,
|
|
|
|
- confirmColor,
|
|
|
|
- } = Object.assign({}, options.content ? options : {
|
|
|
|
- content: options
|
|
|
|
- });
|
|
|
|
|
|
+ if (!options) return
|
|
|
|
+ const { title, content, showCancel, cancelText, cancelColor, confirmText, confirmColor } = Object.assign(
|
|
|
|
+ {},
|
|
|
|
+ options.content
|
|
|
|
+ ? options
|
|
|
|
+ : {
|
|
|
|
+ content: options
|
|
|
|
+ }
|
|
|
|
+ )
|
|
return new Promise((resolve, reject) => {
|
|
return new Promise((resolve, reject) => {
|
|
uni.showModal({
|
|
uni.showModal({
|
|
title: title || '提示',
|
|
title: title || '提示',
|
|
@@ -107,22 +104,24 @@ export const modal = (options = {}) => {
|
|
confirmColor: confirmColor || '#3D8FFD',
|
|
confirmColor: confirmColor || '#3D8FFD',
|
|
complete(res) {
|
|
complete(res) {
|
|
if (res.confirm) {
|
|
if (res.confirm) {
|
|
- resolve(res);
|
|
|
|
|
|
+ resolve(res)
|
|
} else {
|
|
} else {
|
|
- reject();
|
|
|
|
|
|
+ reject()
|
|
}
|
|
}
|
|
- },
|
|
|
|
- });
|
|
|
|
- });
|
|
|
|
-};
|
|
|
|
|
|
+ }
|
|
|
|
+ })
|
|
|
|
+ })
|
|
|
|
+}
|
|
|
|
|
|
// 弹窗提示
|
|
// 弹窗提示
|
|
-export const tips = (text) => {
|
|
|
|
|
|
+export const tips = text => {
|
|
modal({
|
|
modal({
|
|
content: text,
|
|
content: text,
|
|
- showCancel: false,
|
|
|
|
- }).then(() => {}).catch(() => {})
|
|
|
|
-};
|
|
|
|
|
|
+ showCancel: false
|
|
|
|
+ })
|
|
|
|
+ .then(() => {})
|
|
|
|
+ .catch(() => {})
|
|
|
|
+}
|
|
|
|
|
|
/**
|
|
/**
|
|
* 跳转页面 navigateTo
|
|
* 跳转页面 navigateTo
|
|
@@ -135,16 +134,16 @@ export const navPage = (url, isAuth = 0) => {
|
|
if ((isAuth && store.state.token) || !isAuth) {
|
|
if ((isAuth && store.state.token) || !isAuth) {
|
|
uni.navigateTo({
|
|
uni.navigateTo({
|
|
url,
|
|
url,
|
|
- fail: (err) => {
|
|
|
|
- console.log('页面跳转失败', url, err);
|
|
|
|
- },
|
|
|
|
- });
|
|
|
|
|
|
+ fail: err => {
|
|
|
|
+ console.log('页面跳转失败', url, err)
|
|
|
|
+ }
|
|
|
|
+ })
|
|
} else {
|
|
} else {
|
|
uni.navigateTo({
|
|
uni.navigateTo({
|
|
- url: '/pages/login/index',
|
|
|
|
- });
|
|
|
|
|
|
+ url: '/pages/login/index'
|
|
|
|
+ })
|
|
}
|
|
}
|
|
-};
|
|
|
|
|
|
+}
|
|
|
|
|
|
/**
|
|
/**
|
|
* 跳转页面 redirectTo
|
|
* 跳转页面 redirectTo
|
|
@@ -157,16 +156,16 @@ export const redPage = (url, isAuth = 0) => {
|
|
if ((isAuth && store.state.token) || !isAuth) {
|
|
if ((isAuth && store.state.token) || !isAuth) {
|
|
uni.redirectTo({
|
|
uni.redirectTo({
|
|
url,
|
|
url,
|
|
- fail: (err) => {
|
|
|
|
- console.log('页面跳转失败', url, err);
|
|
|
|
- },
|
|
|
|
- });
|
|
|
|
|
|
+ fail: err => {
|
|
|
|
+ console.log('页面跳转失败', url, err)
|
|
|
|
+ }
|
|
|
|
+ })
|
|
} else {
|
|
} else {
|
|
uni.navigateTo({
|
|
uni.navigateTo({
|
|
- url: '/pages/login/index',
|
|
|
|
- });
|
|
|
|
|
|
+ url: '/pages/login/index'
|
|
|
|
+ })
|
|
}
|
|
}
|
|
-};
|
|
|
|
|
|
+}
|
|
|
|
|
|
/**
|
|
/**
|
|
* 返回页面
|
|
* 返回页面
|
|
@@ -175,157 +174,126 @@ export const redPage = (url, isAuth = 0) => {
|
|
* @returns
|
|
* @returns
|
|
*/
|
|
*/
|
|
export const backPage = (num = 1, time = 0) => {
|
|
export const backPage = (num = 1, time = 0) => {
|
|
- if (!num) return false;
|
|
|
|
|
|
+ if (!num) return false
|
|
setTimeout(() => {
|
|
setTimeout(() => {
|
|
uni.navigateBack({
|
|
uni.navigateBack({
|
|
- delta: num,
|
|
|
|
- });
|
|
|
|
- }, time);
|
|
|
|
-};
|
|
|
|
|
|
+ delta: num
|
|
|
|
+ })
|
|
|
|
+ }, time)
|
|
|
|
+}
|
|
|
|
|
|
/**
|
|
/**
|
|
* 拨打电话
|
|
* 拨打电话
|
|
* @param {String} phone 用户隐私号
|
|
* @param {String} phone 用户隐私号
|
|
* @param {String} orderId 服务单id,如果需要请求记录接口
|
|
* @param {String} orderId 服务单id,如果需要请求记录接口
|
|
*/
|
|
*/
|
|
-export const callPhone = (phone) => {
|
|
|
|
|
|
+export const callPhone = phone => {
|
|
if (!phone)
|
|
if (!phone)
|
|
return modal({
|
|
return modal({
|
|
- content: '手机号码不存在',
|
|
|
|
- showCancel: false,
|
|
|
|
- })
|
|
|
|
|
|
+ content: '手机号码不存在',
|
|
|
|
+ showCancel: false
|
|
|
|
+ })
|
|
.then(() => {})
|
|
.then(() => {})
|
|
- .catch(() => {});
|
|
|
|
|
|
+ .catch(() => {})
|
|
uni.makePhoneCall({
|
|
uni.makePhoneCall({
|
|
phoneNumber: phone,
|
|
phoneNumber: phone,
|
|
success: () => {
|
|
success: () => {
|
|
// logCallPhone(orderId);
|
|
// logCallPhone(orderId);
|
|
- },
|
|
|
|
- });
|
|
|
|
-};
|
|
|
|
|
|
+ }
|
|
|
|
+ })
|
|
|
|
+}
|
|
|
|
|
|
/**
|
|
/**
|
|
* 复制
|
|
* 复制
|
|
* @param {String} val 复制内容
|
|
* @param {String} val 复制内容
|
|
*/
|
|
*/
|
|
-export const copy = (val) => {
|
|
|
|
|
|
+export const copy = val => {
|
|
uni.setClipboardData({
|
|
uni.setClipboardData({
|
|
data: val,
|
|
data: val,
|
|
success: () => {
|
|
success: () => {
|
|
- successToast('复制成功');
|
|
|
|
- },
|
|
|
|
- });
|
|
|
|
-};
|
|
|
|
|
|
+ successToast('复制成功')
|
|
|
|
+ }
|
|
|
|
+ })
|
|
|
|
+}
|
|
|
|
|
|
/**
|
|
/**
|
|
* 打开导航
|
|
* 打开导航
|
|
*/
|
|
*/
|
|
export const openLocation = (options = {}) => {
|
|
export const openLocation = (options = {}) => {
|
|
- if (!options) return;
|
|
|
|
- const {
|
|
|
|
- lat,
|
|
|
|
- lng,
|
|
|
|
- name,
|
|
|
|
- address
|
|
|
|
- } = options;
|
|
|
|
- uni.openLocation({
|
|
|
|
- latitude: Number(lat),
|
|
|
|
- longitude: Number(lng),
|
|
|
|
- name,
|
|
|
|
- address,
|
|
|
|
- success: () => {
|
|
|
|
- console.log('success');
|
|
|
|
- },
|
|
|
|
- });
|
|
|
|
-};
|
|
|
|
|
|
+ if (!options) return
|
|
|
|
+ const { lat, lng, name, address } = options
|
|
|
|
+ wx.openLocation({
|
|
|
|
+ latitude: Number(lat),
|
|
|
|
+ longitude: Number(lng),
|
|
|
|
+ name,
|
|
|
|
+ address,
|
|
|
|
+ success: () => {
|
|
|
|
+ console.log('success')
|
|
|
|
+ }
|
|
|
|
+ })
|
|
|
|
+}
|
|
|
|
|
|
// 获取当前定位
|
|
// 获取当前定位
|
|
-export const getLocation = async function() {
|
|
|
|
- return new Promise((resolve, reject) => {
|
|
|
|
- uni.getLocation({
|
|
|
|
- type: 'gcj02',
|
|
|
|
- geocode: true,
|
|
|
|
- success: (res) => {
|
|
|
|
- resolve(res);
|
|
|
|
- },
|
|
|
|
- fail: (err) => {
|
|
|
|
- console.log('获取当前定位失败', err);
|
|
|
|
- uni.authorize({
|
|
|
|
- scope: 'scope.userLocation',
|
|
|
|
- success: () => {
|
|
|
|
- // 允许授权
|
|
|
|
- uni.getLocation({
|
|
|
|
- type: 'gcj02',
|
|
|
|
- geocode: true,
|
|
|
|
- success: (res) => {
|
|
|
|
- resolve(res);
|
|
|
|
- },
|
|
|
|
- fail: (err) => {
|
|
|
|
- modal({
|
|
|
|
- title: '提示',
|
|
|
|
- content: '定位失败,请重试',
|
|
|
|
- showCancel: false,
|
|
|
|
- }).then(() => {});
|
|
|
|
- },
|
|
|
|
- });
|
|
|
|
- },
|
|
|
|
- fail: () => {
|
|
|
|
- // 拒绝授权
|
|
|
|
- modal({
|
|
|
|
- title: '提示',
|
|
|
|
- content: '定位失败,请重试',
|
|
|
|
- showCancel: false,
|
|
|
|
- // confirmText: '重新定位',
|
|
|
|
- }).then(() => {
|
|
|
|
- // getLocation();
|
|
|
|
- });
|
|
|
|
- },
|
|
|
|
- });
|
|
|
|
- },
|
|
|
|
- });
|
|
|
|
- });
|
|
|
|
-};
|
|
|
|
|
|
+export const getLocation = async function () {
|
|
|
|
+ return new Promise((resolve, reject) => {
|
|
|
|
+ wx.getLocation({
|
|
|
|
+ type: 'gcj02',
|
|
|
|
+ isHighAccuracy: true,
|
|
|
|
+ geocode: true,
|
|
|
|
+ success: res => {
|
|
|
|
+ resolve(res)
|
|
|
|
+ },
|
|
|
|
+ fail: err => {
|
|
|
|
+ modal({
|
|
|
|
+ title: '提示',
|
|
|
|
+ content: '获取当前定位失败',
|
|
|
|
+ showCancel: false
|
|
|
|
+ }).then(() => {})
|
|
|
|
+ }
|
|
|
|
+ })
|
|
|
|
+ })
|
|
|
|
+}
|
|
|
|
|
|
// 获取地址
|
|
// 获取地址
|
|
-export const getAddress = async function() {
|
|
|
|
- const location = await getLocation();
|
|
|
|
- if(!location) {
|
|
|
|
- return tips('获取定位失败,请检查是否开启手机位置信息权限');
|
|
|
|
|
|
+export const getAddress = async function () {
|
|
|
|
+ const location = await getLocation()
|
|
|
|
+ if (!location) {
|
|
|
|
+ return tips('获取定位失败,请检查是否开启手机位置信息权限')
|
|
}
|
|
}
|
|
- return new Promise((resolve, reject) => {
|
|
|
|
- uni.request({
|
|
|
|
- url: 'https://restapi.amap.com/v3/geocode/regeo',
|
|
|
|
- method: 'GET',
|
|
|
|
- data: {
|
|
|
|
- location: location.longitude + ',' + location.latitude,
|
|
|
|
- key: '428a7111e02ea8367a3b34804eaa025b',
|
|
|
|
- },
|
|
|
|
- success: (res) => {
|
|
|
|
- resolve({
|
|
|
|
- longitude: location.longitude,
|
|
|
|
- latitude: location.latitude,
|
|
|
|
- address: res.data.regeocode.formatted_address,
|
|
|
|
- province: res.data.regeocode.addressComponent.province,
|
|
|
|
- city: res.data.regeocode.addressComponent.city,
|
|
|
|
- area: res.data.regeocode.addressComponent.district,
|
|
|
|
- street: res.data.regeocode.addressComponent.township,
|
|
|
|
- });
|
|
|
|
- },
|
|
|
|
- fail: function(err) {
|
|
|
|
- console.log('地址解析失败' + err);
|
|
|
|
- },
|
|
|
|
- });
|
|
|
|
- });
|
|
|
|
-};
|
|
|
|
|
|
+ return new Promise((resolve, reject) => {
|
|
|
|
+ uni.request({
|
|
|
|
+ url: 'https://restapi.amap.com/v3/geocode/regeo',
|
|
|
|
+ method: 'GET',
|
|
|
|
+ data: {
|
|
|
|
+ location: location.longitude + ',' + location.latitude,
|
|
|
|
+ key: '428a7111e02ea8367a3b34804eaa025b'
|
|
|
|
+ },
|
|
|
|
+ success: res => {
|
|
|
|
+ resolve({
|
|
|
|
+ longitude: location.longitude,
|
|
|
|
+ latitude: location.latitude,
|
|
|
|
+ address: res.data.regeocode.formatted_address,
|
|
|
|
+ province: res.data.regeocode.addressComponent.province,
|
|
|
|
+ city: res.data.regeocode.addressComponent.city,
|
|
|
|
+ area: res.data.regeocode.addressComponent.district,
|
|
|
|
+ street: res.data.regeocode.addressComponent.township
|
|
|
|
+ })
|
|
|
|
+ },
|
|
|
|
+ fail: function (err) {
|
|
|
|
+ console.log('地址解析失败' + err)
|
|
|
|
+ }
|
|
|
|
+ })
|
|
|
|
+ })
|
|
|
|
+}
|
|
|
|
|
|
// 判断微信环境
|
|
// 判断微信环境
|
|
export function isWeixin() {
|
|
export function isWeixin() {
|
|
if (navigator && navigator.userAgent) {
|
|
if (navigator && navigator.userAgent) {
|
|
- var ua = navigator.userAgent.toLowerCase();
|
|
|
|
|
|
+ var ua = navigator.userAgent.toLowerCase()
|
|
if (ua.indexOf('micromessenger') != -1) {
|
|
if (ua.indexOf('micromessenger') != -1) {
|
|
- return true;
|
|
|
|
|
|
+ return true
|
|
} else {
|
|
} else {
|
|
- return false;
|
|
|
|
|
|
+ return false
|
|
}
|
|
}
|
|
} else {
|
|
} else {
|
|
return false
|
|
return false
|
|
@@ -335,47 +303,47 @@ export function isWeixin() {
|
|
// 解析地址栏参数
|
|
// 解析地址栏参数
|
|
export function getQueryVariable(variable) {
|
|
export function getQueryVariable(variable) {
|
|
// 从?开始获取后面的所有数据
|
|
// 从?开始获取后面的所有数据
|
|
- var query = window.location.search.substring(1);
|
|
|
|
|
|
+ var query = window.location.search.substring(1)
|
|
// 从字符串&开始分隔成数组split
|
|
// 从字符串&开始分隔成数组split
|
|
- var vars = query.split('&');
|
|
|
|
|
|
+ var vars = query.split('&')
|
|
// 遍历该数组
|
|
// 遍历该数组
|
|
for (var i = 0; i < vars.length; i++) {
|
|
for (var i = 0; i < vars.length; i++) {
|
|
// 从等号部分分割成字符
|
|
// 从等号部分分割成字符
|
|
- var pair = vars[i].split('=');
|
|
|
|
|
|
+ var pair = vars[i].split('=')
|
|
// 如果第一个元素等于 传进来的参的话 就输出第二个元素
|
|
// 如果第一个元素等于 传进来的参的话 就输出第二个元素
|
|
if (pair[0] == variable) {
|
|
if (pair[0] == variable) {
|
|
- return pair[1];
|
|
|
|
|
|
+ return pair[1]
|
|
}
|
|
}
|
|
}
|
|
}
|
|
- return undefined;
|
|
|
|
|
|
+ return undefined
|
|
}
|
|
}
|
|
|
|
|
|
-export const getZero = (num) => {
|
|
|
|
- // 个位数前补0
|
|
|
|
- if (parseInt(num) < 10) {
|
|
|
|
- num = '0' + num;
|
|
|
|
- }
|
|
|
|
- return num;
|
|
|
|
-};
|
|
|
|
|
|
+export const getZero = num => {
|
|
|
|
+ // 个位数前补0
|
|
|
|
+ if (parseInt(num) < 10) {
|
|
|
|
+ num = '0' + num
|
|
|
|
+ }
|
|
|
|
+ return num
|
|
|
|
+}
|
|
|
|
|
|
export const getNowDate = () => {
|
|
export const getNowDate = () => {
|
|
- const date = new Date();
|
|
|
|
- let Y = getZero(date.getFullYear());
|
|
|
|
- let M = getZero(date.getMonth() + 1);
|
|
|
|
- let D = getZero(date.getDate());
|
|
|
|
- return `${Y}-${M}-${D}`;
|
|
|
|
-};
|
|
|
|
|
|
+ const date = new Date()
|
|
|
|
+ let Y = getZero(date.getFullYear())
|
|
|
|
+ let M = getZero(date.getMonth() + 1)
|
|
|
|
+ let D = getZero(date.getDate())
|
|
|
|
+ return `${Y}-${M}-${D}`
|
|
|
|
+}
|
|
|
|
|
|
export const getNowDatetime = () => {
|
|
export const getNowDatetime = () => {
|
|
- const date = new Date();
|
|
|
|
- let Y = getZero(date.getFullYear());
|
|
|
|
- let M = getZero(date.getMonth() + 1);
|
|
|
|
- let D = getZero(date.getDate());
|
|
|
|
- let h = getZero(date.getHours());
|
|
|
|
- let m = getZero(date.getMinutes());
|
|
|
|
- let s = getZero(date.getSeconds());
|
|
|
|
- return `${Y}-${M}-${D} ${h}:${m}:${s}`;
|
|
|
|
-};
|
|
|
|
|
|
+ const date = new Date()
|
|
|
|
+ let Y = getZero(date.getFullYear())
|
|
|
|
+ let M = getZero(date.getMonth() + 1)
|
|
|
|
+ let D = getZero(date.getDate())
|
|
|
|
+ let h = getZero(date.getHours())
|
|
|
|
+ let m = getZero(date.getMinutes())
|
|
|
|
+ let s = getZero(date.getSeconds())
|
|
|
|
+ return `${Y}-${M}-${D} ${h}:${m}:${s}`
|
|
|
|
+}
|
|
|
|
|
|
export default {
|
|
export default {
|
|
toast,
|
|
toast,
|
|
@@ -391,9 +359,9 @@ export default {
|
|
callPhone,
|
|
callPhone,
|
|
copy,
|
|
copy,
|
|
openLocation,
|
|
openLocation,
|
|
- getLocation,
|
|
|
|
- getAddress,
|
|
|
|
- getNowDate,
|
|
|
|
- getNowDatetime,
|
|
|
|
- getZero,
|
|
|
|
-};
|
|
|
|
|
|
+ getLocation,
|
|
|
|
+ getAddress,
|
|
|
|
+ getNowDate,
|
|
|
|
+ getNowDatetime,
|
|
|
|
+ getZero
|
|
|
|
+}
|