表格处理

This commit is contained in:
2024-12-04 15:14:45 +08:00
parent 2646d1ae05
commit 1aac9b7d7c
21 changed files with 7771 additions and 34 deletions

View File

@@ -15,6 +15,10 @@ import Common from './components/common/common'
Vue.prototype.$validateString = function (str) {
return /^[a-zA-Z\s-]+$/.test(str);
}
import VXETable from 'vxe-table'
import 'vxe-table/lib/style.css'
Vue.use(VXETable)
// 引入富文本编辑器
import VueQuillEditor from 'vue-quill-editor'
@@ -62,6 +66,12 @@ Vue.prototype.$echarts = echarts
Vue.prototype.$api = api
Vue.config.productionTip = false;
import Editor from "@tinymce/tinymce-vue"; // 默认导入
Vue.component("Editor", Editor);
import commonTable from '@/components/page/components/table/table.vue'
Vue.component('common-table', commonTable);
Vue.use(VueI18n);
Vue.use(ElementUI, {
size: 'small',