123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389 |
- <template>
- <view class="showModel" v-show="disjunctor">
- <view class="showModel__wrap">
- <view class="showModel__header" v-if="title">
- {{ title }}
- <text v-if="operate.know == '知道了' && timerFlag">({{ time }})</text>
- </view>
- <view class="showModel__article" :class="{ p0: textareaFlag, p1: radioInspectionDistanceItem.length, p2: childrenDeptList.length }">
- <text
- v-if="icon"
- class="showModel__icon icon_transport"
- :class="[
- 'showModel__icon--' + icon,
- { 'transport-duigou': icon === 'success' },
- { 'transport-shibai': icon === 'error' },
- { 'transport-wenhao': icon === 'warn' },
- ]"
- ></text>
- <view v-if="content" class="showModel__content" @click="tel()" v-html="content"></view>
- <view v-if="info" class="showModel__info">{{ info }}</view>
- <view class="specialCloseFlag" v-if="textareaFlag">
- <textarea
- style="width: 100%"
- placeholder="请输入10~100个文字方可提交!"
- maxlength="100"
- @input="textareaInput"
- />
- </view>
- <view class="radio-wrap" v-if="radioItem.length">
- <radio-group @change="radioChange">
- <view v-for="(item, index) in radioItem" :key="item.qrcode" class="radio-item">
- <label>
- <radio :value="item.qrcode" :checked="index === 0" />
- <text>{{ item.deptName }}</text>
- </label>
- </view>
- </radio-group>
- </view>
- <view class="radio-wrap" v-if="radioInspectionDistanceItem.length">
- <radio-group @change="radioChange">
- <view v-for="(item, index) in radioInspectionDistanceItem" :key="item.id" class="radio-item">
- <label>
- <radio :value="item.id" />
- <text>{{ item.inspectMode }}</text>
- </label>
- </view>
- </radio-group>
- </view>
- <view class="childrenDeptList" v-if="childrenDeptList.length">
- <view @click="clickHandler(item)" v-for="(item, index) in childrenDeptList" :key="item.id" class="childrenDeptItem">{{ item.dept }}</view>
- </view>
- </view>
- <view class="showModel__footer">
- <view
- v-if="operate.ok"
- class="showModel__ok"
- @click="ok"
- hover-class="seimin-btn-hover"
- >{{ operate.ok || "" }}</view
- >
- <view
- v-if="operate.no"
- class="showModel__ok"
- @click="no"
- hover-class="seimin-btn-hover"
- >{{ operate.no || "" }}</view
- >
- <view
- v-if="operate.cancel"
- class="showModel__cancel"
- @click="cancel"
- hover-class="seimin-btn-hover"
- >{{ operate.cancel || "" }}</view
- >
- <view
- v-if="operate.know"
- class="showModel__know"
- @click="know"
- hover-class="seimin-btn-hover"
- >{{ operate.know || "" }}</view
- >
- <view
- v-if="operate.know && timerFlag"
- class="showModel__know"
- @click="cancelTimer"
- hover-class="seimin-btn-hover"
- >取消自动关闭</view
- >
- </view>
- </view>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- time: 5, //5秒后自动关闭
- timer: null, //5秒后自动关闭,定时器
- timerFlag: true, //是否显示取消自动关闭按钮
- };
- },
- watch: {
- disjunctor(newValue) {
- if (newValue && this.operate.know == "知道了") {
- this.time = 5;
- this.timerFlag = true;
- this.timer = setInterval(() => {
- this.time--;
- if (this.time <= 0) {
- clearInterval(this.timer);
- this.know();
- }
- }, 1000);
- }
- },
- },
- props: {
- // 显示隐藏
- disjunctor: {
- type: Boolean,
- default: false,
- },
- // 标题
- title: {
- type: String,
- default: "提示",
- },
- // 图标
- icon: {
- type: String,
- default: "success",
- },
- // 内容
- content: {
- type: String,
- default: "",
- },
- // 说明
- info: {
- type: String,
- default: "",
- },
- // 拨打电话
- phone: {
- type: String,
- default: "",
- },
- // 特殊情况关闭原因
- textareaFlag: {
- type: Boolean,
- default: false,
- },
- // 单选框选项
- radioItem: {
- type: Array,
- default: () => {
- return [];
- },
- },
- // 单选框选项-陪检方式
- radioInspectionDistanceItem: {
- type: Array,
- default: () => {
- return [];
- },
- },
- // 子科室列表
- childrenDeptList: {
- type: Array,
- default: () => {
- return [];
- },
- },
- // 操作按钮文字
- operate: {
- type: Object,
- default: () => {
- return {
- know: "知道了",
- };
- },
- },
- },
- methods: {
- clickHandler(item){
- console.log(item);
- this.$emit('ok', item)
- },
- // 单选框选中
- radioChange(item){
- this.$emit('radioChange',item.target.value)
- },
- // 输入文字
- textareaInput(e) {
- this.$emit("textareaInput", e.detail.value);
- },
- // 确定
- ok() {
- this.$emit("ok");
- },
- // 否
- no() {
- this.$emit("no");
- },
- // 取消
- cancel() {
- this.$emit("cancel");
- },
- // 知道了
- know() {
- clearInterval(this.timer);
- this.$emit("know");
- },
- // 取消自动关闭
- cancelTimer() {
- this.timerFlag = false;
- clearInterval(this.timer);
- },
- // 拨打电话
- tel() {
- if (this.phone) {
- uni.makePhoneCall({
- phoneNumber: this.phone,
- });
- }
- },
- },
- };
- </script>
- <style lang="less" scoped>
- .showModel {
- position: fixed;
- left: 0;
- right: 0;
- top: 0;
- bottom: 0;
- background-color: rgba(0, 0, 0, 0.2);
- z-index: 999999;
- .showModel__wrap {
- width: 560rpx;
- position: absolute;
- left: 50%;
- top: 50%;
- transform: translate(-50%, -50%);
- background-color: #fff;
- border-radius: 12rpx;
- .showModel__header {
- font-size: 36rpx;
- color: #000;
- height: 84rpx;
- display: flex;
- justify-content: center;
- align-items: center;
- }
- .showModel__article {
- color: #000;
- margin: 0 auto 25rpx;
- width: 488rpx;
- padding: 60rpx 16rpx;
- background-color: rgb(249, 250, 251);
- border: 2rpx solid rgb(229, 233, 237);
- border-radius: 12rpx;
- box-sizing: border-box;
- display: flex;
- flex-direction: column;
- justify-content: center;
- align-items: center;
- text-align: justify;
- &.p0 {
- padding: 0;
- }
-
- &.p1 {
- text-align: left;
- }
-
- &.p2 {
- text-indent: 2em;
- }
-
- .childrenDeptList{
- width: 100%;
- max-height: 50vh;
- overflow-y: auto;
- .childrenDeptItem{
- background-color: #fff;
- height: 80rpx;
- line-height: 80rpx;
- border-radius: 80rpx;
- color: #49b856;
- margin-top: 24rpx;
- white-space: nowrap;
- overflow: hidden;
- text-overflow: ellipsis;
- }
- }
- .showModel__icon {
- font-size: 138rpx;
- margin-bottom: 32rpx;
- &.showModel__icon--success {
- color: rgb(52, 179, 73);
- }
- &.showModel__icon--warn {
- color: rgb(245, 165, 35);
- }
- &.showModel__icon--error {
- color: rgb(255, 58, 82);
- }
- }
- .showModel__content {
- font-size: 36rpx;
- word-break: break-all;
- }
- .showModel__info {
- font-size: 32rpx;
- color: rgb(102, 102, 102);
- }
- .specialCloseFlag {
- width: 90%;
- height: 100%;
- padding: 16rpx;
- }
- .radio-wrap{
- .radio-item{
- margin-top: 16rpx;
- /deep/ .uni-radio-input-checked{
- background-color: #49b856!important;
- border-color: #49b856!important;
- }
- }
- }
- }
- .showModel__footer {
- box-sizing: border-box;
- height: 100rpx;
- border-top: 2rpx solid rgb(229, 233, 237);
- display: flex;
- align-items: center;
- view {
- height: 100%;
- display: flex;
- align-items: center;
- justify-content: center;
- font-size: 36rpx;
- color: rgb(102, 102, 102);
- position: relative;
- & ~ view::before {
- content: "";
- position: absolute;
- left: 0;
- bottom: 0;
- width: 2rpx;
- height: 87rpx;
- background-color: rgb(229, 233, 237);
- }
- }
- .showModel__ok {
- flex: 1;
- color: rgb(73, 184, 86);
- }
- .showModel__cancel {
- flex: 1;
- }
- .showModel__know {
- flex: 1;
- color: rgb(73, 184, 86);
- }
- }
- }
- }
- </style>
|