...
|
...
|
@@ -9,8 +9,6 @@ |
|
|
const library = '../../../library';
|
|
|
const helpers = require(`${library}/helpers`);
|
|
|
const _ = require('lodash');
|
|
|
|
|
|
// const aMinute = 60000;
|
|
|
const anHour = 3600000;
|
|
|
const aDay = anHour * 24;
|
|
|
const timeFormat = {
|
...
|
...
|
@@ -50,34 +48,6 @@ const processTime = (time) => { |
|
|
};
|
|
|
|
|
|
/**
|
|
|
* 折扣专场专题详情过期时间处理
|
|
|
* @param {[string]} time
|
|
|
* @return {[boject]}
|
|
|
*/
|
|
|
// const processTimes = (time) => {
|
|
|
// let data = {};
|
|
|
// let type = '';
|
|
|
//
|
|
|
// if (time > aDay) {
|
|
|
// type = 'dhms';
|
|
|
// } else {
|
|
|
// if (time > anHour) {
|
|
|
// type = 'hms';
|
|
|
// } else {
|
|
|
// if (time > aMinute) {
|
|
|
// type = 'ms';
|
|
|
// } else {
|
|
|
// type = 's';
|
|
|
// }
|
|
|
// }
|
|
|
// }
|
|
|
//
|
|
|
// data.time = helpers.dateDiffFormat(timeFormat[type], time, 'ms');
|
|
|
//
|
|
|
// return data.time;
|
|
|
// };
|
|
|
|
|
|
/**
|
|
|
* 折扣文本切割
|
|
|
* @param text 要切割的文本
|
|
|
* @returns {{discount: *, discountText: *}}
|
...
|
...
|
|