;(function (global, factory) {
typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() :
typeof define === 'function' && define.amd ? define(factory) :
global.moment = factory()
}(this, (function () { 'use strict';
var hookCallback;
function hooks () {
return hookCallback.apply(null, arguments);
}
// This is done to register the method called with moment()
// without creating circular dependencies.
function setHookCallback (callback) {
hookCallback = callback;
}
function isArray(input) {
return input instanceof Array || Object.prototype.toString.call(input) === '[object Array]';
}
function isObject(input) {
// IE8 will treat undefined and null as object if it wasn't for
// input != null
return input != null && Object.prototype.toString.call(input) === '[object Object]';
}
function isObjectEmpty(obj) {
if (Object.getOwnPropertyNames) {
return (Object.getOwnPropertyNames(obj).length === 0);
} else {
var k;
for (k in obj) {
if (obj.hasOwnProperty(k)) {
return false;
}
}
return true;
}
}
function isUndefined(input) {
return input === void 0;
}
function isNumber(input) {
return typeof input === 'number' || Object.prototype.toString.call(input) === '[object Number]';
}
function isDate(input) {
return input instanceof Date || Object.prototype.toString.call(input) === '[object Date]';
}
function map(arr, fn) {
var res = [], i;
for (i = 0; i < arr.length; ++i) {
res.push(fn(arr[i], i));
}
return res;
}
function hasOwnProp(a, b) {
return Object.prototype.hasOwnProperty.call(a, b);
}
function extend(a, b) {
for (var i in b) {
if (hasOwnProp(b, i)) {
a[i] = b[i];
}
}
if (hasOwnProp(b, 'toString')) {
a.toString = b.toString;
}
if (hasOwnProp(b, 'valueOf')) {
a.valueOf = b.valueOf;
}
return a;
}
function createUTC (input, format, locale, strict) {
return createLocalOrUTC(input, format, locale, strict, true).utc();
}
function defaultParsingFlags() {
// We need to deep clone this object.
return {
empty : false,
unusedTokens : [],
unusedInput : [],
overflow : -2,
charsLeftOver : 0,
nullInput : false,
invalidMonth : null,
invalidFormat : false,
userInvalidated : false,
iso : false,
parsedDateParts : [],
meridiem : null,
rfc2822 : false,
weekdayMismatch : false
};
}
function getParsingFlags(m) {
if (m._pf == null) {
m._pf = defaultParsingFlags();
}
return m._pf;
}
var some;
if (Array.prototype.some) {
some = Array.prototype.some;
} else {
some = function (fun) {
var t = Object(this);
var len = t.length >>> 0;
for (var i = 0; i < len; i++) {
if (i in t && fun.call(this, t[i], i, t)) {
return true;
}
}
return false;
};
}
function isValid(m) {
if (m._isValid == null) {
var flags = getParsingFlags(m);
var parsedParts = some.call(flags.parsedDateParts, function (i) {
return i != null;
});
var isNowValid = !isNaN(m._d.getTime()) &&
flags.overflow < 0 &&
!flags.empty &&
!flags.invalidMonth &&
!flags.invalidWeekday &&
!flags.weekdayMismatch &&
!flags.nullInput &&
!flags.invalidFormat &&
!flags.userInvalidated &&
(!flags.meridiem || (flags.meridiem && parsedParts));
if (m._strict) {
isNowValid = isNowValid &&
flags.charsLeftOver === 0 &&
flags.unusedTokens.length === 0 &&
flags.bigHour === undefined;
}
if (Object.isFrozen == null || !Object.isFrozen(m)) {
m._isValid = isNowValid;
}
else {
return isNowValid;
}
}
return m._isValid;
}
function createInvalid (flags) {
var m = createUTC(NaN);
if (flags != null) {
extend(getParsingFlags(m), flags);
}
else {
getParsingFlags(m).userInvalidated = true;
}
return m;
}
// Plugins that add properties should also add the key here (null value),
// so we can properly clone ourselves.
var momentProperties = hooks.momentProperties = [];
function copyConfig(to, from) {
var i, prop, val;
if (!isUndefined(from._isAMomentObject)) {
to._isAMomentObject = from._isAMomentObject;
}
if (!isUndefined(from._i)) {
to._i = from._i;
}
if (!isUndefined(from._f)) {
to._f = from._f;
}
if (!isUndefined(from._l)) {
to._l = from._l;
}
if (!isUndefined(from._strict)) {
to._strict = from._strict;
}
if (!isUndefined(from._tzm)) {
to._tzm = from._tzm;
}
if (!isUndefined(from._isUTC)) {
to._isUTC = from._isUTC;
}
if (!isUndefined(from._offset)) {
to._offset = from._offset;
}
if (!isUndefined(from._pf)) {
to._pf = getParsingFlags(from);
}
if (!isUndefined(from._locale)) {
to._locale = from._locale;
}
if (momentProperties.length > 0) {
for (i = 0; i < momentProperties.length; i++) {
prop = momentProperties[i];
val = from[prop];
if (!isUndefined(val)) {
to[prop] = val;
}
}
}
return to;
}
var updateInProgress = false;
// Moment prototype object
function Moment(config) {
copyConfig(this, config);
this._d = new Date(config._d != null ? config._d.getTime() : NaN);
if (!this.isValid()) {
this._d = new Date(NaN);
}
// Prevent infinite loop in case updateOffset creates new moment
// objects.
if (updateInProgress === false) {
updateInProgress = true;
hooks.updateOffset(this);
updateInProgress = false;
}
}
function isMoment (obj) {
return obj instanceof Moment || (obj != null && obj._isAMomentObject != null);
}
function absFloor (number) {
if (number < 0) {
// -0 -> 0
return Math.ceil(number) || 0;
} else {
return Math.floor(number);
}
}
function toInt(argumentForCoercion) {
var coercedNumber = +argumentForCoercion,
value = 0;
if (coercedNumber !== 0 && isFinite(coercedNumber)) {
value = absFloor(coercedNumber);
}
return value;
}
// compare two arrays, return the number of differences
function compareArrays(array1, array2, dontConvert) {
var len = Math.min(array1.length, array2.length),
lengthDiff = Math.abs(array1.length - array2.length),
diffs = 0,
i;
for (i = 0; i < len; i++) {
if ((dontConvert && array1[i] !== array2[i]) ||
(!dontConvert && toInt(array1[i]) !== toInt(array2[i])
没有合适的资源?快使用搜索试试~ 我知道了~
基于Vue框架的共享保洁服务设计源码
共785个文件
js:438个
png:206个
vue:116个
1.该资源内容由用户上传,如若侵权请联系客服进行举报
2.虚拟产品一经售出概不退款(资源遇到问题,请及时私信上传者)
2.虚拟产品一经售出概不退款(资源遇到问题,请及时私信上传者)
版权申诉
0 下载量 178 浏览量
2024-09-26
00:42:21
上传
评论
收藏 12.41MB ZIP 举报
温馨提示
该共享保洁服务设计源码采用Vue框架开发,总计包含791个文件,涵盖438个JavaScript文件、206个PNG图片资源、116个Vue组件、9个Markdown文件、6个JSON配置、4个CSS样式文件、3个JPG图片、2个SCSS样式文件、1个Git忽略规则文件和1个开源协议文件。项目语言包括JavaScript、Vue、CSS,可选TypeScript支持,旨在提供便捷的保洁服务共享解决方案。
资源推荐
资源详情
资源评论
收起资源包目录
基于Vue框架的共享保洁服务设计源码 (785个子文件)
icon.css 70KB
main.css 63KB
blue-background.css 16KB
mescroll-uni.css 3KB
.gitignore 28B
hotel.jpg 1.16MB
auditor.jpg 99KB
open.jpg 89KB
moment-with-locales.js 529KB
locales.js 382KB
moment-with-locales.min.js 329KB
echarts.simple.min.js 285KB
locales.min.js 277KB
area.js 223KB
crypto-js.js 187KB
moment.js 147KB
moment.min.js 52KB
city.js 46KB
cipher-core.js 29KB
tripledes.js 24KB
city.js 23KB
core.js 22KB
mescroll-uni.js 22KB
weCropper.js 19KB
city.data.js 18KB
qrcode.js 17KB
apptools.js 14KB
sha512.js 13KB
day-of-week.js 12KB
sha3.js 10KB
html-parser.js 10KB
md5.js 9KB
month.js 9KB
ripemd160.js 9KB
x64-core.js 9KB
ru.js 9KB
aes.js 8KB
amap-wx.js 8KB
ru.js 8KB
from-string.js 7KB
cs.js 7KB
sl.js 7KB
offset.js 7KB
rabbit-legacy.js 7KB
rabbit.js 7KB
cs.js 6KB
mr.js 6KB
uk.js 6KB
locales.js 6KB
sl.js 6KB
sk.js 6KB
mr.js 6KB
uk.js 6KB
qiniuUploader.js 6KB
sha256.js 5KB
be.js 5KB
prototype.js 5KB
hr.js 5KB
ta.js 5KB
sk.js 5KB
from-array.js 5KB
bs.js 5KB
bo.js 5KB
be.js 5KB
is.js 5KB
lb.js 5KB
ar.js 5KB
kn.js 5KB
pa-in.js 5KB
gu.js 5KB
ta.js 5KB
pl.js 5KB
hr.js 5KB
sr-cyrl.js 5KB
ne.js 4KB
hi.js 4KB
bo.js 4KB
pbkdf2.js 4KB
gom-latn.js 4KB
lt.js 4KB
bs.js 4KB
ar-ly.js 4KB
ug-cn.js 4KB
bn.js 4KB
hour.js 4KB
el.js 4KB
create.js 4KB
tlh.js 4KB
is.js 4KB
lb.js 4KB
ar.js 4KB
hu.js 4KB
start-end-of.js 4KB
kn.js 4KB
me.js 4KB
ka.js 4KB
sr.js 4KB
pa-in.js 4KB
gu.js 4KB
enc-utf16.js 4KB
共 785 条
- 1
- 2
- 3
- 4
- 5
- 6
- 8
资源评论
xyq2024
- 粉丝: 2960
- 资源: 5562
上传资源 快速赚钱
- 我的内容管理 展开
- 我的资源 快来上传第一个资源
- 我的收益 登录查看自己的收益
- 我的积分 登录查看自己的积分
- 我的C币 登录后查看C币余额
- 我的收藏
- 我的下载
- 下载帮助
最新资源
- 基于java的三国之家网站设计与实现.docx
- 基于java的图书管理系统V2设计与实现.docx
- 基于java的宿舍管理系统设计与实现.docx
- 基于java的停车场管理系统设计与实现.docx
- 基于java的图书管理系统V3设计与实现.docx
- 基于java的乡村养老服务管理系统设计与实现.docx
- 基于java的图书管理系统设计与实现.docx
- 基于java的项目申报系统设计与实现.docx
- 基于java的校车调度管理系统设计与实现.docx
- 基于java的校园便利平台设计与实现.docx
- 基于java的校园闲置物品交易系统设计与实现.docx
- 基于java的校园一卡通设计与实现.docx
- 基于java的协同过滤电影推荐系统设计与实现.docx
- 基于java的学院个人信息管理系统设计与实现.docx
- 基于java的医院病历管理系统设计与实现.docx
- 基于java的智慧养老中心管理系统设计与实现.docx
资源上传下载、课程学习等过程中有任何疑问或建议,欢迎提出宝贵意见哦~我们会及时处理!
点击此处反馈
安全验证
文档复制为VIP权益,开通VIP直接复制
信息提交成功