import Popup from '@/components/Popup/index' export function popupDialog (title, url, params, width = '75%', height, btnShow = false, callback) { // Popup.install Popup(title, url, { height: height, width: width, formData: params, btnShow: btnShow, cancel: () => { console.log("取消回调"); }, confirm: () => { callback } }) } export function popupCacel () { Popup1().close() }