seiminModel.vue 23 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737
  1. <!--
  2. * @Author: 廖明明
  3. * @Date: 2022-04-01 17:11:19
  4. * @LastEditors: 廖明明
  5. * @LastEditTime: 2022-04-21 13:16:48
  6. * @Description: 自定义弹窗组件
  7. -->
  8. <template>
  9. <view class="seiminModel seiminModel_mask" v-if="opts.isVisible">
  10. <view class="seiminModel_container animate__animated animate__fadeIn animate__faster">
  11. <!-- 标题 -->
  12. <view class="seiminModel_header" :class="{noTitle:!opts.title}">
  13. <text>{{ opts.title }}</text>
  14. <text class="seiminModel_countDown" v-if="
  15. (nurseDeptSwitchTip < 0 || (nurseDeptSwitchTip > 0 && closeTime > 0))&&isCheckDept
  16. ">
  17. <text v-if="nurseDeptSwitchTip < 0">关闭</text>倒计时<text>{{ closeTime }}s</text>
  18. </text>
  19. </view>
  20. <!-- 动态二维码 -->
  21. <view class="seiminModel_content qrcode" v-if="opts.skin === 'qrcode'">
  22. <image class="w100 qrcode_img" :src="nurseCodeImg" mode="widthFix"></image>
  23. <view class="qrcode_operate">
  24. <view class="refreshQRCode" @click="showNurseCode"> 刷新 </view>
  25. <view>{{ refreshQRCodeTime }}s</view>
  26. </view>
  27. </view>
  28. <!-- 加急 -->
  29. <view class="seiminModel_content urgent" v-else-if="opts.skin === 'urgent'">
  30. <view class="urgent_txt" v-html="opts.content"></view>
  31. <textarea :focus="true" class="urgent_textarea" auto-height :maxlength="100"
  32. :placeholder-style="placeholderStyle" placeholder="请填写加急原因" v-model="urgentTextArea" />
  33. </view>
  34. <!-- 评价 -->
  35. <view class="seiminModel_content evaluate" v-else-if="opts.skin === 'evaluate'">
  36. <view class="evaluate_txt" v-html="opts.content"></view>
  37. <view class="evaluate_list">
  38. <view class="evaluate_item">
  39. <text class="evaluate_label">星级:</text>
  40. <view class="evaluate_icons">
  41. <text class="pda" :class="star" v-for="(star,i) in stars" :key="i" @click="clickStar(i)"></text>
  42. </view>
  43. </view>
  44. <view class="evaluate_item">
  45. <text class="evaluate_label">评级:</text>
  46. <textarea :focus="true" class="evaluate_textarea" auto-height :maxlength="100"
  47. :placeholder-style="placeholderStyle" placeholder="请输入..." v-model="evaluateTextArea" />
  48. </view>
  49. </view>
  50. </view>
  51. <!-- 预约时间 -->
  52. <view class="seiminModel_content yyDate" v-else-if="opts.skin === 'yyDate'">
  53. <view class="yyDate_txt" v-html="opts.content"></view>
  54. <view class="yyDate_date_time">
  55. <picker mode="multiSelector" @click.native="clickDate" @columnchange="columnchangeDate($event)"
  56. @change="changeDate($event)" :value="dateIndex" :range="dateOptions">
  57. <view class="yyDate_date"><text>{{dateVal}}</text><text class="pda pda-icon"></text></view>
  58. </picker>
  59. <picker mode="multiSelector" @click.native="clickTime" @columnchange="columnchangeTime($event)"
  60. @change="changeTime($event)" :value="timeIndex" :range="timeOptions">
  61. <view class="yyDate_time"><text>{{timeVal}}</text><text class="pda pda-shouye8"></text></view>
  62. </picker>
  63. </view>
  64. <view class="yyDate_tips red" v-if="!dateVal">
  65. 请选择日期
  66. </view>
  67. <view class="yyDate_tips red" v-else-if="!timeVal">
  68. 请选择时间
  69. </view>
  70. <view class="yyDate_nextDay" @click="nextDay" v-if="dateVal">
  71. 下一日
  72. </view>
  73. </view>
  74. <!-- 正常弹窗 -->
  75. <view class="seiminModel_content" v-else>
  76. <!-- 图标 -->
  77. <view class="seiminModel_status">
  78. <text class="pda pda-shibai red" v-if="opts.icon === 'error'"></text>
  79. <text class="pda pda-wenhao yellow" v-if="opts.icon === 'warn'"></text>
  80. <text class="pda pda-duigou green" v-if="opts.icon === 'success'"></text>
  81. </view>
  82. <!-- 内容 -->
  83. <view class="seiminModel_txt" v-html="opts.content"></view>
  84. </view>
  85. <!-- 底部 -->
  86. <view class="seiminModel_footer" v-if="
  87. nurseDeptSwitchTip <= 0 || (nurseDeptSwitchTip > 0 && closeTime === 0)
  88. ">
  89. <view class="seiminModel_footer__btn" v-for="(btn, i) in opts.btns" :style="{
  90. flex: btn.flex,
  91. color: btn.textColor,
  92. }" @click="btn.click($event)" :key="i">{{ btn.name }}</view>
  93. </view>
  94. </view>
  95. </view>
  96. </template>
  97. <script>
  98. import {
  99. mapState
  100. } from "vuex";
  101. import {
  102. reqDeptCodes
  103. } from "../../request/api.js";
  104. import {
  105. generateArray
  106. } from '../../utils/index.js';
  107. import {
  108. format,
  109. endOfMonth,
  110. addDays,
  111. } from 'date-fns';
  112. export default {
  113. name: "seiminModel",
  114. props: {
  115. // 其他数据
  116. otherData: {
  117. type: Object,
  118. default: () => ({})
  119. }
  120. },
  121. data() {
  122. return {
  123. isCheckDept:false,//是否是切换科室
  124. dateOptions: [
  125. [],
  126. [],
  127. []
  128. ],
  129. dateIndex: [0, 0, 0],
  130. dateVal: '',
  131. timeOptions: [
  132. [],
  133. []
  134. ],
  135. timeIndex: [0, 0],
  136. timeVal: '',
  137. // 配置项
  138. opts: {},
  139. // 动态二维码定时器
  140. timer: null,
  141. // 动态二维码qrcode
  142. nurseCodeImg: "",
  143. // 动态二维码刷新间隔时长
  144. refreshQRCodeTime: 30,
  145. // 护士科室切换提示自动关闭设置(时长,单位秒)
  146. closeTime: 0,
  147. // 护士科室切换提示自动关闭设置(定时器,单位秒)
  148. timerCloseTime: null,
  149. // 加急原因
  150. urgentTextArea: '',
  151. // 加急原因的placeholder样式
  152. placeholderStyle: 'color:#999;padding:18rpx;',
  153. // 星级
  154. stars: [],
  155. // 评价内容
  156. evaluateTextArea: '',
  157. };
  158. },
  159. onUnload() {
  160. if (this.timerCloseTime) {
  161. clearInterval(this.timerCloseTime);
  162. this.timerCloseTime = null;
  163. }
  164. if (this.timer) {
  165. clearInterval(this.timer);
  166. this.timer = null;
  167. }
  168. },
  169. computed: {
  170. ...mapState('other', ["nurseDeptSwitchTip"]),
  171. ...mapState("login", ["loginInfo"]),
  172. },
  173. methods: {
  174. // 下一日
  175. nextDay() {
  176. let arr = this.dateVal.split('-');
  177. let d_year = Number(arr[0]);
  178. let d_month = Number(arr[1]) - 1;
  179. let d_day = Number(arr[2]);
  180. let date = addDays(new Date(d_year, d_month, d_day, 0, 0, 0), 1);
  181. let year = format(date, 'yyyy');
  182. let month = format(date, 'MM');
  183. let day = format(date, 'dd');
  184. let year_i = this.dateOptions[0].findIndex(v => v === year);
  185. let month_i = this.dateOptions[1].findIndex(v => v === month);
  186. let day_i = this.dateOptions[2].findIndex(v => v === day);
  187. console.log(year_i, month_i, day_i, this.dateOptions, year, month, day)
  188. this.dateIndex = [year_i, month_i, day_i];
  189. this.dateVal = format(date, 'yyyy-MM-dd');
  190. },
  191. // 点击日期
  192. clickDate() {
  193. if (!this.dateVal) {
  194. this.dateIndex = [0, 0, 0];
  195. }
  196. },
  197. // 点击时间
  198. clickTime() {
  199. console.log(this.timeVal)
  200. if (!this.timeVal) {
  201. this.timeIndex = [0, 0];
  202. }
  203. let now = new Date();
  204. let year = now.getFullYear();
  205. let month = now.getMonth();
  206. let day = now.getDate();
  207. let hour = now.getHours();
  208. let minute = now.getMinutes();
  209. let second = now.getSeconds();
  210. if (this.dateVal) {
  211. let arr = this.dateVal.split('-');
  212. let d_year = Number(arr[0]);
  213. let d_month = Number(arr[1]) - 1;
  214. let d_day = Number(arr[2]);
  215. let c_d_day = Number(format(endOfMonth(new Date(d_year, d_month, d_day, 0, 0, 0)), 'dd'));
  216. if (year != d_year || month != d_month || day != d_day) {
  217. this.timeOptions = [generateArray(0, 23), ['00', '30']];
  218. }
  219. if (this.timeVal) {
  220. let arr = this.timeVal.split(':');
  221. let i1 = this.timeOptions[0].findIndex(v => v === arr[0]);
  222. console.log(i1)
  223. let i2 = this.timeOptions[1].length > 1 ? 30 : 0;
  224. if (i1) {
  225. this.timeOptions[1] = ['00', '30'];
  226. }
  227. this.timeIndex = [i1, i2];
  228. }
  229. }
  230. },
  231. // 滚动日期picker
  232. columnchangeDate(e) {
  233. console.log(e.detail);
  234. console.log(this.dateOptions, this.dateIndex);
  235. const {
  236. column, //列数
  237. value, //索引
  238. } = e.detail;
  239. let now = new Date();
  240. let year = now.getFullYear();
  241. let month = now.getMonth();
  242. let day = now.getDate();
  243. let hour = now.getHours();
  244. let minute = now.getMinutes();
  245. let second = now.getSeconds();
  246. let c_day = Number(format(endOfMonth(new Date(year, month, day, 0, 0, 0)), 'dd'));
  247. if (column === 0) {
  248. // 年
  249. if (year != this.dateOptions[column][value]) {
  250. this.dateOptions[1] = generateArray(1, 12);
  251. this.dateOptions[2] = generateArray(1, c_day);
  252. } else {
  253. this.dateOptions[1] = generateArray(month + 1, 12);
  254. this.dateOptions[2] = generateArray(day, c_day);
  255. }
  256. this.dateIndex = [value, 0, 0];
  257. }
  258. if (column === 1) {
  259. // 月
  260. if ((month + 1) != this.dateOptions[column][value]) {
  261. this.dateOptions[2] = generateArray(1, c_day);
  262. } else {
  263. this.dateOptions[2] = generateArray(day, c_day);
  264. }
  265. this.dateIndex = [this.dateIndex[0], value, 0];
  266. }
  267. },
  268. // 滚动时间picker
  269. columnchangeTime(e) {
  270. console.log(e.detail);
  271. console.log(this.timeOptions);
  272. const {
  273. column, //列数
  274. value, //索引
  275. } = e.detail;
  276. let now = new Date();
  277. let year = now.getFullYear();
  278. let month = now.getMonth();
  279. let day = now.getDate();
  280. let hour = now.getHours();
  281. let minute = now.getMinutes();
  282. let second = now.getSeconds();
  283. if (column === 0) {
  284. // 月份
  285. if (hour != this.timeOptions[column][value]) {
  286. this.timeOptions[1] = ['00', '30'];
  287. }
  288. }
  289. },
  290. // 修改日期
  291. changeDate(e) {
  292. console.log(e.target.value);
  293. this.dateIndex = e.target.value;
  294. this.timeVal = '';
  295. this.dateVal =
  296. `${this.dateOptions[0][this.dateIndex[0]]}-${this.dateOptions[1][this.dateIndex[1]]}-${this.dateOptions[2][this.dateIndex[2]]}`;
  297. },
  298. // 修改时间
  299. changeTime(e) {
  300. console.log(e.target.value);
  301. this.timeIndex = e.target.value;
  302. this.timeVal = `${this.timeOptions[0][this.timeIndex[0]]}:${this.timeOptions[1][this.timeIndex[1]]}`;
  303. },
  304. // 日期时间的可选范围
  305. dateTimeScope() {
  306. let now = new Date();
  307. let year = Number(format(now, 'yyyy'));
  308. let month = Number(format(now, 'MM'));
  309. let day = Number(format(now, 'dd'));
  310. let hour = Number(format(now, 'HH'));
  311. let minute = Number(format(now, 'mm'));
  312. let c_day = Number(format(endOfMonth(now), 'dd'));
  313. console.log(year, month, day, hour, minute);
  314. // 判断分钟
  315. if (minute >= 0 && minute < 30) {
  316. this.timeOptions = [generateArray(hour, 23), ['30']];
  317. this.dateOptions = [
  318. generateArray(year, year + 1),
  319. generateArray(month, 12),
  320. generateArray(day, c_day)
  321. ];
  322. } else {
  323. // 跨分钟
  324. this.timeOptions = [generateArray(hour == 23 ? 0 : hour + 1, 23), ['00', '30']];
  325. // 跨小时
  326. if (hour == 23) {
  327. // 跨日
  328. if (day == c_day) {
  329. // 跨月
  330. if (month == 12) {
  331. // 跨月
  332. this.dateOptions = [
  333. generateArray(year + 1, year + 1),
  334. generateArray(0, 12),
  335. generateArray(0, c_day)
  336. ]
  337. } else {
  338. this.dateOptions = [
  339. generateArray(year, year + 1),
  340. generateArray(month + 1, 12),
  341. generateArray(0, c_day)
  342. ]
  343. }
  344. } else {
  345. this.dateOptions = [
  346. generateArray(year, year + 1),
  347. generateArray(month, 12),
  348. generateArray(day + 1, c_day)
  349. ]
  350. }
  351. } else {
  352. this.dateOptions = [
  353. generateArray(year, year + 1),
  354. generateArray(month, 12),
  355. generateArray(day, c_day)
  356. ];
  357. }
  358. }
  359. },
  360. // 显示弹窗
  361. show(args = {}) {
  362. // 默认配置项
  363. let defaultOptions = {
  364. skin: "default", //弹窗风格(default|toast|qrcode|)
  365. isVisible: false, //是否显示弹窗
  366. title: "提示", //标题
  367. icon: "success", //图标(success|error|warn|)
  368. content: "", //内容
  369. btns: [{
  370. name: "取消",
  371. textColor: "#666",
  372. flex: 1,
  373. click: this.close,
  374. },
  375. {
  376. name: "确认",
  377. textColor: "#49B856",
  378. flex: 1,
  379. click: this.close,
  380. },
  381. ], //弹窗按钮
  382. };
  383. // 根据弹窗风格修改默认配置项
  384. switch (args.skin) {
  385. case "toast":
  386. defaultOptions.btns = [{
  387. name: "知道了",
  388. textColor: "#49b856",
  389. flex: 1,
  390. click: this.close,
  391. }, ];
  392. break;
  393. }
  394. // 按钮合并参数
  395. if (Array.isArray(args.btns)) {
  396. let btns = [];
  397. args.btns.forEach((v, i) => {
  398. btns.push(Object.assign({}, defaultOptions.btns[i], v));
  399. });
  400. args.btns = btns;
  401. }
  402. // 合并配置
  403. this.opts = Object.assign({}, defaultOptions, args, {
  404. isVisible: true,
  405. });
  406. if (this.opts.skin === "qrcode") {
  407. // 如果是动态二维码,则需要发起请求
  408. this.showNurseCode();
  409. } else if (this.opts.skin === 'evaluate') {
  410. // 如果是评价弹窗,则默认选中五个笑脸
  411. this.stars = ['pda-haoping', 'pda-haoping', 'pda-haoping', 'pda-haoping', 'pda-haoping'];
  412. } else if (this.opts.skin === 'yyDate') {
  413. console.log(this.otherData);
  414. // 回显
  415. if (this.otherData.date) {
  416. //回显日期
  417. this.dateVal = format(this.otherData.timestamp, 'yyyy-MM-dd');
  418. }
  419. if (this.otherData.time) {
  420. //回显日期
  421. this.timeVal = format(this.otherData.timestamp, 'HH:mm');
  422. }
  423. // 日期时间的可选范围
  424. this.dateTimeScope();
  425. }
  426. },
  427. // 关闭弹窗
  428. close() {
  429. this.opts.isVisible = false;
  430. if (this.opts.skin === "qrcode") {
  431. clearInterval(this.timer);
  432. this.timer = null;
  433. }
  434. },
  435. // 科室动态二维码方法
  436. showNurseCode() {
  437. let deptId = this.loginInfo.user && this.loginInfo.user.dept.id;
  438. reqDeptCodes([deptId]).then((res) => {
  439. if (res.status == 200) {
  440. res["data"] = res["data"] || [];
  441. res["data"][0] = res["data"][0] || {};
  442. this.nurseCodeImg = res["data"][0].base64 || "";
  443. this.refreshQRCodeTime = res["data"][0].refreshQRCodeTime || 30;
  444. clearInterval(this.timer);
  445. this.timer = setInterval(() => {
  446. this.refreshQRCodeTime = Math.max(--this.refreshQRCodeTime, 0);
  447. if (this.refreshQRCodeTime === 0) {
  448. clearInterval(this.timer);
  449. this.showNurseCode();
  450. }
  451. }, 1000);
  452. } else {
  453. clearInterval(this.timer);
  454. uni.showToast({
  455. icon: "none",
  456. title: "获取数据失败",
  457. });
  458. }
  459. });
  460. },
  461. // 切换科室弹窗
  462. showChangeDept(options = {}) {
  463. this.isCheckDept = true;
  464. this.show(options);
  465. // (1) 当用户设置为正数时,用户必须查看此窗体指定秒数。
  466. // (2) 当用户设置为负数时,用户可点击知道了也可倒计时自动关闭。
  467. // (3) 如果用户填写0则为无自动关闭和强制查看时间。
  468. if (this.nurseDeptSwitchTip === 0) {
  469. return;
  470. }
  471. this.closeTime = Math.abs(this.nurseDeptSwitchTip);
  472. clearInterval(this.timerCloseTime);
  473. this.timerCloseTime = setInterval(() => {
  474. this.closeTime = Math.max(--this.closeTime, 0);
  475. if (this.closeTime === 0) {
  476. if (this.nurseDeptSwitchTip < 0) {
  477. this.close();
  478. }
  479. clearInterval(this.timerCloseTime);
  480. }
  481. }, 1000);
  482. },
  483. // 选择星级
  484. clickStar(index) {
  485. for (let i = 0; i < this.stars.length; i++) {
  486. this.$set(this.stars, i, i > index ? 'pda-haoping1' : 'pda-haoping');
  487. }
  488. },
  489. },
  490. };
  491. </script>
  492. <style lang="scss" scoped>
  493. .seiminModel {
  494. font-size: 36rpx;
  495. color: #000;
  496. line-height: 50rpx;
  497. text-align: center;
  498. &.seiminModel_mask {
  499. background-color: rgba(0, 0, 0, 0.5);
  500. position: fixed;
  501. top: 0;
  502. right: 0;
  503. bottom: 0;
  504. left: 0;
  505. margin: auto;
  506. z-index: 999;
  507. @include flex(center, center);
  508. .seiminModel_container {
  509. width: 560rpx;
  510. border-radius: 8rpx;
  511. background-color: #fff;
  512. display: flex;
  513. flex-direction: column;
  514. align-content: center;
  515. .seiminModel_status {
  516. margin-bottom: 35rpx;
  517. .pda {
  518. font-size: 138rpx;
  519. }
  520. }
  521. .seiminModel_header {
  522. height: 100rpx;
  523. position: relative;
  524. @include flex(center, center);
  525. &.noTitle {
  526. height: 40rpx;
  527. }
  528. .seiminModel_countDown {
  529. position: absolute;
  530. right: 26rpx;
  531. font-size: 28rpx;
  532. color: $defaultColor;
  533. }
  534. }
  535. .seiminModel_content {
  536. flex: 1;
  537. background-color: #f9fafb;
  538. margin: 0 36rpx 25rpx;
  539. color: #333;
  540. padding: 76rpx 24rpx;
  541. @include border;
  542. @include numbersAndLettersNoWrap;
  543. // 动态二维码
  544. &.qrcode {
  545. padding: 24rpx;
  546. font-size: 32rpx;
  547. color: #999;
  548. .qrcode_img {
  549. height: 464rpx;
  550. }
  551. .qrcode_operate {
  552. @include flex(space-between, center);
  553. .refreshQRCode {
  554. color: $defaultColor;
  555. }
  556. }
  557. }
  558. // 加急
  559. &.urgent {
  560. padding: 0;
  561. .urgent_txt {
  562. font-size: 28rpx;
  563. color: #666;
  564. line-height: 40rpx;
  565. padding: 24rpx;
  566. @include border(bottom);
  567. }
  568. .urgent_textarea {
  569. width: 440rpx;
  570. margin: 24rpx;
  571. min-height: 212rpx;
  572. background: #FFFFFF;
  573. border-radius: 2rpx;
  574. text-align: left;
  575. @include border;
  576. ::v-deep .uni-textarea-textarea {
  577. padding: 18rpx;
  578. }
  579. }
  580. }
  581. // 评价
  582. &.evaluate {
  583. padding: 0;
  584. .evaluate_txt {
  585. font-size: 28rpx;
  586. color: #666;
  587. line-height: 40rpx;
  588. padding: 24rpx 0;
  589. @include border(bottom);
  590. }
  591. .evaluate_list {
  592. padding: 20rpx 34rpx;
  593. .evaluate_item {
  594. font-size: 34rpx;
  595. color: #666;
  596. margin-top: 10rpx;
  597. @include flex;
  598. .evaluate_label {}
  599. .evaluate_icons {
  600. flex: 1;
  601. @include flex;
  602. .pda {
  603. font-size: 40rpx;
  604. margin-right: 10rpx;
  605. &.pda-haoping {
  606. color: $defaultColor;
  607. }
  608. }
  609. }
  610. .evaluate_textarea {
  611. flex: 1;
  612. min-height: 212rpx;
  613. background: #FFFFFF;
  614. border-radius: 2rpx;
  615. text-align: left;
  616. @include border;
  617. ::v-deep .uni-textarea-textarea {
  618. padding: 18rpx;
  619. }
  620. }
  621. }
  622. }
  623. }
  624. // 预约时间
  625. &.yyDate {
  626. padding: 56rpx 0 82rpx;
  627. .yyDate_txt {
  628. font-size: 28rpx;
  629. color: #666;
  630. padding-bottom: 20rpx;
  631. @include border(bottom);
  632. }
  633. .yyDate_date_time {
  634. font-size: 32rpx;
  635. color: #333;
  636. @include flex;
  637. .pda {
  638. font-size: 44rpx;
  639. }
  640. .yyDate_date {
  641. width: 260rpx;
  642. height: 66rpx;
  643. margin: 0 14rpx;
  644. padding: 0 8rpx;
  645. background-color: #fff;
  646. @include border(all, #8E9D9E);
  647. @include flex(space-between, center);
  648. }
  649. .yyDate_time {
  650. width: 164rpx;
  651. height: 66rpx;
  652. margin: 0 14rpx;
  653. padding: 0 8rpx;
  654. background-color: #fff;
  655. @include border(all, #8E9D9E);
  656. @include flex(space-between, center);
  657. }
  658. }
  659. .yyDate_nextDay {
  660. margin-top: 42rpx;
  661. color: $defaultColor;
  662. text-align: left;
  663. padding: 0 14rpx;
  664. text-decoration: underline;
  665. }
  666. .yyDate_tips {
  667. padding: 8rpx;
  668. font-size: 28rpx;
  669. text-align: left;
  670. }
  671. }
  672. }
  673. .seiminModel_footer {
  674. height: 100rpx;
  675. color: #666;
  676. @include border(top);
  677. @include flex(center, center);
  678. .seiminModel_footer__btn {
  679. height: 100%;
  680. position: relative;
  681. @include flex(center, center);
  682. &::after {
  683. content: "";
  684. height: 86rpx;
  685. position: absolute;
  686. width: 1px;
  687. bottom: 0;
  688. right: 0;
  689. background-color: #dde1e5;
  690. }
  691. }
  692. }
  693. }
  694. }
  695. }
  696. </style>