diff --git a/app.wxss b/app.wxss index 269e3e4..d09c06b 100644 --- a/app.wxss +++ b/app.wxss @@ -68,3 +68,21 @@ font-size: 32rpx; color: #FFFFFF; } + +.see{ + font-size: 24rpx; + color: #036EF3; + text-decoration: underline; +} + +.ycj{ + background-color: #FF652F; +} + +.wcj{ + background-color: #666A7A; +} + +.gsz{ + background-color: #02D775; +} diff --git a/assets/images/列表.png b/assets/images/s-icon.png similarity index 100% rename from assets/images/列表.png rename to assets/images/s-icon.png diff --git a/assets/images/搜索.png b/assets/images/search.png similarity index 100% rename from assets/images/搜索.png rename to assets/images/search.png diff --git a/custom-tab-bar/index.wxml b/custom-tab-bar/index.wxml index b896999..61c099e 100644 --- a/custom-tab-bar/index.wxml +++ b/custom-tab-bar/index.wxml @@ -7,7 +7,7 @@ - + {{item.text}} diff --git a/custom-tab-bar/index.wxss b/custom-tab-bar/index.wxss index bbeb74e..13a0850 100644 --- a/custom-tab-bar/index.wxss +++ b/custom-tab-bar/index.wxss @@ -45,7 +45,7 @@ padding-bottom: 10rpx; } -.tab-bar-item view { - font-size: 10px; - line-height: 25px; +.tab-title{ + font-size: 22rpx; + line-height: 72rpx; } diff --git a/pages/calendar/calendar.js b/pages/calendar/calendar.js index c86302f..cd38d33 100644 --- a/pages/calendar/calendar.js +++ b/pages/calendar/calendar.js @@ -1,10 +1,21 @@ // pages/calendar/calendar.js +const moment = require('../../utils/moment.min'); +moment.locale('en', { + longDateFormat: { + l: "YYYY-MM-DD", + L: "YYYY/MM/DD", + } +}); +import {formatNumber} from '../../utils/util' Page({ /** * 页面的初始数据 */ data: { + tabList: [{id:1,name:'本日挂牌'},{id:2,name:'本日拍卖'}], + timer:'', + active: 1, loading: false, color: '#000', background: '#f8f8f8', @@ -12,18 +23,12 @@ Page({ animated: false, isCalendarShow: 'block', calendarDisplayMonthNum: 1, - calendarDisplayTime: '2021-05', + calendarDisplayTime: '', calendarSelectedDate: new Date().toString(), calendarSelectedDateStr: '', region: ["500000", "500100"], cityName: '重庆', - list:[{ - lable:'本日挂牌', - info:[{id:1,name:'CQ210001'},{id:1,name:'CQ210001'},{id:1,name:'CQ210001'},{id:1,name:'CQ210001'},{id:1,name:'CQ210001'},{id:1,name:'CQ210001'},{id:1,name:'CQ210001'},{id:1,name:'CQ210001'},{id:1,name:'CQ210001'}] - },{ - lable:'本日拍卖', - info:[{id:1,name:'CQ210001'},{id:1,name:'CQ210001'},{id:1,name:'CQ210001'},{id:1,name:'CQ210001'},{id:1,name:'CQ210001'},{id:1,name:'CQ210001'},{id:1,name:'CQ210001'},{id:1,name:'CQ210001'},{id:1,name:'CQ210001'}] - }] + info:[{id:1,name:'CQ210001'},{id:1,name:'CQ210001'},{id:1,name:'CQ210001'},{id:1,name:'CQ210001'},{id:1,name:'CQ210001'},{id:1,name:'CQ210001'},{id:1,name:'CQ210001'},{id:1,name:'CQ210001'},{id:1,name:'CQ210001'}] }, bindDateChange(res){ @@ -32,6 +37,12 @@ Page({ calendarDisplayTime }) }, + tabDowm(e){ + let active = e.currentTarget.dataset.id + if(active!==this.data.active){ + this.setData({active}) + } + }, backToday(){ let timer = new Date() let year = timer.getFullYear() @@ -58,7 +69,9 @@ Page({ * 生命周期函数--监听页面加载 */ onLoad: function (options) { - + this.backToday() + let timer =moment().format('L') + this.setData({timer}) }, /** @@ -116,6 +129,8 @@ Page({ }, onCalendarDayTap(res){ - let detail = res.detail; + let timer = res.detail; + timer = `${timer.year}/${formatNumber(timer.month)}/${formatNumber(timer.day)}` + this.setData({timer}) } }) \ No newline at end of file diff --git a/pages/calendar/calendar.wxml b/pages/calendar/calendar.wxml index 94dcd94..c963234 100644 --- a/pages/calendar/calendar.wxml +++ b/pages/calendar/calendar.wxml @@ -43,12 +43,19 @@ + + + {{item.name}} + + + - - {{ele.lable}} + + {{timer}} - {{item.name}} diff --git a/pages/calendar/calendar.wxss b/pages/calendar/calendar.wxss index e6d08a0..34d9e0e 100644 --- a/pages/calendar/calendar.wxss +++ b/pages/calendar/calendar.wxss @@ -46,7 +46,7 @@ font-size: 28rpx; } -.back-now{ +.back-now { color: #038AF3; } @@ -61,11 +61,11 @@ color: #525252; } -.t-box{ +.t-box { position: relative; } -.t-box picker{ +.t-box picker { position: absolute; width: 100%; height: 100%; @@ -73,11 +73,11 @@ opacity: 0; } -.address{ +.address { position: relative; } -.address picker{ +.address picker { position: absolute; width: 150rpx; height: 100%; @@ -85,33 +85,67 @@ opacity: 0; } -.list .item{ +.list .item { margin-top: 26rpx; background-color: #ffffff; padding: 30rpx; } -.item .lable{ +.item .lable { + font-size: 32rpx; + font-weight: bold; + padding: 0 20rpx; + line-height: 42rpx; + background: #FFCC00; + border-radius: 4rpx; + color: #ffffff; +} + +.list .info { + display: flex; + flex-wrap: wrap; + justify-content: space-between; + padding-top: 30rpx; +} + +.list .info-item { + padding: 0 30rpx; font-size: 30rpx; font-weight: bold; - color: #F69F06; + color: #646464; + line-height: 80rpx; } -.item:last-of-type .lable{ - color: #37F492; +.tab { + display: flex; + align-items: center; + padding: 0 30rpx; } -.list .info{ +.tab-item { display: flex; - flex-wrap: wrap; - justify-content: space-between; + flex-direction: column; + align-items: center; + margin-right: 54rpx; } -.list .info-item{ - padding: 30rpx; +.tab-title { font-size: 30rpx; font-weight: bold; - color: #838B99; - line-height: 36rpx; - height: 36rpx; + color: #565A6B; +} + +.tab-tag { + width: 44rpx; + height: 10rpx; + display: none; +} + +.active .tab-title { + font-size: 34rpx; + color: #262936; +} + +.active .tab-tag { + display: block; } \ No newline at end of file diff --git a/pages/index/index.wxss b/pages/index/index.wxss index 7cff3ee..639437e 100644 --- a/pages/index/index.wxss +++ b/pages/index/index.wxss @@ -76,18 +76,6 @@ margin-top: 10rpx; } -.ycj{ - background-color: #FF652F; -} - -.wcj{ - background-color: #666A7A; -} - -.gsz{ - background-color: #02D775; -} - .list-timer{ margin-top: 10rpx; font-size: 26rpx; diff --git a/pages/look/look.js b/pages/look/look.js index 0474e6f..1ecaa06 100644 --- a/pages/look/look.js +++ b/pages/look/look.js @@ -5,7 +5,15 @@ Page({ * 页面的初始数据 */ data: { + tabList: [{id:1,name:'公告信息'},{id:2,name:'成交信息'},{id:3,name:'呈现项目'}], + active: 1, + }, + tabDowm(e){ + let active = e.currentTarget.dataset.id + if(active!==this.data.active){ + this.setData({active}) + } }, /** diff --git a/pages/look/look.wxml b/pages/look/look.wxml index 71a3b8a..5e61935 100644 --- a/pages/look/look.wxml +++ b/pages/look/look.wxml @@ -1,4 +1,150 @@ + + var setTag = function(state) { + var obj = {} + if(state===1){ + obj = { + sname:'ycj', + text:'已成交' + } + }else if(state===2){ + obj = { + sname:'wcj', + text:'未成交' + } + }else{ + obj = { + sname:'gsz', + text:'公示中' + } + } + return obj + }; + module.exports = {setTag:setTag}; + + + + + + + + + + 土地池 + + + + + + + + + + + {{filter.setTag(2).text}} + 高新区大杨石组团H分区06-2324242423342号宗地 + + + + 【城 市】 + 重庆 + + + 【公告号】 + CQ4289 + + + 【行政区】 + 巴南区 + + + 【大组团】 + 大杨石 + + + 【小组团】 + 杨家坪 + + + + + + {{item.name}} + + + + + 土地指标 + + 占地面积:20344m(130亩) + 容积率:2.5 + 计容面积:303956m + 绿地率:29% + 建筑限高:不大于30米 + 建筑密度:28% + 起始总价:300000万元 + 起始楼面价:4800元/m + 竟买保证金:30000万元 + 公告日期:2021/03/01 + 拍卖日期:2021/03/30 + + + + 规划条件 + + 商业面积:20344m + 商业占比:30% + 商务面积:303956m + 商务占比:29% + 配建-计容面积:不大于30米 + 配建占比:28% + 配建-不计容面积:幼儿园2690m + + + + 建设条件 + + 装配建筑:20344m + 绿色建筑:30% + 地质灾害:303956m + 人防还建:29% + 特殊条件:不大于30米 + 其他条件:28% + + + + 竞买须知 + + 竞买条件:这是一段文字说明介绍 + + 付款节奏:这是一段文字介绍这是一段文字介绍这是一段文字介绍这是一段文字介绍这是一段文字介绍这是一段文字介绍这是一段文字介绍这是一段文字介绍这是一段文字介绍这是一段文字介绍 + 出让人:这是一段文字介绍 + + + + + 挂牌资料 + + 规划条件函:点击查看 + 条件函附图:点击查看 + 周报控规图:点击查看 + 竞买须知:点击查看 + 国土合同:无 + 建设方案:无 + 航拍全景:点击查看 + + + + + 土地研制 + + AIR可研: 点击查看 + 静态测算:开始测算 + 看地导航:点击导航 + + + \ No newline at end of file diff --git a/pages/look/look.wxss b/pages/look/look.wxss index be39acd..a33666e 100644 --- a/pages/look/look.wxss +++ b/pages/look/look.wxss @@ -1 +1,168 @@ -/* pages/look/look.wxss */ \ No newline at end of file +/* pages/look/look.wxss */ +.top { + padding: 14rpx 30rpx; + display: flex; + align-items: center; + justify-content: space-between; +} + +.search { + width: 110rpx; + height: 62rpx; + background: #ECECEC; + border-radius: 30rpx; +} + +.s-icon { + width: 32rpx; + height: 32rpx; +} + +.top-tag { + width: 30rpx; + height: 30rpx; +} + +.top-text { + font-size: 32rpx; + color: #222222; + text-indent: 10rpx; +} + +.map { + width: 750rpx; + height: 543rpx; +} + +.tab { + display: flex; + align-items: center; + padding: 20rpx 30rpx 0 30rpx; +} + +.tab-item { + display: flex; + flex-direction: column; + align-items: center; + margin-right: 54rpx; +} + +.tab-title { + font-size: 30rpx; + font-weight: bold; + color: #565A6B; +} + +.tab-tag { + width: 44rpx; + height: 10rpx; + display: none; +} + +.active .tab-title { + font-size: 34rpx; + color: #262936; +} + +.active .tab-tag { + display: block; +} + +.gener { + padding: 20rpx 30rpx; + background-color: #ffffff; +} + +.gener-tag { + width: 90rpx; + height: 34rpx; + background: #666A7A; + border-radius: 4rpx; + font-size: 22rpx; + font-weight: bold; + color: #FFFFFF; +} + +.gener-top { + display: flex; + align-items: center; +} + +.gener-title { + flex: 1; + text-indent: 10rpx; + overflow: hidden; + white-space: nowrap; + text-overflow: ellipsis; + font-size: 34rpx; + font-weight: bold; + color: #262936; +} + +.gener-info { + display: flex; + flex-wrap: wrap; +} + +.gener-item { + line-height: 56rpx; + min-width: 33.3%; + font-size: 26rpx; +} + +.gener-lable { + color: #262936; + font-weight: bold; +} + +.pl-14{ + padding-left: 14rpx; +} + +.gener-text { + color: #565A6B; +} + +.list{ + background-color: #FFFFFF; + margin-top: 22rpx; + padding: 0 30rpx 30rpx; +} + +.list-title{ + font-size: 30rpx; + line-height: 80rpx; + font-weight: bold; + color: #F69F06; +} + +.list-info{ + display: flex; + flex-wrap: wrap; +} + +.list-info-once{ + display: flex; + flex-direction: column; +} + +.list-info-item{ + line-height: 48rpx; + font-size: 24rpx; + color: #838B99; +} + +.list-item-once{ + line-height: 48rpx; + font-size: 24rpx; + color: #838B99; + display: block; +} + +.list-info .list-info-item:nth-child(odd){ + width: 60%; +} + +.list-info .list-info-item:nth-child(even){ + width: 40%; +} \ No newline at end of file diff --git a/project.config.json b/project.config.json index 6190b7f..222bfa0 100644 --- a/project.config.json +++ b/project.config.json @@ -21,16 +21,15 @@ "checkSiteMap": true, "uploadWithSourceMap": true, "compileHotReLoad": false, - "useMultiFrameRuntime": false, - "useApiHook": false, - "useApiHostProcess": false, + "useMultiFrameRuntime": true, + "useApiHook": true, + "useApiHostProcess": true, "babelSetting": { "ignore": [], "disablePlugins": [], "outputPath": "" }, "enableEngineNative": false, - "bundle": false, "useIsolateContext": true, "useCompilerModule": true, "userConfirmedUseCompilerModuleSwitch": false, diff --git a/project.private.config.json b/project.private.config.json index 4f57d6d..19c7cef 100644 --- a/project.private.config.json +++ b/project.private.config.json @@ -35,6 +35,18 @@ "pathName": "pages/calculation/calculation", "query": "", "scene": null + }, + { + "name": "日历", + "pathName": "pages/calendar/calendar", + "query": "", + "scene": null + }, + { + "name": "看地", + "pathName": "pages/look/look", + "query": "", + "scene": null } ] } diff --git a/utils/moment.min.js b/utils/moment.min.js new file mode 100644 index 0000000..57cd2d4 --- /dev/null +++ b/utils/moment.min.js @@ -0,0 +1,2 @@ +!function(e,t){"object"==typeof exports&&"undefined"!=typeof module?module.exports=t():"function"==typeof define&&define.amd?define(t):e.moment=t()}(this,function(){"use strict";var e,i;function f(){return e.apply(null,arguments)}function o(e){return e instanceof Array||"[object Array]"===Object.prototype.toString.call(e)}function u(e){return null!=e&&"[object Object]"===Object.prototype.toString.call(e)}function m(e,t){return Object.prototype.hasOwnProperty.call(e,t)}function l(e){if(Object.getOwnPropertyNames)return 0===Object.getOwnPropertyNames(e).length;for(var t in e)if(m(e,t))return;return 1}function r(e){return void 0===e}function h(e){return"number"==typeof e||"[object Number]"===Object.prototype.toString.call(e)}function a(e){return e instanceof Date||"[object Date]"===Object.prototype.toString.call(e)}function d(e,t){for(var n=[],s=0;s>>0,s=0;sFe(e)?(r=e+1,a-Fe(e)):(r=e,a);return{year:r,dayOfYear:o}}function Ae(e,t,n){var s,i,r=Ge(e.year(),t,n),a=Math.floor((e.dayOfYear()-r-1)/7)+1;return a<1?s=a+je(i=e.year()-1,t,n):a>je(e.year(),t,n)?(s=a-je(e.year(),t,n),i=e.year()+1):(i=e.year(),s=a),{week:s,year:i}}function je(e,t,n){var s=Ge(e,t,n),i=Ge(e+1,t,n);return(Fe(e)-s+i)/7}C("w",["ww",2],"wo","week"),C("W",["WW",2],"Wo","isoWeek"),L("week","w"),L("isoWeek","W"),A("week",5),A("isoWeek",5),ce("w",te),ce("ww",te,Q),ce("W",te),ce("WW",te,Q),ge(["w","ww","W","WW"],function(e,t,n,s){t[s.substr(0,1)]=Z(e)});function Ie(e,t){return e.slice(t,7).concat(e.slice(0,t))}C("d",0,"do","day"),C("dd",0,0,function(e){return this.localeData().weekdaysMin(this,e)}),C("ddd",0,0,function(e){return this.localeData().weekdaysShort(this,e)}),C("dddd",0,0,function(e){return this.localeData().weekdays(this,e)}),C("e",0,0,"weekday"),C("E",0,0,"isoWeekday"),L("day","d"),L("weekday","e"),L("isoWeekday","E"),A("day",11),A("weekday",11),A("isoWeekday",11),ce("d",te),ce("e",te),ce("E",te),ce("dd",function(e,t){return t.weekdaysMinRegex(e)}),ce("ddd",function(e,t){return t.weekdaysShortRegex(e)}),ce("dddd",function(e,t){return t.weekdaysRegex(e)}),ge(["dd","ddd","dddd"],function(e,t,n,s){var i=n._locale.weekdaysParse(e,s,n._strict);null!=i?t.d=i:y(n).invalidWeekday=e}),ge(["d","e","E"],function(e,t,n,s){t[s]=Z(e)});var Ze="Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday".split("_"),ze="Sun_Mon_Tue_Wed_Thu_Fri_Sat".split("_"),$e="Su_Mo_Tu_We_Th_Fr_Sa".split("_"),qe=de,Be=de,Je=de;function Qe(){function e(e,t){return t.length-e.length}for(var t,n,s,i,r=[],a=[],o=[],u=[],l=0;l<7;l++)t=_([2e3,1]).day(l),n=me(this.weekdaysMin(t,"")),s=me(this.weekdaysShort(t,"")),i=me(this.weekdays(t,"")),r.push(n),a.push(s),o.push(i),u.push(n),u.push(s),u.push(i);r.sort(e),a.sort(e),o.sort(e),u.sort(e),this._weekdaysRegex=new RegExp("^("+u.join("|")+")","i"),this._weekdaysShortRegex=this._weekdaysRegex,this._weekdaysMinRegex=this._weekdaysRegex,this._weekdaysStrictRegex=new RegExp("^("+o.join("|")+")","i"),this._weekdaysShortStrictRegex=new RegExp("^("+a.join("|")+")","i"),this._weekdaysMinStrictRegex=new RegExp("^("+r.join("|")+")","i")}function Xe(){return this.hours()%12||12}function Ke(e,t){C(e,0,0,function(){return this.localeData().meridiem(this.hours(),this.minutes(),t)})}function et(e,t){return t._meridiemParse}C("H",["HH",2],0,"hour"),C("h",["hh",2],0,Xe),C("k",["kk",2],0,function(){return this.hours()||24}),C("hmm",0,0,function(){return""+Xe.apply(this)+T(this.minutes(),2)}),C("hmmss",0,0,function(){return""+Xe.apply(this)+T(this.minutes(),2)+T(this.seconds(),2)}),C("Hmm",0,0,function(){return""+this.hours()+T(this.minutes(),2)}),C("Hmmss",0,0,function(){return""+this.hours()+T(this.minutes(),2)+T(this.seconds(),2)}),Ke("a",!0),Ke("A",!1),L("hour","h"),A("hour",13),ce("a",et),ce("A",et),ce("H",te),ce("h",te),ce("k",te),ce("HH",te,Q),ce("hh",te,Q),ce("kk",te,Q),ce("hmm",ne),ce("hmmss",se),ce("Hmm",ne),ce("Hmmss",se),ye(["H","HH"],Me),ye(["k","kk"],function(e,t,n){var s=Z(e);t[Me]=24===s?0:s}),ye(["a","A"],function(e,t,n){n._isPm=n._locale.isPM(e),n._meridiem=e}),ye(["h","hh"],function(e,t,n){t[Me]=Z(e),y(n).bigHour=!0}),ye("hmm",function(e,t,n){var s=e.length-2;t[Me]=Z(e.substr(0,s)),t[De]=Z(e.substr(s)),y(n).bigHour=!0}),ye("hmmss",function(e,t,n){var s=e.length-4,i=e.length-2;t[Me]=Z(e.substr(0,s)),t[De]=Z(e.substr(s,2)),t[Se]=Z(e.substr(i)),y(n).bigHour=!0}),ye("Hmm",function(e,t,n){var s=e.length-2;t[Me]=Z(e.substr(0,s)),t[De]=Z(e.substr(s))}),ye("Hmmss",function(e,t,n){var s=e.length-4,i=e.length-2;t[Me]=Z(e.substr(0,s)),t[De]=Z(e.substr(s,2)),t[Se]=Z(e.substr(i))});var tt=z("Hours",!0);var nt,st={calendar:{sameDay:"[Today at] LT",nextDay:"[Tomorrow at] LT",nextWeek:"dddd [at] LT",lastDay:"[Yesterday at] LT",lastWeek:"[Last] dddd [at] LT",sameElse:"L"},longDateFormat:{LTS:"h:mm:ss A",LT:"h:mm A",L:"MM/DD/YYYY",LL:"MMMM D, YYYY",LLL:"MMMM D, YYYY h:mm A",LLLL:"dddd, MMMM D, YYYY h:mm A"},invalidDate:"Invalid date",ordinal:"%d",dayOfMonthOrdinalParse:/\d{1,2}/,relativeTime:{future:"in %s",past:"%s ago",s:"a few seconds",ss:"%d seconds",m:"a minute",mm:"%d minutes",h:"an hour",hh:"%d hours",d:"a day",dd:"%d days",w:"a week",ww:"%d weeks",M:"a month",MM:"%d months",y:"a year",yy:"%d years"},months:Te,monthsShort:Ne,week:{dow:0,doy:6},weekdays:Ze,weekdaysMin:$e,weekdaysShort:ze,meridiemParse:/[ap]\.?m?\.?/i},it={},rt={};function at(e){return e?e.toLowerCase().replace("_","-"):e}function ot(e){for(var t,n,s,i,r=0;r=t&&function(e,t){for(var n=Math.min(e.length,t.length),s=0;s=t-1)break;t--}r++}return nt}function ut(t){var e;if(void 0===it[t]&&"undefined"!=typeof module&&module&&module.exports)try{e=nt._abbr,require("./locale/"+t),lt(e)}catch(e){it[t]=null}return it[t]}function lt(e,t){var n;return e&&((n=r(t)?dt(e):ht(e,t))?nt=n:"undefined"!=typeof console&&console.warn&&console.warn("Locale "+e+" not found. Did you forget to load it?")),nt._abbr}function ht(e,t){if(null===t)return delete it[e],null;var n,s=st;if(t.abbr=e,null!=it[e])Y("defineLocaleOverride","use moment.updateLocale(localeName, config) to change an existing locale. moment.defineLocale(localeName, config) should only be used for creating a new locale See http://momentjs.com/guides/#/warnings/define-locale/ for more info."),s=it[e]._config;else if(null!=t.parentLocale)if(null!=it[t.parentLocale])s=it[t.parentLocale]._config;else{if(null==(n=ut(t.parentLocale)))return rt[t.parentLocale]||(rt[t.parentLocale]=[]),rt[t.parentLocale].push({name:e,config:t}),null;s=n._config}return it[e]=new x(b(s,t)),rt[e]&&rt[e].forEach(function(e){ht(e.name,e.config)}),lt(e),it[e]}function dt(e){var t;if(e&&e._locale&&e._locale._abbr&&(e=e._locale._abbr),!e)return nt;if(!o(e)){if(t=ut(e))return t;e=[e]}return ot(e)}function ct(e){var t,n=e._a;return n&&-2===y(e).overflow&&(t=n[ve]<0||11xe(n[pe],n[ve])?ke:n[Me]<0||24je(n,r,a)?y(e)._overflowWeeks=!0:null!=u?y(e)._overflowWeekday=!0:(o=Ee(n,s,i,r,a),e._a[pe]=o.year,e._dayOfYear=o.dayOfYear)}(e),null!=e._dayOfYear&&(r=St(e._a[pe],s[pe]),(e._dayOfYear>Fe(r)||0===e._dayOfYear)&&(y(e)._overflowDayOfYear=!0),n=Ve(r,0,e._dayOfYear),e._a[ve]=n.getUTCMonth(),e._a[ke]=n.getUTCDate()),t=0;t<3&&null==e._a[t];++t)e._a[t]=u[t]=s[t];for(;t<7;t++)e._a[t]=u[t]=null==e._a[t]?2===t?1:0:e._a[t];24===e._a[Me]&&0===e._a[De]&&0===e._a[Se]&&0===e._a[Ye]&&(e._nextDay=!0,e._a[Me]=0),e._d=(e._useUTC?Ve:function(e,t,n,s,i,r,a){var o;return e<100&&0<=e?(o=new Date(e+400,t,n,s,i,r,a),isFinite(o.getFullYear())&&o.setFullYear(e)):o=new Date(e,t,n,s,i,r,a),o}).apply(null,u),i=e._useUTC?e._d.getUTCDay():e._d.getDay(),null!=e._tzm&&e._d.setUTCMinutes(e._d.getUTCMinutes()-e._tzm),e._nextDay&&(e._a[Me]=24),e._w&&void 0!==e._w.d&&e._w.d!==i&&(y(e).weekdayMismatch=!0)}}function Ot(e){if(e._f!==f.ISO_8601)if(e._f!==f.RFC_2822){e._a=[],y(e).empty=!0;for(var t,n,s,i,r,a,o,u=""+e._i,l=u.length,h=0,d=H(e._f,e._locale).match(N)||[],c=0;cn.valueOf():n.valueOf()"}),pn.toJSON=function(){return this.isValid()?this.toISOString():null},pn.toString=function(){return this.clone().locale("en").format("ddd MMM DD YYYY HH:mm:ss [GMT]ZZ")},pn.unix=function(){return Math.floor(this.valueOf()/1e3)},pn.valueOf=function(){return this._d.valueOf()-6e4*(this._offset||0)},pn.creationData=function(){return{input:this._i,format:this._f,locale:this._locale,isUTC:this._isUTC,strict:this._strict}},pn.eraName=function(){for(var e,t=this.localeData().eras(),n=0,s=t.length;nthis.clone().month(0).utcOffset()||this.utcOffset()>this.clone().month(5).utcOffset()},pn.isLocal=function(){return!!this.isValid()&&!this._isUTC},pn.isUtcOffset=function(){return!!this.isValid()&&this._isUTC},pn.isUtc=At,pn.isUTC=At,pn.zoneAbbr=function(){return this._isUTC?"UTC":""},pn.zoneName=function(){return this._isUTC?"Coordinated Universal Time":""},pn.dates=n("dates accessor is deprecated. Use date instead.",fn),pn.months=n("months accessor is deprecated. Use month instead",Ue),pn.years=n("years accessor is deprecated. Use year instead",Le),pn.zone=n("moment().zone is deprecated, use moment().utcOffset instead. http://momentjs.com/guides/#/warnings/zone/",function(e,t){return null!=e?("string"!=typeof e&&(e=-e),this.utcOffset(e,t),this):-this.utcOffset()}),pn.isDSTShifted=n("isDSTShifted is deprecated. See http://momentjs.com/guides/#/warnings/dst-shifted/ for more information",function(){if(!r(this._isDSTShifted))return this._isDSTShifted;var e,t={};return v(t,this),(t=bt(t))._a?(e=(t._isUTC?_:Tt)(t._a),this._isDSTShifted=this.isValid()&&0 { } module.exports = { - formatTime + formatTime, + formatNumber }