meixioacomponent 0.1.2 → 0.1.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (40) hide show
  1. package/lib/demo.html +0 -2
  2. package/lib/meixioacomponent.common.js +2292 -587
  3. package/lib/meixioacomponent.common.js.map +1 -1
  4. package/lib/meixioacomponent.umd.js +2292 -587
  5. package/lib/meixioacomponent.umd.js.map +1 -1
  6. package/lib/meixioacomponent.umd.min.js +5 -5
  7. package/lib/meixioacomponent.umd.min.js.map +1 -1
  8. package/package.json +2 -2
  9. package/packages/components/base/baseArea/baseArea.vue +9 -9
  10. package/packages/components/base/baseDialog/index.vue +3 -3
  11. package/packages/components/base/baseEdito/baseEdito.vue +1 -1
  12. package/packages/components/base/baseImg/baseImg.vue +2 -2
  13. package/packages/components/base/baseLineInfoGroup/baseLineInfoGroup.vue +1 -1
  14. package/packages/components/base/basePagination/index.vue +4 -4
  15. package/packages/components/base/baseTimeTypeSelect/base_time_type_select.vue +2 -2
  16. package/packages/components/base/baseUpload/mixins.js +2 -2
  17. package/packages/components/base/upload/upload.vue +1 -1
  18. package/packages/components/dynamicmount/dynamicMount.vue +6 -7
  19. package/packages/components/dynamicmount/index.js +3 -3
  20. package/packages/components/index.js +14 -0
  21. package/packages/components/proForm/dialogForm/baseDialogForm.vue +1 -1
  22. package/packages/components/proForm/proForm/pro_form.vue +2 -2
  23. package/packages/components/proForm/proForm/pro_form_item.vue +2 -3
  24. package/packages/components/proPageTable/oa_pro_table.vue +8 -8
  25. package/packages/config/componentConfig.js +25 -0
  26. package/packages/config/selectStore/SelectStore.js +5 -3
  27. package/packages/config/selectStore/UseSelectStoreClass.js +9 -3
  28. package/packages/config/storeModule/selectStore.js +24 -0
  29. package/packages/config/use/UseImg.js +1 -1
  30. package/packages/config/use/useFixedHeader.js +2 -1
  31. package/packages/utils/upload.js +1 -1
  32. package/packages/utils/utils.js +1 -1
  33. package/vue.config.js +10 -0
  34. package/lib/meixioacomponent.css +0 -1
  35. package/packages/config/selectStore/testSelectStore.js +0 -40
  36. package/packages/config/use/UseSelectStore.js +0 -2
  37. package/src/assets/logo.png +0 -0
  38. package/src/main.js +0 -9
  39. package/src/router/index.js +0 -29
  40. package/src/store/index.js +0 -15
@@ -1,40 +0,0 @@
1
- import SelectStore from "./SelectStore";
2
- // 示例
3
- let testRequest = () => {
4
- return new Promise((resolve, reject) => {
5
- setTimeout(() => {
6
- resolve([
7
- {
8
- value: 1,
9
- label: "黄金糕",
10
- },
11
- {
12
- value: 2,
13
- label: "双皮奶",
14
- },
15
- {
16
- value: 3,
17
- label: "蚵仔煎",
18
- },
19
- {
20
- value: 4,
21
- label: "龙须面",
22
- },
23
- {
24
- value: 5,
25
- label: "北京烤鸭",
26
- },
27
- ]);
28
- }, 5000);
29
- });
30
- };
31
-
32
- class TestSelectStore extends SelectStore {
33
- constructor(request) {
34
- super(request);
35
- }
36
- }
37
-
38
- let testSelectStore = new TestSelectStore(testRequest);
39
-
40
- export default testSelectStore;
@@ -1,2 +0,0 @@
1
- import Vue from "vue";
2
- export default Vue.prototype.$store.getters.selectStore;
Binary file
package/src/main.js DELETED
@@ -1,9 +0,0 @@
1
- import Vue from 'vue'
2
- import store from './store'
3
- import router from './router'
4
- Vue.config.productionTip = false
5
- new Vue({
6
- router,
7
- store,
8
- render: h => h(App)
9
- }).$mount('#app')
@@ -1,29 +0,0 @@
1
- import Vue from 'vue'
2
- import VueRouter from 'vue-router'
3
- import Home from '../views/Home.vue'
4
-
5
- Vue.use(VueRouter)
6
-
7
- const routes = [
8
- {
9
- path: '/',
10
- name: 'Home',
11
- component: Home
12
- },
13
- {
14
- path: '/about',
15
- name: 'About',
16
- // route level code-splitting
17
- // this generates a separate chunk (about.[hash].js) for this route
18
- // which is lazy-loaded when the route is visited.
19
- component: () => import(/* webpackChunkName: "about" */ '../views/About.vue')
20
- }
21
- ]
22
-
23
- const router = new VueRouter({
24
- mode: 'history',
25
- base: process.env.BASE_URL,
26
- routes
27
- })
28
-
29
- export default router
@@ -1,15 +0,0 @@
1
- import Vue from 'vue'
2
- import Vuex from 'vuex'
3
-
4
- Vue.use(Vuex)
5
-
6
- export default new Vuex.Store({
7
- state: {
8
- },
9
- mutations: {
10
- },
11
- actions: {
12
- },
13
- modules: {
14
- }
15
- })