# 弹窗组件
请选择企业
在组件中需配置:
属性visible
是否显示弹窗
title
:弹窗标题(默认:温馨提示)
@update:visible
右上删除或取消事件
isShowDialogDrag
属性可以取消头部拖拽功能
ElementUI
中el-dialog
的属性皆可用(如:close-on-click-modal
属性——点击空白区域是否关闭弹窗)
<template>
<t-layout-page>
<t-layout-page-item>
<el-button type="danger" @click="openDialog">基本弹窗</el-button>
</t-layout-page-item>
<t-dialog
title="请选择企业"
width="40%"
class="ent-choose"
:visible="dialogSelectEnt"
@update:visible="cancel"
>
<div class="select-ent-box flex-box flex-col">
<div
style="width:100%;"
v-for="item in entList"
:key="item.id"
class="radio-line-item t-overflow-hidden"
:class="entSelectType===item.id?'radioSelected':''"
@click="selectType(item)"
>
<i v-if="entSelectType===item.id" class="el-icon-check icon-check"></i>
{{item.entName}}
<span style="color:#999;">(企业编码:{{item.entCode}})</span>
</div>
</div>
<div slot="footer" class="dialog-footer">
<el-button @click="dialogSelectEnt = false">取 消</el-button>
<el-button type="primary" @click="dialogSelectEnt = false">确 定</el-button>
</div>
</t-dialog>
</t-layout-page>
</template>
<script>
export default {
data() {
return {
dialogSelectEnt: false,
entSelectType: '',
entList: [{ 'id': 107, 'entName': '上海某某电子商务有限公司', 'entCode': '60003627', 'entType': null, 'entIdPcloud': '717380413542105088' }]
}
},
mounted() {
this.entSelectType = this.entList[0].id
},
// 方法
methods: {
openDialog() {
this.dialogSelectEnt = true
},
// 选择企业
selectType(item) {
this.entSelectType = item.id
this.dialogSelectEnt = false
},
cancel() {
this.dialogSelectEnt = false
}
}
}
</script>
显示代码
wocwin微信二维码
# 短信验证
手机验证
在组件中需配置:
属性phoneVisible
是否显示弹窗
legalPhone
:展示的手机号码
personTxt
展示谁的手机号码
@update:visible
右上删除或取消事件
新增v-dialogDrag
指令可按头部拖拽弹窗;
ElementUI
中el-dialog
的属性皆可用(如:close-on-click-modal
属性——点击空白区域是否关闭弹窗)
<template>
<t-layout-page>
<t-layout-page-item>
<el-button type="danger" @click="openDialog">短信验证弹窗</el-button>
</t-layout-page-item>
<t-phone
:phoneVisible="phoneVisible"
:legalPhone="legalPhone"
@update:visible="phoneHide"
:personTxt="personTxt"
@phoneConfirm="phoneConfirm"
/>
</t-layout-page>
</template>
<script>
export default {
data() {
return {
phoneVisible: false,
personTxt: '法人',
legalPhone: '13888888888' // 法人手机号码
}
},
methods: {
openDialog() {
this.phoneVisible = true
},
// 点击确定
phoneConfirm(smsCode) {
console.log('点击确定按钮', smsCode)
this.phoneVisible = false
},
phoneHide() {
this.phoneVisible = false
}
}
}
</script>
显示代码
wocwin微信二维码
# pdf 文件预览
协议预览
在组件中需配置:
属性protocolVisible
是否显示弹窗
protocolTitle
pdf 文件名
@update:visible
右上删除或取消事件
新增v-dialogDrag
指令可按头部拖拽弹窗;
ElementUI
中el-dialog
的属性皆可用(如:close-on-click-modal
属性——点击空白区域是否关闭弹窗)
<template>
<t-layout-page>
<t-layout-page-item>
<el-button type="danger" @click="openDialog">PDF预览弹窗</el-button>
</t-layout-page-item>
<t-protocol
:protocolVisible="protocolVisible"
:protocolTitle="protocolTitle"
:protocolSrc="protocolSrc"
v-dialogDrag
ref="pdf"
@update:visible="protocolHide"
/>
</t-layout-page>
</template>
<script>
export default {
data() {
return {
protocolVisible: false,
protocolTitle: '协议预览',
protocolSrc: '' // 协议路径
}
},
methods: {
openDialog() {
this.protocolVisible = true
},
protocolHide() {
this.protocolVisible = false
}
}
}
</script>
显示代码
wocwin微信二维码