|
|
|
|
/**
|
|
|
|
|
* 自定义控件仓库
|
|
|
|
|
*/
|
|
|
|
|
import serialNumber from './number/index.vue'
|
|
|
|
|
import urlLink from './urllink/index.vue'
|
|
|
|
|
import orgCitys from './orgcitys/index.vue'
|
|
|
|
|
import baiduMap from './baidumap/index.vue'
|
|
|
|
|
import baiduMapLook from './baidumap/indexLook.vue'
|
|
|
|
|
import orgCentent from './org/index.vue'
|
|
|
|
|
|
|
|
|
|
import digitPage from './digitpage/index.vue'
|
|
|
|
|
|
|
|
|
|
import signatureMap from './writingboard/index.vue'
|
|
|
|
|
import videoUpAndPlay from './videoupload/index.vue'
|
|
|
|
|
import lowcodeCarsusel from './carousel/index.vue'
|
|
|
|
|
import lowcodeTransfer from './lowcodetransfer/index.vue'
|
|
|
|
|
import lowcodeImage from './lowcodeimage/index.vue'
|
|
|
|
|
import associatedForms from './associatedforms/index.vue'
|
|
|
|
|
|
|
|
|
|
import FounderForm from './systemunit/founder.vue'
|
|
|
|
|
import FounderTime from './systemunit/founderTime.vue'
|
|
|
|
|
import EditTime from './systemunit/editTime.vue'
|
|
|
|
|
import OwnerPage from './systemunit/ownerPage.vue'
|
|
|
|
|
import DeptOrgPage from './systemunit/deptOrgPage.vue'
|
|
|
|
|
import DeptOrgSearch from './systemunit/deptOrgSearch.vue'
|
|
|
|
|
import Editor from "@/components/WangEditor/index.vue";
|
|
|
|
|
|
|
|
|
|
// import { QuillEditor } from '@vueup/vue-quill'
|
|
|
|
|
// import '@vueup/vue-quill/dist/vue-quill.snow.css';
|
|
|
|
|
|
|
|
|
|
export default (app: any) => {
|
|
|
|
|
app.component('SerialNumber', serialNumber)
|
|
|
|
|
app.component('UrlLink', urlLink)
|
|
|
|
|
app.component('OrgCitys', orgCitys)
|
|
|
|
|
app.component('BaiduMap', baiduMap)
|
|
|
|
|
app.component('BaiduMapLook', baiduMapLook)
|
|
|
|
|
app.component('OrgCentent', orgCentent)
|
|
|
|
|
|
|
|
|
|
app.component('DigitPage', digitPage)
|
|
|
|
|
|
|
|
|
|
app.component('SignatureMap', signatureMap)
|
|
|
|
|
app.component('VideoUpAndPlay',videoUpAndPlay)
|
|
|
|
|
app.component('LowcodeCarsusel',lowcodeCarsusel)
|
|
|
|
|
app.component('LowcodeTransfer',lowcodeTransfer)
|
|
|
|
|
app.component('LowcodeImage',lowcodeImage)
|
|
|
|
|
app.component('AssociatedForms',associatedForms)
|
|
|
|
|
|
|
|
|
|
app.component('FounderForm',FounderForm) //创建人组件
|
|
|
|
|
app.component('FounderTime',FounderTime) //创建时间主键
|
|
|
|
|
app.component('EditTime',EditTime) //创建时间主键
|
|
|
|
|
app.component('OwnerPage',OwnerPage) //选择拥有者
|
|
|
|
|
app.component('DeptOrgPage',DeptOrgPage) //所属部门
|
|
|
|
|
app.component('DeptOrgSearch',DeptOrgSearch) //所属部门
|
|
|
|
|
|
|
|
|
|
app.component('Editor', Editor) //Editor富文本
|
|
|
|
|
}
|