d-rili.vue 13 KB

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