d-rili.vue 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515
  1. <template>
  2. <view>
  3. <!-- -->
  4. <view class="riliWrapper">
  5. <view class="riliWrapperBox">
  6. <!-- 日历 -->
  7. <view class="signWrapperCalendar" v-if="true">
  8. <view class="signWrapperCalendarBox">
  9. <!--滑动日历-->
  10. <!-- @change="_onClickSlideApi" -->
  11. <swiper duration="200" :current="slideDataListIndex" circular style="height:820rpx">
  12. <swiper-item class="swiper-item" v-for="(calendar,indexa) in 3" :key="indexa">
  13. <!-- <view class="signWrapperCalendarBoxTop"> -->
  14. <!-- {{year}}年{{month<10?'0'+month:month}}月 -->
  15. <!-- </view> -->
  16. <view class="signWrapperCalendarBoxCenter">
  17. <view class="signWrapperCalendarBoxCenterBox">
  18. <view class="signWrapperCalendarBoxCenterBoxTop">
  19. <div class="week-number">
  20. <span v-for="(item,index) in weekList"
  21. :style="{color:(index==0||index==weekList.length-1)}"
  22. :key="index">{{item}}</span>
  23. </div>
  24. </view>
  25. <view class="signWrapperCalendarBoxCenterBoxFooter">
  26. <view class="each-day" v-for="(dayTime,idx) in dayList" :key="idx">
  27. <view :class="dayTime!=day+2 ?'eachDayBox':'eachDayBoxCheck'"
  28. v-if="day">
  29. <view class="eachDayBoxBox " v-if="dayTime"
  30. :style="dayTime==day?'border: 1rpx solid #8FCCF1;':''">
  31. {{dayTime?dayTime:''}}
  32. </view>
  33. </view>
  34. </view>
  35. </view>
  36. </view>
  37. </view>
  38. </swiper-item>
  39. </swiper>
  40. <!-- -->
  41. </view>
  42. </view>
  43. </view>
  44. </view>
  45. <!-- -->
  46. </view>
  47. </template>
  48. <script>
  49. export default {
  50. data() {
  51. return {
  52. weekList: ['', '周一', '周二', '周三', '周四', '周五', '周六'],
  53. // 月份数组【2020-08-01 2020-09-01 2020-10-01】
  54. slideDataList: [],
  55. // 月份数组的索引
  56. slideDataListIndex: 1,
  57. year: 2020,
  58. month: 10,
  59. day: 10,
  60. dayList: [],
  61. start_time: '', // 月初的时间戳
  62. end_time: '', // 月末的时间戳
  63. };
  64. },
  65. created() {
  66. console.log('created')
  67. this._onLoad()
  68. },
  69. methods: {
  70. async _onLoad() {
  71. // 获取当前时间 赋值年,月
  72. await this.initTime()
  73. // 更新日历
  74. await this._runMonth()
  75. },
  76. // 初始化时间
  77. initTime() {
  78. var nowTimeData = this._getTimeNowApi()
  79. this.year = nowTimeData.year
  80. this.month = nowTimeData.month
  81. this.day = nowTimeData.day
  82. // 今日时间为:2020-9-16
  83. console.log('今日时间为:' + this.year + '-' + this.month + '-' + this.day)
  84. },
  85. async _runMonth() {
  86. console.log('==============================================================')
  87. // 获取当前月的每一天的数据 1~31
  88. await this.initApi()
  89. // 根据当前选择的年月,更新start_time end_time
  90. await this._timeApi()
  91. console.log(this.start_time)
  92. console.log(this.end_time)
  93. // 更新记录
  94. // await this.onClickSignLog()
  95. let dataWeek = await this.getweek(this._getNowApi());
  96. // console.log(this._getNowApi())
  97. this.slideDataList[0] = []
  98. this.slideDataList[1] = dataWeek
  99. this.slideDataList[2] = []
  100. console.log(this.slideDataList)
  101. console.log('==============================================================')
  102. },
  103. _getTimeNowApi() {
  104. // 初始化时间
  105. var date = new Date();
  106. var year = date.getFullYear();
  107. var month = parseInt(date.getMonth() + 1);
  108. var day = date.getDate();
  109. if (month < 10) {
  110. month = '0' + month
  111. }
  112. if (day < 10) {
  113. day = '0' + day
  114. }
  115. let returnData = {
  116. year: year,
  117. month: parseInt(month),
  118. day: day,
  119. }
  120. return returnData
  121. },
  122. // 滑动日历触发(左右滑动)
  123. // _onClickSlideApi(e) {
  124. // let current = e.detail.current
  125. // let oldIndex = this.slideDataListIndex
  126. // this.slideDataListIndex = current
  127. // if (oldIndex - current == -1 || oldIndex - current == 2) {
  128. // console.log('向右滑动前一个月')
  129. // if (this.month == 12) {
  130. // this.year = this.year + 1
  131. // this.month = 1
  132. // } else {
  133. // this.month = this.month + 1
  134. // }
  135. // } else {
  136. // console.log('向左滑动后退一个月')
  137. // if (this.month == 1) {
  138. // this.year = this.year - 1
  139. // this.month = 12
  140. // } else {
  141. // this.month = this.month - 1
  142. // }
  143. // }
  144. // this._runMonth()
  145. // },
  146. _getNowApi() {
  147. console.log('当前日期:' + this.year + '-' + this.month + '-' + this.day)
  148. let data = {
  149. Day: 1,
  150. Month: this.month,
  151. Year: this.year
  152. }
  153. console.log(data)
  154. return data
  155. },
  156. // 获取当前月的每一天的数据
  157. initApi() {
  158. this.dayList = this.createDayList(this.month, this.year);
  159. },
  160. //创建每个月日历数据,传入月份1号前面用null填充
  161. createDayList(month, year) {
  162. const count = this.getDayNum(month, year),
  163. _week = new Date(year + '/' + month + '/1').getDay();
  164. let list = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26,
  165. 27, 28
  166. ]
  167. for (let i = 29; i <= count; i++) {
  168. list.push(i)
  169. }
  170. for (let i = 0; i < _week; i++) {
  171. list.unshift(null)
  172. }
  173. return list;
  174. },
  175. //计算传入月份有多少天
  176. getDayNum(month, year) {
  177. let dayNum = [31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31]
  178. if ((year % 4 === 0) && (year % 100 !== 0) || (year % 400 === 0)) {
  179. dayNum[1] = 29;
  180. }
  181. return dayNum[month - 1]
  182. },
  183. // 传时间获取月初月末时间
  184. _timeApi() {
  185. let startDate = this.year + '-' + this.month + '-' + this.day
  186. let startData = this._timeMonthStartApi(startDate + ' 00:00:00')
  187. this.start_time = startData.time_int
  188. let endData = this._timeMonthEndApi(startDate + ' 00:00:00')
  189. this.end_time = endData.time_int
  190. },
  191. _timeMonthStartApi(timeDate) {
  192. var date = new Date(timeDate);
  193. date.setDate(1);
  194. var month = parseInt(date.getMonth() + 1);
  195. var day = date.getDate();
  196. if (month < 10) {
  197. month = '0' + month
  198. }
  199. if (day < 10) {
  200. day = '0' + day
  201. }
  202. let timeDateStart = date.getFullYear() + '-' + month + '-' + day;
  203. let returnData = {
  204. time_type: 'start_time',
  205. time_int: Date.parse(timeDateStart + ' 00:00:00') / 1000,
  206. time_date: timeDateStart,
  207. year: date.getFullYear(),
  208. month: month,
  209. day: day,
  210. }
  211. return returnData
  212. },
  213. _timeMonthEndApi(timeDate) {
  214. var endDate = new Date(timeDate);
  215. var currentMonth = endDate.getMonth();
  216. var nextMonth = ++currentMonth;
  217. var nextMonthFirstDay = new Date(endDate.getFullYear(), nextMonth, 1);
  218. var oneDay = 1000 * 60 * 60 * 24;
  219. var lastTime = new Date(nextMonthFirstDay - oneDay);
  220. var endMonth = parseInt(lastTime.getMonth() + 1);
  221. var endDay = lastTime.getDate();
  222. if (endMonth < 10) {
  223. endMonth = '0' + endMonth
  224. }
  225. if (endDay < 10) {
  226. endDay = '0' + endDay
  227. }
  228. let timeDateEnd = endDate.getFullYear() + '-' + endMonth + '-' + endDay
  229. let returnData = {
  230. time_type: 'end_time',
  231. time_int: Date.parse(timeDateEnd + ' 00:00:00') / 1000,
  232. time_date: timeDateEnd,
  233. year: endDate.getFullYear(),
  234. month: endMonth,
  235. day: endDay,
  236. }
  237. return returnData
  238. },
  239. // 2020-08-01
  240. getweek(date) {
  241. let weeks = [];
  242. let dates = this.getDates(date);
  243. // let len = Math.ceil(dates.weeks.length / 7);
  244. // for (let i = 0; i < len; i++) {
  245. // weeks.push(dates.weeks.slice(i * 7, 7 + (i * 7)));
  246. // }
  247. // dates.weeks = weeks
  248. return dates;
  249. },
  250. getDates(date) {
  251. let dates = {
  252. year: date.Year,
  253. month: date.Month,
  254. firstDay: new Date(date.Year, date.Month, 1).getDay(),
  255. lastDay: new Date(date.Year, date.Month + 1, 0).getDay(),
  256. endDate: new Date(date.Year, date.Month + 1, 0).getDate(),
  257. weeks: []
  258. }
  259. //计算上月日期
  260. for (let i = dates.firstDay; i > 0; i--) {
  261. let dateinfo = {};
  262. dateinfo.date = new Date(date.Year, date.Month, -i + 1).getDate();
  263. dateinfo.isClick = false;
  264. dates.weeks.push(dateinfo);
  265. }
  266. //计算本月日期
  267. for (let i = 1; i <= new Date(date.Year, date.Month + 1, 0).getDate(); i++) {
  268. let nowisClick = true;
  269. let dateinfo = {};
  270. dateinfo.date = i;
  271. if (this.dateType == 'dateCustom') {
  272. nowisClick = false;
  273. if (this.dateCustom[dates.year] && this.dateCustom[dates.year][dates.month]) {
  274. for (let j = 0; j < this.dateCustom[dates.year][dates.month].length; j++) {
  275. if (this.dateCustom[dates.year][dates.month][j] == i) {
  276. nowisClick = true;
  277. }
  278. }
  279. }
  280. }
  281. dateinfo.isClick = nowisClick;
  282. dates.weeks.push(dateinfo);
  283. }
  284. //计算下月日期
  285. let len = 7 - dates.lastDay;
  286. if ((42 - dates.weeks.length) >= 7) {
  287. len += 7;
  288. }
  289. for (let i = 1; i < len; i++) {
  290. let dateinfo = {};
  291. dateinfo.date = i;
  292. dateinfo.isClick = false;
  293. dates.weeks.push(dateinfo);
  294. }
  295. return dates;
  296. },
  297. }
  298. }
  299. </script>
  300. <style lang="scss">
  301. .riliWrapper {
  302. width: 100%;
  303. // height: 499rpx;
  304. // background-color: #9bf;
  305. // padding: 0 5%;
  306. display: flex;
  307. justify-content: center;
  308. .riliWrapperBox {
  309. width: 100%;
  310. // height: 499rpx;
  311. // background-color: #9bf;
  312. }
  313. // 日历
  314. .signWrapperCalendar {
  315. margin-top: 30rpx;
  316. width: 100%;
  317. border: 3rpx solid #9bf;
  318. .signWrapperCalendarBox {
  319. width: 100%;
  320. // height: 499rpx;
  321. background: #FFFFFF;
  322. border-radius: 10rpx;
  323. // background-color: #9bf;
  324. .signWrapperCalendarBoxTop {
  325. width: 100%;
  326. height: 72rpx;
  327. // background-color: red;
  328. display: flex;
  329. align-items: center;
  330. justify-content: center;
  331. // border-bottom: 2rpx solid #EFEFEF;
  332. }
  333. .signWrapperCalendarBoxBit {
  334. width: 100%;
  335. height: 2rpx;
  336. border: 2rpx solid #EFEFEF;
  337. }
  338. .signWrapperCalendarBoxCenter {
  339. width: 100%;
  340. height: 425rpx;
  341. // background-color: #fff;
  342. // padding: 30rpx 30rpx;
  343. padding: 30rpx 0rpx;
  344. display: flex;
  345. justify-content: center;
  346. .signWrapperCalendarBoxCenterBox {
  347. width: 90%;
  348. height: 100%;
  349. // background-color: #9000FF;
  350. .signWrapperCalendarBoxCenterBoxTop {
  351. .week-number {
  352. background: #fff;
  353. padding: 0 1%;
  354. span {
  355. display: inline-block;
  356. text-align: center;
  357. height: 40px;
  358. line-height: 40px;
  359. width: 14.2857143%;
  360. color: #333333;
  361. }
  362. }
  363. }
  364. .signWrapperCalendarBoxCenterBoxFooter {
  365. width: 100%;
  366. // hei
  367. // background-color: red;
  368. .each-day {
  369. position: relative;
  370. display: inline-block;
  371. // display: flex;
  372. // justify-content: flex-start;
  373. text-align: center;
  374. vertical-align: middle;
  375. width: 14.28%;
  376. font-size: 25rpx;
  377. height: 50rpx;
  378. margin-top: 58rpx;
  379. padding-top: 4rpx;
  380. .eachDayBox {
  381. width: 100%;
  382. height: 100%;
  383. display: flex;
  384. align-items: center;
  385. justify-content: center;
  386. .eachDayBoxBox {
  387. // background: #FCEEE0;
  388. display: flex;
  389. align-items: center;
  390. justify-content: center;
  391. width: 50rpx;
  392. height: 50rpx;
  393. background: rgba(255,255,255,0.39);
  394. box-shadow: 0rpx 6rpx 12rpx rgba(0,0,0,0.11);
  395. border-radius: 50%;
  396. font-size: 32rpx;
  397. font-family: PingFang SC;
  398. font-weight: 500;
  399. // line-height: 44rpx;
  400. color: #323337;
  401. padding: 10rpx 14rpx;
  402. }
  403. }
  404. //
  405. .eachDayBoxCheck {
  406. width: 100%;
  407. height: 100%;
  408. display: flex;
  409. align-items: center;
  410. justify-content: center;
  411. .eachDayBoxBox {
  412. width: 50rpx;
  413. height: 50rpx;
  414. border-radius: 50%;
  415. display: flex;
  416. align-items: center;
  417. justify-content: center;
  418. // border: 2rpx solid #8FCCF1;
  419. background: rgba(255,255,255,0.39);
  420. box-shadow: 0rpx 6rpx 12rpx rgba(0,0,0,0.11);
  421. font-size: 32rpx;
  422. font-family: PingFang SC;
  423. font-weight: 500;
  424. // line-height: 44rpx;
  425. color: #323337;
  426. padding: 10rpx 14rpx;
  427. }
  428. }
  429. //
  430. }
  431. }
  432. }
  433. }
  434. }
  435. }
  436. }
  437. </style>