123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288 |
- <!--
- * @Author: 廖明明
- * @Date: 2022-04-01 17:11:19
- * @LastEditors: 廖明明
- * @LastEditTime: 2022-04-21 13:16:48
- * @Description: 自定义弹窗组件
- -->
- <template>
- <view class="seiminModel seiminModel_mask" v-if="opts.isVisible">
- <view class="seiminModel_container animate__animated animate__fadeIn animate__faster">
- <!-- 标题 -->
- <view class="seiminModel_header">
- <text>{{ opts.title }}</text>
- <text class="seiminModel_countDown" v-if="
- nurseDeptSwitchTip < 0 || (nurseDeptSwitchTip > 0 && closeTime > 0)
- ">
- <text v-if="nurseDeptSwitchTip < 0">关闭</text>倒计时<text>{{ closeTime }}s</text>
- </text>
- </view>
- <!-- 动态二维码 -->
- <view class="seiminModel_content qrcode" v-if="opts.skin === 'qrcode'">
- <image class="w100" :src="nurseCodeImg" mode="widthFix"></image>
- <view class="qrcode_operate">
- <view class="refreshQRCode" @click="showNurseCode"> 刷新 </view>
- <view>{{ refreshQRCodeTime }}s</view>
- </view>
- </view>
- <!-- 正常弹窗 -->
- <view class="seiminModel_content" v-else>
- <!-- 图标 -->
- <view class="seiminModel_status">
- <text class="pda pda-shibai red" v-if="opts.icon === 'error'"></text>
- <text class="pda pda-duigou green" v-if="opts.icon === 'success'"></text>
- </view>
- <!-- 内容 -->
- <view class="seiminModel_txt" v-html="opts.content"></view>
- </view>
- <!-- 底部 -->
- <view class="seiminModel_footer" v-if="
- nurseDeptSwitchTip <= 0 || (nurseDeptSwitchTip > 0 && closeTime === 0)
- ">
- <view class="seiminModel_footer__btn" v-for="(btn, i) in opts.btns" :style="{
- flex: btn.flex,
- color: btn.textColor,
- }" @click="btn.click($event)" :key="i">{{ btn.name }}</view>
- </view>
- </view>
- </view>
- </template>
- <script>
- import {
- mapState
- } from "vuex";
- import {
- reqDeptCodes
- } from "../../request/api.js";
- export default {
- name: "seiminModel",
- data() {
- return {
- // 配置项
- opts: {},
- // 动态二维码定时器
- timer: null,
- // 动态二维码qrcode
- nurseCodeImg: "",
- // 动态二维码刷新间隔时长
- refreshQRCodeTime: 30,
- // 护士科室切换提示自动关闭设置(时长,单位秒)
- closeTime: 0,
- // 护士科室切换提示自动关闭设置(定时器,单位秒)
- timerCloseTime: null,
- };
- },
- computed: {
- ...mapState(["nurseDeptSwitchTip"]),
- ...mapState("user", ["loginInfo"]),
- },
- methods: {
- // 显示弹窗
- show(args = {}) {
- // 默认配置项
- let defaultOptions = {
- skin: "default", //弹窗风格(default|toast|qrcode|)
- isVisible: false, //是否显示弹窗
- title: "提示", //标题
- icon: "success", //图标(success|error|)
- content: "", //内容
- btns: [{
- name: "取消",
- textColor: "#666",
- flex: 1,
- click: this.close,
- },
- {
- name: "确定",
- textColor: "#666",
- flex: 1,
- click: this.close,
- },
- ], //弹窗按钮
- };
- // 根据弹窗风格修改默认配置项
- switch (args.skin) {
- case "toast":
- defaultOptions.btns = [{
- name: "知道了",
- textColor: "#49b856",
- flex: 1,
- click: this.close,
- }, ];
- break;
- }
- // 按钮合并参数
- if (Array.isArray(args.btns)) {
- let btns = [];
- args.btns.forEach((v, i) => {
- btns.push(Object.assign({}, defaultOptions.btns[i], v));
- });
- args.btns = btns;
- }
- // 合并配置
- this.opts = Object.assign({}, defaultOptions, args, {
- isVisible: true,
- });
- // 如果是动态二维码,则需要发起请求
- if (this.opts.skin === "qrcode") {
- this.showNurseCode();
- }
- },
- // 关闭弹窗
- close() {
- this.opts.isVisible = false;
- if (this.opts.skin === "qrcode") {
- clearInterval(this.timer);
- this.timer = null;
- }
- },
- // 科室动态二维码方法
- showNurseCode() {
- let deptId = this.loginInfo.user && this.loginInfo.user.dept.id;
- reqDeptCodes([deptId]).then((res) => {
- if (res.status == 200) {
- res["data"] = res["data"] || [];
- res["data"][0] = res["data"][0] || {};
- this.nurseCodeImg = res["data"][0].base64 || "";
- this.refreshQRCodeTime = res["data"][0].refreshQRCodeTime || 30;
- clearInterval(this.timer);
- this.timer = setInterval(() => {
- this.refreshQRCodeTime = Math.max(--this.refreshQRCodeTime, 0);
- if (this.refreshQRCodeTime === 0) {
- clearInterval(this.timer);
- this.showNurseCode();
- }
- }, 1000);
- } else {
- clearInterval(this.timer);
- uni.showToast({
- icon: "none",
- title: "获取数据失败",
- });
- }
- });
- },
- // 切换科室弹窗
- showChangeDept(options = {}) {
- this.show(options);
- // (1) 当用户设置为正数时,用户必须查看此窗体指定秒数。
- // (2) 当用户设置为负数时,用户可点击知道了也可倒计时自动关闭。
- // (3) 如果用户填写0则为无自动关闭和强制查看时间。
- if (this.nurseDeptSwitchTip === 0) {
- return;
- }
- this.closeTime = Math.abs(this.nurseDeptSwitchTip);
- clearInterval(this.timerCloseTime);
- this.timerCloseTime = setInterval(() => {
- this.closeTime = Math.max(--this.closeTime, 0);
- if (this.closeTime === 0) {
- if (this.nurseDeptSwitchTip < 0) {
- this.close();
- }
- clearInterval(this.timerCloseTime);
- }
- }, 1000);
- },
- },
- };
- </script>
- <style lang="scss" scoped>
- .seiminModel {
- font-size: 36rpx;
- color: #000;
- line-height: 50rpx;
- text-align: center;
- &.seiminModel_mask {
- background-color: rgba(0, 0, 0, 0.5);
- position: fixed;
- top: 0;
- right: 0;
- bottom: 0;
- left: 0;
- margin: auto;
- z-index: 9999;
- @include flex(center, center);
- .seiminModel_container {
- width: 560rpx;
- border-radius: 8rpx;
- background-color: #fff;
- display: flex;
- flex-direction: column;
- align-content: center;
- .seiminModel_status {
- margin-bottom: 35rpx;
- .pda {
- font-size: 138rpx;
- }
- }
- .seiminModel_header {
- height: 100rpx;
- position: relative;
- @include flex(center, center);
- .seiminModel_countDown {
- position: absolute;
- right: 26rpx;
- font-size: 28rpx;
- color: $defaultColor;
- }
- }
- .seiminModel_content {
- flex: 1;
- background-color: #f9fafb;
- margin: 0 36rpx 25rpx;
- border: 1px solid #e5e9ed;
- color: #333;
- padding: 76rpx 24rpx;
- @include numbersAndLettersNoWrap;
- &.qrcode {
- padding: 24rpx;
- font-size: 32rpx;
- color: #999;
- .qrcode_operate {
- @include flex(space-between, center);
- .refreshQRCode {
- color: $defaultColor;
- }
- }
- }
- }
- .seiminModel_footer {
- border-top: 1px solid #e5e5e5;
- height: 100rpx;
- color: #666;
- @include flex(center, center);
- .seiminModel_footer__btn {
- height: 100%;
- @include flex(center, center);
- position: relative;
- &::after {
- content: "";
- height: 86rpx;
- position: absolute;
- width: 1px;
- bottom: 0;
- right: 0;
- background-color: #dde1e5;
- }
- }
- }
- }
- }
- }
- </style>
|