@kyfe/kye-crm-dialog
v1.0.1
Published
crm部门全局弹框
Downloads
8
Maintainers
Keywords
Readme
安装方法
执行命令 npm i @kyfe/kye-crm-dialog
使用方法
import KyeCrmDialog from '@kyfe/kye-crm-dialog'
Vue.prototype.$customeDialog = KyeCrmDialog
组件使用(基本和vant的dialog用法一一致,扩展了一些内容)
this.$customeDialog({
dialogType: 'alert',
content: '该条数据已在【OA申请】或OA流程中,不支持修改',
confirmButtonText: '知道了',
})
Props
| 属性 | 说明 | 类型 | 可选值 | 默认值 | |---------- |---------------- |------- |---------------------- |:------------------------: | | dialogType | 弹框类型 | string | 'confirm'/'alert' | 'confirm' | | content | 弹框内容文字 | string | | '' | | slotTitle | 弹框顶部文案自定义(非图片) | render | | '' | | slotContent | 弹框内容区自定义 | render | | '' |