iView之Modal(一級彈窗和二級彈窗)
iview之Modal
一、普通元件使用方法
普通元件使用方法直接在頁面中寫<Modal></Modal>標籤,在頁面內可以寫內容。內容也可以自定義標籤引入。下面是兩種方式引入內容
第一種,直接在Modal標籤內寫內容
<template> <div> <Button type="primary" @click="modal1 = true">普通元件使用方法</Button> <Modal v-model="modal1" title="普通元件使用方法" @on-ok="ok" @on-cancel="cancel"> <h1>普通元件使用方法</h1> //自定義內容 </Modal> </div></template><script> export default { name: "normalModal", data() { return { modal1: false } }, methods: { ok() {}, cancel(){} } }</script><style scoped></style>
第二種,在Modal標籤內引入自定義元件
<template> <div> <Button type="primary" @click="modal1 = true">普通元件使用方法</Button> <Modal v-model="modal1" title="普通元件使用方法" @on-ok="ok" @on-cancel="cancel"> <FirsModal></FirsModal>//使用自定義元件 </Modal> </div></template><script> //引入自定義元件(彈窗的內容寫在FirstModal元件內) const FirsModal = () => import("../components/FirstModal.vue"); export default { name: "normalModal", data() { return { modal1: false } }, methods: { ok() {}, cancel(){} }, components:{ FirsModal//定義自定義元件 } }</script><style scoped></style>
一、例項化使用方法
例項化使用方法也分為兩種,一種是直接在render函式內直接寫Html標籤進行頁面渲染,另一種是render函式內寫自定義的元件進行渲染
第一種
<template> <div class="hello"> <Button @click="handleRender">例項化使用方法</Button> </div></template><script> export default { name: 'HelloWorld', data() { return {} }, methods: { handleRender () { this.$Modal.confirm({ render: (h) => { return h('Input', { props: { value: this.value, autofocus: true, placeholder: 'Please enter your name...' }, on: { input: (val) => { this.value = val; } } }) } }) } } }</script><style scoped></style>
第二種
<template> <div class="hello"> <Button @click="handleRender">例項化使用方法</Button> </div></template><script> const FirsModal = () => import("../components/FirstModal.vue"); export default { name: 'HelloWorld', data() { return {} }, methods: { handleRender () { this.$Modal.confirm({ title: 'demo', render: (h) => { return h(FirsModal, {//在此處使用引入的元件 ref: 'firstModal' }) }, width: 600, closable: false, okText: "確定", cancelText: "取消", loading: true, onOk() {} }); } } }</script><style scoped></style>
三、二級彈窗
有的業務場景需要使用到二級彈窗,即彈窗中再彈窗。在使用二級彈窗的時候。第一個彈窗例項化和普通元件兩種方式都可以使用,第二個彈窗的時候只能使用第一種普通元件使用的方式才行,否則會進行覆蓋彈窗。
Helloworld.vue
<template> <div class="hello"> <Button @click="openFirstModal">開啟第一個彈窗</Button> </div></template><script> const FirsModal = () => import("../components/FirstModal.vue"); export default { name: 'HelloWorld', data() { return {} }, methods: { openFirstModal() { this.$Modal.confirm({ title: '第一個視窗', render: (h) => { return h(FirsModal, { ref: 'firstModal' }) }, width: 600, closable: false, okText: "確定", cancelText: "取消", loading: true, onOk() { } }); } } }</script><style scoped></style>
FirstModal.vue
<template> <div> <h1>第一個視窗</h1> <Button @click="openSecondModal">開啟第二個彈窗</Button> <Modal v-model="showModal"> <SecondModal></SecondModal> </Modal> </div></template><script> const SecondModal = () => import("@/components/SecondModal.vue"); export default { name: "FirstModal", data() { return { showModal: false } }, components: { SecondModal }, methods: { openSecondModal() { this.showModal = true; } } }</script><style scoped></style>
SecondModal.vue
<template> <div> <h1>我是第二個視窗</h1> </div></template><script> export default { name: "secondModal", data() { return {} }, }</script><style scoped></style>
效果如下圖
二級彈窗.png
作者:不愛程式設計的程式設計師
連結:
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/4662/viewspace-2815497/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- antdv彈窗modal可拖動方法
- Element修改彈窗類元件的層級元件
- 小程式自定義modal彈窗封裝實現封裝
- 這樣使用React彈窗會更方便 -- use-modalReact
- uniapp彈窗24小時之後彈APP
- Android之Window和彈窗問題Android
- Android彈窗二則: PopupWindow和AlertDialogAndroid
- Android彈窗二則:PopupWindow和AlertDialogAndroid
- iOS開發之彈窗管理iOS
- Jquery彈窗元件jQuery元件
- 彈出視窗
- 一行js彈窗程式碼就能設計漂亮的彈窗廣告JS
- JS彈出視窗視窗的位置和大小JS
- WPF 自定義MessageBox 彈窗提示 彈窗載入
- 廣告彈窗/小視窗程式碼
- 圖片彈窗和下載彈窗wordpress外掛下載-Facebox download
- Flutter 全域性彈窗Flutter
- avalonia自定義彈窗
- js頁面彈窗JS
- 自定義 alert 彈窗
- winrar去廣告彈窗
- Prism 彈出視窗
- JavaScript視窗功能指南之建立彈出視窗 (轉)JavaScript
- Vue+iview Modal元件關閉彈框之後報錯問題VueView元件
- js漸變彈出視窗和關閉視窗效果JS
- Android 開發之鎖屏彈窗Android
- layer父介面呼叫子彈窗的方法和獲取子彈窗的元素值總結
- react-native 仿原生自定義彈窗|iOS/Android 彈窗效果ReactiOSAndroid
- 自定義版本更新彈窗
- WKViewManager iOS 彈窗架構ViewiOS架構
- 自定義view————廣告彈窗View
- 彈出視窗程式碼
- Vision - 活動彈窗識別和定位
- js實現window.open()彈出視窗和父視窗之間相互操作JS
- flash廣告彈窗怎麼刪除win10 flash廣告彈窗怎麼禁止Win10
- uniapp 自定義彈窗元件APP元件
- jQuery 加入購物車 彈窗jQuery
- 去掉RedisDesktopManager更新提示彈窗Redis