meixioacomponent 0.1.1 → 0.1.4

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "meixioacomponent",
3
- "version": "0.1.1",
3
+ "version": "0.1.4",
4
4
  "private": false,
5
5
  "author": "YuRi",
6
6
  "main": "lib/meixioacomponent.umd.min.js",
@@ -48,10 +48,10 @@
48
48
  >
49
49
  </el-date-picker>
50
50
  </div>
51
- <baseButtonHandleVue
51
+ <baseButtonHandle
52
52
  :config="handleConfig"
53
53
  class="button-handle-wrap"
54
- ></baseButtonHandleVue>
54
+ ></baseButtonHandle>
55
55
  </div>
56
56
  </template>
57
57
  <div
@@ -110,7 +110,7 @@ export default {
110
110
  value: {},
111
111
  },
112
112
  components: {
113
- baseButtonHandleVue,
113
+ baseButtonHandle,
114
114
  },
115
115
  computed: {
116
116
  module: {
@@ -4,8 +4,7 @@
4
4
 
5
5
  <script>
6
6
  import Vue from "vue";
7
- import store from "../../store";
8
- import router from "../../router";
7
+ import componentConfig from "../../config/componentConfig";
9
8
  export default {
10
9
  name: "dynamicMount",
11
10
  data() {
@@ -54,9 +53,9 @@ export default {
54
53
  propsData: {
55
54
  ...this.componentProps,
56
55
  },
57
- store: store,
56
+ store: componentConfig.store,
58
57
  parent: this,
59
- router: router,
58
+ router: componentConfig.router,
60
59
  });
61
60
  this.registerListen();
62
61
  this.$children.push(this.componentMounted);
@@ -1,6 +1,6 @@
1
1
  import Vue from "vue";
2
- import store from "../../store/index";
3
2
  import dynamicMountComponent from "./dynamicMount.vue";
3
+ import componentConfig from "../../config/componentConfig";
4
4
  const ComponentInsertConstructor = Vue.extend(dynamicMountComponent);
5
5
 
6
6
  //使用方法
@@ -11,8 +11,8 @@ const ComponentInsertConstructor = Vue.extend(dynamicMountComponent);
11
11
  // });
12
12
 
13
13
  const Insert = (options) => {
14
- store.commit("component/SET_DYNAMICID");
15
- let id = store.getters.dynamicId;
14
+ componentConfig.setDynamicId();
15
+ let id = componentConfig.dynamicId;
16
16
  const componentInsertConstructor = new ComponentInsertConstructor();
17
17
  componentInsertConstructor.vm = componentInsertConstructor.$mount();
18
18
  componentInsertConstructor.dom = componentInsertConstructor.vm.$el;
@@ -30,6 +30,13 @@ import baseDialogForm from "./proForm/dialogForm/dialogFormIndex";
30
30
  import baseForm from "./proForm/proForm/index";
31
31
  import baseFormWrap from "./proForm/proFormWrap/index";
32
32
  import baseProTable from "./proPageTable/index";
33
+ // js 文件相关
34
+ import DynamicMount from "./dynamicmount/index.js";
35
+ import componentConfig from "../config/componentConfig";
36
+ import SelectStore from "../config/selectStore/SelectStore";
37
+ //
38
+ import useImg from "../config/use/UseImg";
39
+ import useFixedHeader from "../config/use/useFixedHeader";
33
40
 
34
41
  const meixicomponents = [
35
42
  baseAnchor,
@@ -70,6 +77,7 @@ const install = (Vue) => {
70
77
  meixicomponents.forEach((component) => {
71
78
  Vue.component(component.name, component);
72
79
  });
80
+ Vue.use(DynamicMount);
73
81
  };
74
82
 
75
83
  if (typeof window !== "undefined" && window.Vue) {
@@ -78,6 +86,7 @@ if (typeof window !== "undefined" && window.Vue) {
78
86
 
79
87
  export default {
80
88
  install,
89
+ componentConfig,
81
90
  meixicomponents,
82
91
  baseAnchor,
83
92
  baseAppendix,
@@ -111,4 +120,7 @@ export default {
111
120
  baseForm,
112
121
  baseFormWrap,
113
122
  baseProTable,
123
+ SelectStore,
124
+ useImg,
125
+ useFixedHeader,
114
126
  };
@@ -186,7 +186,7 @@
186
186
  <script>
187
187
  import { FilterTime } from "../../../utils/utils";
188
188
  //
189
- import UseSelectStore from "../../../config/use/UseSelectStore";
189
+ import componentConfig from "../../../config/componentConfig";
190
190
  export default {
191
191
  data() {
192
192
  return {
@@ -218,8 +218,7 @@ export default {
218
218
  return this.selectStore.getLoading();
219
219
  },
220
220
  selectStore() {
221
- // console.log()
222
- return UseSelectStore.getStore(this.$props.config.useStore);
221
+ return componentConfig.selectStore.getStore(this.$props.config.useStore);
223
222
  },
224
223
 
225
224
  selectData() {
@@ -0,0 +1,25 @@
1
+ // import UseSelectStoreClass from "./selectStore/UseSelectStoreClass";
2
+ import selectStore from "./storeModule/selectStore";
3
+ const componentConfig = {
4
+ store: null,
5
+ router: null,
6
+ dynamicId: 0,
7
+ selectStore: null,
8
+
9
+ setDynamicId: () => {
10
+ componentConfig.dynamicId += 1;
11
+ },
12
+
13
+ initConfig: (_store, _router) => {
14
+ // 动态注册vuex modules
15
+ _store.registerModule("selectStore", selectStore);
16
+ // 注册vuex里面selectStore管理类
17
+ _store.commit("selectStore/CREATE_SELECTSTORE");
18
+ componentConfig.store = _store;
19
+ componentConfig.router = _router;
20
+ componentConfig.selectStore =
21
+ componentConfig.store.getters["selectStore/getSelectStore"];
22
+ },
23
+ };
24
+
25
+ export default componentConfig;
@@ -1,14 +1,16 @@
1
+ import componentConfig from "../componentConfig";
1
2
  class SelectStore {
2
- constructor(request) {
3
+ constructor(params) {
3
4
  this.data = [];
4
5
  this.loading = false;
5
- this.request = request;
6
+ this.name = params.name;
7
+ this.request = params.request;
6
8
  }
7
9
 
8
10
  async loadData() {
9
11
  this.loading = true;
10
12
  let result = await this.request();
11
-
13
+
12
14
  this.loading = false;
13
15
  this.data = result;
14
16
  }
@@ -1,5 +1,6 @@
1
1
  class UseSelectStoreClass {
2
2
  constructor() {
3
+ this.storeClassList = {};
3
4
  this.storeList = [];
4
5
  }
5
6
  hasStore(store) {
@@ -9,13 +10,12 @@ class UseSelectStoreClass {
9
10
  return index;
10
11
  }
11
12
  getStore(store) {
12
- console.log(store);
13
13
  let flag = this.hasStore(store);
14
14
  if (flag == -1) {
15
- let value = require(`@/config/selectStore/${store}.js`);
15
+ let value = this.storeClassList[`${store}`];
16
16
  let obj = {
17
17
  key: `${store}`,
18
- value: value.default,
18
+ value: value,
19
19
  };
20
20
  this.storeList.push(obj);
21
21
  return obj.value;
@@ -23,5 +23,11 @@ class UseSelectStoreClass {
23
23
 
24
24
  return this.storeList[flag].value;
25
25
  }
26
+
27
+ registerStore(params) {
28
+ console.log(params);
29
+ this.storeClassList[`${params.name}`] = params.class;
30
+ console.log(this.storeClassList);
31
+ }
26
32
  }
27
33
  export default UseSelectStoreClass;
@@ -0,0 +1,24 @@
1
+ import UseSelectStoreClass from "../selectStore/UseSelectStoreClass";
2
+
3
+ const selectStore = {
4
+ namespaced: true,
5
+ state: {
6
+ selectStore: null,
7
+ },
8
+
9
+ getters: {
10
+ getSelectStore(state) {
11
+ return state.selectStore;
12
+ },
13
+ },
14
+
15
+ mutations: {
16
+ CREATE_SELECTSTORE: (state) => {
17
+ state.selectStore = new UseSelectStoreClass();
18
+ console.log("注册成功");
19
+ },
20
+ },
21
+ actions: {},
22
+ };
23
+
24
+ export default selectStore;
@@ -1,5 +1,6 @@
1
- import baseFixedHeader from "../../components/base/baseFixedHeader.vue";
1
+
2
2
  import DynamicMount from "../../components/dynamicmount/DynamicMount";
3
+ import baseFixedHeader from "../../components/base/baseFixedHeader/baseFixedHeader.vue";
3
4
 
4
5
  class UseFixedHeader {
5
6
  constructor() {
package/vue.config.js ADDED
@@ -0,0 +1,10 @@
1
+ const path = require("path");
2
+
3
+ function resolve(dir) {
4
+ return path.join(__dirname, dir);
5
+ }
6
+ module.exports = {
7
+ css: {
8
+ extract: false,
9
+ },
10
+ };
@@ -1 +0,0 @@
1
- .base-anchor-wrap[data-v-78fd6e96]{width:auto;height:auto;overflow-y:auto}.base-anchor-wrap .anchor-item-wrap[data-v-78fd6e96]{padding-left:calc(var(--padding-4)*2);border-left:2px solid var(--color-border)}.base-anchor-wrap .anchor-item-wrap a[data-v-78fd6e96],.base-anchor-wrap .anchor-item-wrap span[data-v-78fd6e96]{display:inline-block;color:var(--font-color-m);margin:var(--margin-2) 0;font-size:var(--font-size-base)}.base-anchor-wrap .anchor-item-wrap span[data-v-78fd6e96]{cursor:pointer}.base-anchor-wrap .active[data-v-78fd6e96]{border-left:2px solid var(--color-primary);color:var(--color-primary)!important}.item-wrap[data-v-aca4346c]{width:100%;height:43px;display:flex;align-items:center;flex-flow:row nowrap;justify-content:flex-start;margin:var(--margin-4) 0;border-radius:calc(var(--radius)*2)}.item-wrap .item-status[data-v-aca4346c],.item-wrap .item-type[data-v-aca4346c]{width:40px;height:100%;display:flex;align-items:center;justify-content:center;flex-flow:row nowrap}.item-wrap .item-content[data-v-aca4346c]{width:auto;height:100%;display:flex;flex-flow:column nowrap;align-items:flex-start;justify-content:center}.item-wrap .item-content .item-info[data-v-aca4346c]{width:100%;height:auto}.item-wrap .item-content .item-info .item-name[data-v-aca4346c],.item-wrap .item-content .item-info .item-size[data-v-aca4346c]{overflow:hidden;white-space:nowrap;text-overflow:ellipsis;display:inline-block}.item-wrap .item-content .item-info .item-name[data-v-aca4346c]{width:auto;color:var(--font-color-m);font-size:var(--font-size-base)}.item-wrap .item-content .item-info .item-size[data-v-aca4346c]{width:auto;color:var(--font-color-s);font-size:var(--font-size-base)}.item-wrap .item-content .item-process-wrap[data-v-aca4346c]{width:100%;height:4px;position:relative;background:var(--color-gray-m)}.item-wrap .item-content .item-process-wrap .item-process-bar[data-v-aca4346c]{height:100%;transition:all .3s ease;background:var(--color-primary)}.upload[data-v-aca4346c]{background:var(--color-gray-m)}.upload .item-content[data-v-aca4346c]{width:calc(100% - 80px)!important}.upload .item-content .item-name[data-v-aca4346c]{max-width:80%}.upload .item-content .item-size[data-v-aca4346c]{max-width:20%}.base-appendix-wrap[data-v-fbeff5d0]{width:100%;height:auto;padding:var(--padding-5);border-radius:calc(var(--radius)*2);border:1px dashed var(--color-border-d)}.base-appendix-wrap .appendix-title[data-v-fbeff5d0]{width:auto;display:flex;align-items:center;margin-bottom:var(--margin-5)}.base-appendix-wrap .appendix-title span[data-v-fbeff5d0]{color:var(--font-color-d);font-size:var(--font-size-base);font-weight:var(--font-weight-kg)}.footer-handle-wrap[data-v-986f12ac]{width:100%;height:100%;display:flex;align-items:center}.base-area-select-wrap[data-v-21aa660d]{width:auto;height:auto;overflow:hidden;border-radius:calc(var(--radius)*2)}.base-area-select-wrap .area-select-input[data-v-21aa660d]{background:var(--color-gray-m)}.base-area-select-wrap[data-v-21aa660d] .el-input__inner{font-weight:var(--font-weight-kg);border-color:transparent}.base-area-select-wrap .is-open[data-v-21aa660d]{background:var(--color-primary)}.base-area-select-wrap .is-open[data-v-21aa660d] .el-input__inner{color:#fff!important}.base-area-select-wrap .is-open[data-v-21aa660d] .el-input__inner::-moz-placeholder{color:var(--color-error)!important}.base-area-select-wrap .is-open[data-v-21aa660d] .el-input__inner:-ms-input-placeholder{color:var(--color-error)!important}.base-area-select-wrap .is-open[data-v-21aa660d] .el-input__inner::placeholder{color:var(--color-error)!important}.base-area-select-wrap .is-open[data-v-21aa660d] .el-icon-arrow-up{color:#fff!important}.area-select-content[data-v-21aa660d]{width:400px;height:300px;background:var(--bg-white)}.area-select-content .content-title[data-v-21aa660d]{width:100%;height:40px;display:flex;flex-flow:row nowrap;justify-content:space-between;border-bottom:2px solid var(--color-border)}.area-select-content .content-title .title-left span[data-v-21aa660d]{line-height:40px;color:var(--font-color-d);font-size:var(--font-size-base);font-weight:var(--font-weight-kg)}.area-select-content .content-title .title-right[data-v-21aa660d]{width:auto;display:flex;align-items:center}.area-select-content .content-middle[data-v-21aa660d]{width:100%;display:flex;height:calc(100% - 40px)}.area-select-content .content-middle .middle-left[data-v-21aa660d]{width:145px;height:100%;overflow-y:auto;padding:calc(var(--padding-3)*2);padding-left:0;box-sizing:border-box;border-right:2px solid var(--color-gray-m)}.area-select-content .content-middle .middle-left .province-item[data-v-21aa660d]{width:100%;height:28px;cursor:pointer;background:inherit;box-sizing:border-box;padding:0 var(--padding-4);margin-bottom:var(--margin-5);border-radius:calc(var(--radius)*2)}.area-select-content .content-middle .middle-left .province-item span[data-v-21aa660d]{line-height:28px;text-align:left;color:var(--font-color-s);font-size:var(--font-size-s)}.area-select-content .content-middle .middle-left .province-item[data-v-21aa660d]:hover{background:var(--bg-gray)}.area-select-content .content-middle .middle-left .active[data-v-21aa660d]{cursor:default;background:var(--bg-gray)}.area-select-content .content-middle .middle-left .active span[data-v-21aa660d]{color:var(--font-color-d)}.area-select-content .content-middle .middle-right[data-v-21aa660d]{height:100%;width:calc(100% - 145px);padding-left:calc(var(--padding-3)*2)}.area-select-content .content-middle .middle-right .middle-right-title[data-v-21aa660d]{width:100%;display:flex;overflow-y:auto;flex-flow:row wrap;height:calc(100% - 38px);align-content:flex-start;justify-content:flex-start;margin-bottom:var(--margin-4);border-bottom:2px solid var(--color-gray-m)}.area-select-content .content-middle .middle-right .middle-right-title .area-item[data-v-21aa660d]{height:24px;display:flex;cursor:pointer;position:relative;background:inherit;width:calc(33% - 8px);margin:var(--margin-4);margin-left:0;justify-content:center;border-radius:calc(var(--radius)*2)}.area-select-content .content-middle .middle-right .middle-right-title .area-item span[data-v-21aa660d]{max-width:100%;line-height:24px;color:var(--font-color-s);font-size:var(--font-size-s);overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.area-select-content .content-middle .middle-right .middle-right-title .area-item .delete-icon[data-v-21aa660d]{top:0;right:0;display:none;position:absolute;transform:translateY(-50%)}.area-select-content .content-middle .middle-right .middle-right-title .area-item[data-v-21aa660d]:hover{background:var(--bg-gray)}.area-select-content .content-middle .middle-right .middle-right-title .area-item:hover .delete-icon[data-v-21aa660d]{display:flex}.area-select-content .content-middle .middle-right .middle-right-title .active[data-v-21aa660d]{background:var(--bg-gray)}.area-select-content .content-middle .middle-right .middle-right-title .active span[data-v-21aa660d]{color:var(--font-color-d)}.area-select-content .content-middle .middle-right .middle-right-bottom[data-v-21aa660d]{width:100%;height:30px;display:flex;flex-flow:row nowrap;align-items:center;justify-content:flex-end}.base-skeleton-wrap[data-v-b2d99012]{background:transparent;border-radius:calc(var(--radius)*2)}.base-skeleton-wrap .base-skeleton-item-wrap[data-v-b2d99012]{width:100%;height:100%;display:flex;border-radius:inherit;flex-flow:column nowrap;justify-content:flex-start;align-items:flex-start}@-webkit-keyframes skeleton--gradient-data-v-b2d99012{0%{transform:translate(-100%) skew(-15deg)}to{transform:translate(100%) skew(-15deg)}}@keyframes skeleton--gradient-data-v-b2d99012{0%{transform:translate(-100%) skew(-15deg)}to{transform:translate(100%) skew(-15deg)}}.base-skeleton-wrap .base-skeleton-item[data-v-b2d99012]{width:100%;overflow:hidden;position:relative;background:var(--color-gray-s)}.base-skeleton-wrap .base-skeleton-item[data-v-b2d99012]:after{top:0;left:0;width:100%;height:100%;content:" ";position:absolute;background:linear-gradient(90deg,hsla(0,0%,100%,0),rgba(0,0,0,.04),hsla(0,0%,100%,0));-webkit-animation:skeleton--gradient-data-v-b2d99012 1.5s linear 2s infinite;animation:skeleton--gradient-data-v-b2d99012 1.5s linear 2s infinite}.cir .base-skeleton-item[data-v-b2d99012],.square .base-skeleton-item[data-v-b2d99012]{height:100%!important}.cir[data-v-b2d99012]{overflow:hidden;border-radius:50%!important}.square[data-v-b2d99012]{width:80px;height:80px}.cir[data-v-b2d99012],.rect[data-v-b2d99012]{width:100%;height:100%}.rect .base-skeleton-item-wrap[data-v-b2d99012]{display:flex;box-sizing:border-box;align-items:flex-start;flex-flow:column nowrap;padding:var(--padding-5);justify-content:space-between}.rect .base-skeleton-item[data-v-b2d99012]{max-height:24px;margin-bottom:8px;background:var(--color-gray-s);border-radius:calc(var(--radius)*2)}.rect .base-skeleton-item[data-v-b2d99012]:last-of-type{margin-bottom:0}.rect .isSingle[data-v-b2d99012]{height:100%!important;max-height:100%!important}.base-img-wrap[data-v-029631ee],.base-img-wrap img[data-v-029631ee]{width:100%;height:100%}.base-img-wrap .img-error-wrap[data-v-029631ee]{width:100%;height:100%;display:flex;align-items:center;flex-flow:row nowrap;justify-content:center}.base-avatar-wrap[data-v-38598e34]{display:flex;overflow:hidden;align-items:center;flex-flow:row nowrap;justify-content:center;background:var(--color-gray-m)}.base-avatar-wrap span[data-v-38598e34]{color:var(--font-color-d);font-weight:var(--font-weight-kg)}.l[data-v-38598e34]{width:50px;height:50px;font-size:var(--font-size-l)}.m[data-v-38598e34]{width:42px;height:42px}.m span[data-v-38598e34]{font-size:var(--font-size-base)}.s[data-v-38598e34]{width:36px;height:36px}.s span[data-v-38598e34]{font-size:var(--font-size-s)}.cir[data-v-38598e34]{border-radius:50%}.squ[data-v-38598e34]{border-radius:calc(var(--radius)*2)}.base-default-svg-wrap[data-v-30b51250]{width:100%;height:auto;display:flex;flex-flow:column nowrap;justify-content:center;align-items:center}.base-default-svg-wrap .default-page-text[data-v-30b51250]{text-align:center;color:var(--font-color-s);margin-top:var(--margin-5);font-size:var(--font-size-base)}.dialog-wrap[data-v-0d6ddb07]{width:100%;height:auto}.dialog-wrap .dialog-content-wrap[data-v-0d6ddb07]{width:100%;height:auto;max-height:70vh;overflow-y:auto}.dialog-title-wrap[data-v-0d6ddb07]{width:100%;height:40px;display:flex;align-items:center;flex-flow:row nowrap;justify-content:space-between}.dialog-title-wrap span[data-v-0d6ddb07]{color:var(--font-color-d);font-size:var(--font-size-xl);font-weight:var(--font-weight-g)}.router-page-header-wrap[data-v-79a9177c]{width:100%;height:auto;justify-content:space-between}.router-page-header-wrap .header-wrap-left[data-v-79a9177c],.router-page-header-wrap .header-wrap-right[data-v-79a9177c],.router-page-header-wrap[data-v-79a9177c]{display:flex;align-items:center;flex-flow:row nowrap}.router-page-header-wrap .header-wrap-left[data-v-79a9177c]{max-width:60%;justify-content:flex-start}.router-page-header-wrap .header-wrap-left .header-text[data-v-79a9177c]{color:var(--font-color-d);margin-right:var(--margin-4);font-size:var(--font-size-xl);font-weight:var(--font-weight-kg)}.router-page-header-wrap .header-wrap-right[data-v-79a9177c]{max-width:40%;justify-content:flex-end}.oa-pro-footer-content[data-v-3226d0fc]{width:100%;height:100%;display:flex;align-items:center;flex-flow:row nowrap;background:inherit;justify-content:space-between}.oa-pro-footer-content .footer-left[data-v-3226d0fc],.oa-pro-footer-content .footer-right[data-v-3226d0fc]{width:40%;height:100%}.oa-pro-footer-content .footer-left[data-v-3226d0fc]{display:flex;align-items:center;flex-flow:row nowrap;justify-content:flex-start}.oa-pro-footer-content .footer-left .total-item[data-v-3226d0fc]{width:auto}.oa-pro-footer-content .footer-left .total-item .item-name[data-v-3226d0fc]{color:var(--font-color-m);margin-right:var(--margin-2);font-size:calc(var(--font-size-base))}.oa-pro-footer-content .footer-left .total-item .item-number[data-v-3226d0fc]{color:var(--font-color-d);font-size:var(--font-size-base);font-weight:var(--font-weight-g)}.oa-pro-footer-content .footer-left .total-item+.total-item[data-v-3226d0fc]{margin-left:var(--margin-5)}.oa-pro-footer-content .footer-left .total-item+.total-item[data-v-3226d0fc]:before{content:"/";color:var(--font-color-d);margin-right:var(--margin-5);font-size:var(--font-size-base);font-weight:var(--font-weight-g)}.oa-pro-footer-content .footer-right[data-v-3226d0fc]{width:60%;display:flex;align-items:center;flex-flow:row nowrap;justify-content:flex-end}.oa-pro-footer-content .footer-right[data-v-3226d0fc] .page-wrap{justify-content:flex-end}.screen-item-wrap[data-v-5106b41c]{height:auto;display:flex;align-items:center;flex-flow:row nowrap;justify-content:flex-start;margin-bottom:var(--margin-5)}.screen-item-wrap .item[data-v-5106b41c]{width:100%!important}.screen-item-wrap .item-wrap-left[data-v-5106b41c]{width:20%;margin-right:var(--margin-5)}.screen-item-wrap .item-wrap-right[data-v-5106b41c]{height:auto;width:40%}.screen-item-wrap .item-wrap-handle[data-v-5106b41c]{display:flex;align-items:center;margin-left:var(--margin-4)}.screen-item-wrap .item-wrap-handle div[data-v-5106b41c],.screen-item-wrap .item-wrap-handle label[data-v-5106b41c]{margin-right:var(--margin-4)}.not-handle .item-wrap-left[data-v-5106b41c],.not-handle .item-wrap-right[data-v-5106b41c]{width:40%!important}.oa-pro-screen-content{width:100%;height:auto;max-height:100%;background:var(--bg-white)}.oa-pro-screen-content .tips-text{color:var(--font-color-d);font-size:var(--font-size-base)}.oa-pro-screen-content .screen-item-content{width:100%;height:auto;overflow-y:auto;margin-top:var(--margin-5);max-height:180px}.oa-pro-screen-content .screen-handle-wrap{width:100%;height:42px}.table-header{width:100%;height:40px;display:flex;background:inherit;align-items:center;flex-flow:row nowrap;box-sizing:border-box;padding:0 var(--padding-5);justify-content:space-between;transition:all .6s var(--ease-out)}.table-header:hover{background:var(--hover-gray)}.table-header:hover .defind{display:inline-flex!important}.table-header:hover .table-header-right .lock-icons{display:flex!important}.table-header .defind{transform:scale(.7)!important}.table-header .cell-text{overflow:hidden;white-space:nowrap;text-overflow:ellipsis;color:var(--font-color-m);font-size:var(--font-size-base);font-weight:var(--font-weight-g)}.table-header .table-header-right{display:flex;align-items:center;flex-flow:row nowrap;justify-content:flex-end}.table-header .table-header-right .lock-icons{display:none!important}.search-header-wrap[data-v-4a116b1e]{width:100%;height:auto;display:flex;align-items:center;flex-flow:row nowrap;justify-content:space-between}.search-header-wrap .search-header-wrap-left[data-v-4a116b1e]{width:80%;height:100%;display:flex;align-items:center;flex-flow:row nowrap;justify-content:flex-start}.search-header-wrap .search-header-wrap-left .header-config-wrap[data-v-4a116b1e]{height:100%;display:flex;align-items:center;flex-flow:row nowrap;box-sizing:border-box;width:calc(100% - 220px);justify-content:flex-start;padding-left:calc(var(--padding-5)*2)}.search-header-wrap .search-header-wrap-left .header-config-wrap .view-text[data-v-4a116b1e]{color:var(--font-color-d);font-size:var(--font-size-base)}.search-header-wrap .search-header-wrap-right[data-v-4a116b1e]{width:20%;height:100%;display:flex;align-items:center;flex-flow:row nowrap;justify-content:flex-end}.oa-pro-table-search-content[data-v-4d9c855d]{width:100%;height:auto;padding:calc(var(--padding-5)*2) 0}.oa-pro-table-search-content .search-mid-content[data-v-4d9c855d]{width:100%;height:auto;margin-top:var(--margin-5);background:var(--bg-white)}.oa-pro-table-search-content .search-mid-content .box-card[data-v-4d9c855d]{width:100%;height:100%}.oa-pro-table-search-content .search-mid-content .box-card .tips-text[data-v-4d9c855d]{display:block;color:var(--font-color-d);font-size:var(--font-size-base)}.oa-pro-table-search-content .search-mid-content .box-card .screen-item-wrap[data-v-4d9c855d]{width:100%;display:flex;flex-flow:row wrap;align-items:center;margin-top:var(--margin-4);justify-content:flex-start}.oa-pro-table-search-content .icon-shaixuan[data-v-4d9c855d]{color:var(--icon-color-s);margin-right:var(--margin-2)}.config-wrap[data-v-18188001]{width:240px;height:auto;max-height:370px;background:inherit;box-sizing:border-box}.config-wrap .tips-text[data-v-18188001]{color:var(--font-color-m);padding-left:var(--padding-5);margin-bottom:var(--margin-5);font-size:var(--font-size-s)}.config-wrap .config-content[data-v-18188001]{width:100%;overflow-y:auto;max-height:calc(100% - 46px)}.config-wrap .config-content .config-item-wrap[data-v-18188001]{width:100%;height:34px;display:flex;cursor:pointer;align-items:center;flex-flow:row nowrap;box-sizing:border-box;justify-content:space-between;padding:0 var(--padding-5)}.config-wrap .config-content .config-item-wrap[data-v-18188001]:hover{background:var(--hover-light-primary)}.config-wrap .config-content .config-item-wrap .item-left[data-v-18188001],.config-wrap .config-content .config-item-wrap .item-right[data-v-18188001]{height:100%;display:flex;align-items:center;flex-flow:row nowrap;justify-content:center}.config-wrap .config-content .config-item-wrap .item-left[data-v-18188001]{width:80%;justify-content:flex-start}.config-wrap .config-content .config-item-wrap .item-left .item-text[data-v-18188001]{color:var(--font-color-d);font-size:var(--font-size-s);margin-left:var(--margin-5)}.config-wrap .config-content .config-item-wrap .item-right[data-v-18188001]{width:20%;cursor:move}.config-wrap .config-content .config-item-wrap .item-right[data-v-18188001] .base-icon-wrap{cursor:inherit!important}.config-wrap .config-footer[data-v-18188001]{height:30px;box-sizing:border-box;padding:0 var(--padding-5)}.table-skeleton-wrap[data-v-0f3e7ea5]{width:100%;height:auto}.oa-pro-table-wrap[data-v-f263c9f8]{position:relative}.oa-pro-table-wrap .oa-pro-header-wrap[data-v-f263c9f8]{width:100%;background:inherit}.oa-pro-table-wrap .oa-pro-header-wrap .header-extend[data-v-f263c9f8]{display:flex;flex-flow:row nowrap;justify-content:flex-start;align-items:center;margin-right:var(--margin-5)}.oa-pro-table-wrap .table-suffix[data-v-f263c9f8]{top:0;right:0;width:40px;height:40px;display:flex;align-items:center;background:inherit;position:absolute;justify-content:center;flex-flow:row nowrap}.oa-pro-table-wrap[data-v-f263c9f8] .caret-wrapper{display:none}.oa-pro-table-wrap .oa-pro-table[data-v-f263c9f8]{position:relative}.oa-pro-table-wrap .oa-pro-table[data-v-f263c9f8] th{padding:0 0}.oa-pro-table-wrap .oa-pro-table[data-v-f263c9f8] th .cell{padding-left:0!important;padding-right:0!important}.oa-pro-table-wrap .oa-pro-table[data-v-f263c9f8] th .cell .el-checkbox{margin:0 var(--margin-5)}.oa-pro-table-wrap .oa-pro-table[data-v-f263c9f8] td{padding:var(--padding-4) var(--padding-5)}.oa-pro-table-wrap .oa-pro-table[data-v-f263c9f8] td .cell{padding-left:0!important;padding-right:0!important}.oa-pro-table-wrap .oa-pro-table[data-v-f263c9f8] td .cell .el-checkbox{margin:0 var(--margin-5)}.oa-pro-table-wrap .oa-pro-table .table-tooltip-wrap[data-v-f263c9f8]{z-index:-1;position:fixed;visibility:hidden}.oa-pro-table-wrap .oa-pro-table .cell-content-text[data-v-f263c9f8]{width:100%;overflow:hidden;white-space:nowrap;text-overflow:ellipsis;font-weight:var(--font-weight-g);color:var(--form-label-color)!important;font-size:calc(var(--font-size-s)*1.1)!important}.oa-pro-table-wrap .oa-pro-table .active[data-v-f263c9f8]{cursor:pointer;font-weight:var(--font-weight-g);font-size:var(--font-size-base)!important;color:var(--color-primary)!important}.oa-pro-table-wrap .oa-pro-table .active[data-v-f263c9f8]:hover{text-decoration:underline}.oa-pro-table-wrap .oa-pro-table .warn[data-v-f263c9f8]{font-size:var(--font-size-base)!important;color:var(--color-warn)!important}.oa-pro-table-wrap .oa-pro-table .error[data-v-f263c9f8]{font-size:var(--font-size-base)!important;color:var(--color-error)!important}.oa-pro-table-wrap .oa-pro-table .success[data-v-f263c9f8]{font-size:var(--font-size-base)!important;color:var(--color-success)!important}.oa-pro-table-wrap .check-type-single[data-v-f263c9f8] th .el-checkbox{visibility:hidden}.oa-pro-table-wrap .oa-pro-table-footer[data-v-f263c9f8]{width:100%;background:inherit;box-sizing:border-box;padding-top:var(--padding-5)}.drawer-content-wrap[data-v-04386cb8]{width:100%;height:100%;overflow-y:auto;box-sizing:border-box;padding:var(--padding-5) calc(var(--padding-5)*2)}.drawer-content-wrap .drawer-content-title[data-v-04386cb8]{width:100%;height:40px;display:flex;align-items:center;flex-flow:row nowrap;justify-content:space-between}.drawer-content-wrap .drawer-content-title span[data-v-04386cb8]{color:var(--font-color-d);font-size:var(--font-size-l)}.drawer-content-wrap .drawer-content[data-v-04386cb8]{width:100%;overflow-y:auto;position:relative;margin-top:var(--margin-4)}.drawer-close-button[data-v-04386cb8]{top:100px;width:40px;display:flex;flex-flow:row;position:fixed;justify-content:center}.upload-wrap[data-v-1b75bd90]{right:0;width:380px;height:400px;z-index:999999;position:fixed;box-shadow:var(--shadow);background:var(--bg-white);transition:all .3s ease-in}.upload-wrap .upload-title[data-v-1b75bd90]{width:100%;height:40px;display:flex;position:relative;align-items:center;flex-flow:row nowrap;box-sizing:border-box;padding:var(--padding-5);justify-content:space-between;box-shadow:0 2px 12px 0 rgba(0,0,0,.1)}.upload-wrap .upload-title span[data-v-1b75bd90]{text-align:left;color:var(--font-color-m);font-size:var(--font-size-base)}.upload-wrap .upload-title .title-left[data-v-1b75bd90],.upload-wrap .upload-title .title-right[data-v-1b75bd90]{z-index:2}.upload-wrap .upload-title .title-right[data-v-1b75bd90]{display:flex}.upload-wrap .upload-title .total-process-wrap[data-v-1b75bd90]{top:0;left:0;z-index:1;height:100%;position:absolute;transition:all .3s ease;background:var(--color-primary)}.upload-wrap .isDown[data-v-1b75bd90]{position:relative}.upload-wrap .isDown[data-v-1b75bd90] i,.upload-wrap .isDown span[data-v-1b75bd90]{color:var(--bg-white)!important}.upload-wrap .upload-content[data-v-1b75bd90]{width:100%;overflow-y:auto;box-sizing:border-box;padding:var(--padding-5);height:calc(100% - 40px)}.base-upload-item-wrap[data-v-34fea22e]{margin:var(--margin-4);margin-left:0;border-radius:calc(var(--radius)*2);border:1px dashed var(--color-border-d)}.base-upload-item-wrap .type-upload[data-v-34fea22e]{width:100%;height:100%;display:flex;cursor:pointer;align-items:center;flex-flow:row nowrap;justify-content:center}.base-upload-item-wrap .type-upload .upload-icon[data-v-34fea22e]{width:60px;height:60px}.base-upload-item-wrap .type-upload .upload-icon[data-v-34fea22e] i{font-size:42px!important}.base-upload-item-wrap .type-pre-views[data-v-34fea22e]{width:100%;height:100%;position:relative}.base-upload-item-wrap .type-pre-views:hover .handleUploadItem[data-v-34fea22e]{display:block}.base-upload-item-wrap .type-pre-views img[data-v-34fea22e]{width:100%;height:100%;-o-object-fit:cover;object-fit:cover}.base-upload-item-wrap .type-pre-views .handleUploadItem[data-v-34fea22e]{top:0;right:0;z-index:2;width:auto;height:auto;display:none;position:absolute}.rect[data-v-34fea22e]{width:140px;height:80px}.cir[data-v-34fea22e]{width:80px;height:80px;overflow:hidden;border-radius:50%}.square[data-v-34fea22e]{width:100px;height:100px}.base-upload-wrap[data-v-914e41ec]{width:100%;height:auto}.base-upload-wrap .base-upload-content[data-v-914e41ec]{width:100%;height:auto;display:flex;flex-flow:row wrap;align-items:flex-start;justify-content:flex-start}.base-upload-wrap .base-upload-footer[data-v-914e41ec]{width:100%;height:auto;text-align:left;margin-top:calc(var(--margin-5)*2)}.base-upload-wrap .base-upload-footer span[data-v-914e41ec]{color:var(--font-color-s);font-size:var(--font-size-s)}.base-upload-wrap[data-v-914e41ec] .el-loading-mask{z-index:1!important}.base-edito-wrap[data-v-00054b36]{width:100%;height:auto;margin:var(--margin-5) 0;background:var(--color-gray-s);border:2px solid var(--color-border);padding:var(--padding-5) calc(var(--padding-5)*2)}.base-edito-wrap .no-launch[data-v-00054b36]{width:100%;height:auto;cursor:pointer;padding:calc(var(--padding-5)*2) 0}.base-edito-wrap .no-launch span[data-v-00054b36]{color:var(--font-color-s);font-size:var(--font-base-s)}.base-edito-wrap .edito-title-wrap[data-v-00054b36]{width:100%}.base-edito-wrap .edito-content-wrap[data-v-00054b36]{width:100%;height:auto;padding:var(--padding-5) 0}.base-edito-wrap[data-v-00054b36] textarea{resize:none!important;font-weight:var(--font-weight-g);color:var(--font-color-d)!important}.base-edito-wrap .base-edito-handle[data-v-00054b36]{display:flex;align-items:center}.base-edito-wrap .base-edito-handle[data-v-00054b36] i{font-weight:var(--font-weight-kg)}.base-fixed-header-wrap[data-v-3cc60c02]{top:0;left:0;width:100%;height:40px;z-index:99999;position:fixed;background:#fff;padding:var(--padding-5);box-shadow:var(--shadow-fixed);flex-flow:row nowrap;transition:all .7s ease-in}.base-fixed-header-wrap .fixed-header-content[data-v-3cc60c02],.base-fixed-header-wrap[data-v-3cc60c02]{display:flex;align-items:center;justify-content:center}.base-fixed-header-wrap .fixed-header-content .header-text[data-v-3cc60c02]{font-size:var(--font-size-base)}.base-fixed-header-wrap .fixed-header-content .content-handle-wrap[data-v-3cc60c02]{display:flex;flex-flow:column;align-items:center;justify-items:center;margin:0 calc(var(--margin-5)*4)}.base-fixed-header-wrap .fixed-header-content .content-handle-wrap .plain+.plain[data-v-3cc60c02]{margin:0}.base-fixed-header-wrap .header-close-icon[data-v-3cc60c02]{position:absolute;top:50%;right:var(--padding-5);transform:translateY(-50%)}.header-primary[data-v-3cc60c02]{background:var(--color-primary)}.header-danger[data-v-3cc60c02]{background:var(--color-error)}.header-danger .fixed-header-content .header-text[data-v-3cc60c02],.header-primary .fixed-header-content .header-text[data-v-3cc60c02]{color:var(--text-white)}.base-icon-wrap[data-v-d6ddf824]{width:32px;height:32px;display:flex;cursor:default;align-items:center;background:inherit;flex-flow:row nowrap;justify-content:center;border-radius:var(--radius)}.base-icon-wrap i[data-v-d6ddf824]{font-size:var(--icon-default)}.event[data-v-d6ddf824]{cursor:pointer;transition:all .3s var(--ease-out)}.event[data-v-d6ddf824]:hover{background:var(--hover-gray)}.event:hover i[data-v-d6ddf824]{color:var(--color-primary)!important}.plain[data-v-d6ddf824]{width:auto;height:auto}.disable[data-v-d6ddf824]{cursor:not-allowed}.disable i[data-v-d6ddf824]{color:var(--color-gray-d)!important}.plain+.plain[data-v-d6ddf824]{margin-left:var(--margin-4)}.base-text-wrap[data-v-554ddf9a]{height:100%;overflow:hidden;background:inherit;box-sizing:border-box}.base-text-wrap .base-title span[data-v-554ddf9a]{color:var(--font-color-s);font-size:var(--font-size-base)}.base-text-wrap .base-value[data-v-554ddf9a]{width:100%}.base-text-wrap .base-value span[data-v-554ddf9a]{width:100%;text-align:left;overflow:hidden;white-space:nowrap;display:inline-block;text-overflow:ellipsis;color:var(--font-color-d);font-weight:var(--font-weight-g);font-size:var(--font-size-base)}.base-text-wrap+.base-text-wrap[data-v-554ddf9a]{padding-left:calc(var(--padding-5)*1.5);border-left:1px solid var(--color-border)}.base-line-info-item[data-v-084cede4]{width:100%;height:auto;display:flex;align-items:center;flex-flow:row nowrap;justify-content:space-between}.base-line-info-item .infor-label[data-v-084cede4]{display:flex;align-items:center}.base-line-info-item .infor-label span[data-v-084cede4]{color:var(--font-color-s);font-size:var(--font-size-base)}.base-line-info-item .infor-value[data-v-084cede4]{box-sizing:border-box;padding:var(--padding-5) calc(var(--padding-5)*1.5)}.base-line-info-item .infor-value span[data-v-084cede4]{color:var(--font-color-d);font-size:var(--font-size-base);font-weight:var(--font-weight-g)}.base-line-info-item .infor-label span[data-v-084cede4],.base-line-info-item .infor-value span[data-v-084cede4]{width:100%;cursor:default;overflow:hidden;white-space:nowrap;display:inline-block;text-overflow:ellipsis}.base-line-info-item .infor-label .line-infor-slot-wrap[data-v-084cede4],.base-line-info-item .infor-value .line-infor-slot-wrap[data-v-084cede4]{display:flex;flex-flow:row nowrap}.base-line-info-group[data-v-1547a611]{box-sizing:border-box;padding:var(--padding-5)}.base-line-info-group .line-group-wrap[data-v-1547a611]{display:flex;align-items:center;flex-flow:row nowrap;justify-content:flex-start}.page-wrap[data-v-03f49306]{width:100%;height:auto;display:flex;align-items:center;flex-flow:row nowrap;justify-content:center}.table-wrap[data-v-4e4a07dc]{overflow:hidden;border-top:0;border-bottom:0;border-radius:calc(var(--radius)*2);border:1px solid var(--color-table-border)}.plain-table-header-text[data-v-4e4a07dc]{color:var(--font-color-d);font-size:var(--font-size-base);font-weight:var(--font-weight-kg)}[data-v-4e4a07dc] .el-table__header-wrapper,[data-v-4e4a07dc] thead tr th{background:var(--color-gray-d)!important}.section-wrap[data-v-6b33111a]{width:100%;height:auto}.section-wrap .section-header[data-v-6b33111a]{width:100%;display:flex;height:auto;align-items:center;flex-flow:row nowrap;padding:var(--padding-2) var(--padding-4);background:var(--hover-gray);justify-content:space-between;border-radius:calc(var(--radius)*2)}.section-wrap .section-header .header-left[data-v-6b33111a]{max-width:60%;display:flex;align-items:center;flex-flow:row nowrap;justify-content:space-between}.section-wrap .section-header .header-right[data-v-6b33111a]{max-width:40%;display:flex;align-items:center;flex-flow:row nowrap;justify-content:space-between}.section-wrap .header-text[data-v-6b33111a]{color:var(--font-color-d);font-size:var(--font-size-base);font-weight:var(--font-weight-kg)}.section-wrap .section-content[data-v-6b33111a]{padding:calc(var(--padding-4)*2) 0}.svg-icon[data-v-2c9d67fe]{width:1em;height:1em;fill:currentColor;overflow:hidden}.svg-external-icon[data-v-2c9d67fe]{background-color:currentColor;-webkit-mask-size:cover!important;mask-size:cover!important;display:inline-block}.base-time-type-select-wrap[data-v-7bad73b2]{width:auto;height:auto;overflow:hidden;border-radius:calc(var(--radius)*2)}.base-time-type-select-wrap .time-type-select-input[data-v-7bad73b2]{background:var(--color-gray-m)}.base-time-type-select-wrap[data-v-7bad73b2] .el-input__inner{font-weight:var(--font-weight-kg);border-color:transparent}.base-time-type-select-wrap .is-open[data-v-7bad73b2]{background:var(--color-primary)}.base-time-type-select-wrap .is-open[data-v-7bad73b2] .el-icon-arrow-up,.base-time-type-select-wrap .is-open[data-v-7bad73b2] .el-input__inner{color:#fff!important}.time-type-select-content[data-v-7bad73b2]{width:348px;height:348px;background:var(--bg-white)}.time-type-select-content .content-line-wrap[data-v-7bad73b2]{box-sizing:border-box;padding:var(--padding-5) 0}.time-type-select-content .content-line-wrap .content-line[data-v-7bad73b2]{width:100%;height:auto;display:flex;align-items:center;flex-flow:row nowrap;margin-bottom:var(--margin-2);justify-content:space-between}.time-type-select-content .content-line-wrap .content-line .line-item-wrap[data-v-7bad73b2]{height:auto;display:flex;align-items:center;flex-flow:row nowrap;width:calc(100% - 60px);justify-content:space-between}.time-type-select-content .content-line-wrap .content-line .line-item-wrap .line-item[data-v-7bad73b2]{width:30%;height:34px;cursor:pointer;line-height:34px;text-align:center;border-radius:calc(var(--radius)*2)}.time-type-select-content .content-line-wrap .content-line .line-item-wrap .line-item[data-v-7bad73b2]:hover{background:var(--color-gray-m)}.time-type-select-content .content-line-wrap .content-line .line-item-wrap .line-item span[data-v-7bad73b2]{color:var(--font-color-d);font-size:var(--font-size-base)}.time-type-select-content .content-line-wrap .content-line .line-item-wrap .select[data-v-7bad73b2]{background:var(--color-primary)}.time-type-select-content .content-line-wrap .content-line .line-item-wrap .select span[data-v-7bad73b2]{color:#fff}.time-type-select-content .content-line-wrap .content-line .line-item-wrap .select[data-v-7bad73b2]:hover{background:var(--color-primary)}.time-type-select-content .content-line-wrap .content-line .line-item-wrap .select:hover span[data-v-7bad73b2]{color:#fff}.time-type-select-content .type-des[data-v-7bad73b2]{width:60px;text-align:center;color:var(--font-color-s);font-size:var(--font-size-s)}.time-type-select-content .button-handle-wrap[data-v-7bad73b2],.time-type-select-content .time-type-custom-wrap[data-v-7bad73b2]{height:auto;box-sizing:border-box;padding:calc(var(--padding-5)*1) 0;border-top:2px solid var(--color-border)}.time-type-select-content .time-type-custom-wrap[data-v-7bad73b2]{display:flex;flex-flow:column;align-items:flex-start;justify-content:center;height:calc(100% - 260px)}.toggle-wrap[data-v-dc71c49c]{height:auto;display:inline-block;width:auto!important;padding:var(--padding-2);background:var(--bg-gray);border-radius:calc(var(--radius)*1)}.toggle-wrap .toggle-item-wrap[data-v-dc71c49c]{cursor:pointer;display:inline-block;border-radius:calc(var(--radius)*1)}.toggle-wrap .toggle-item-wrap span[data-v-dc71c49c]{color:var(--font-color-m);font-size:var(--font-size-s)}.toggle-wrap .toggle-item-wrap[data-v-dc71c49c]:not(.selected):hover{background:var(--color-gray-d)}.toggle-wrap .toggle-item-wrap:not(.selected):hover span[data-v-dc71c49c]{color:var(--font-color-d)}.toggle-wrap .toggle-item-wrap+.toggle-item-wrap[data-v-dc71c49c]{margin-left:var(--margin-2)}.toggle-wrap .selected[data-v-dc71c49c]{background:var(--bg-white);box-shadow:0 3px 5px rgba(13,20,36,.18),0 0 1px rgba(13,20,36,.29)}.min .toggle-item-wrap[data-v-dc71c49c]{line-height:24px;padding:0 var(--padding-3)}.middle .toggle-item-wrap[data-v-dc71c49c]{line-height:36px;padding:0 calc(var(--padding-3)*2)}.middle .toggle-item-wrap span[data-v-dc71c49c]{font-size:var(--font-size-base)}.big .toggle-item-wrap[data-v-dc71c49c]{line-height:48px;padding:0 calc(var(--padding-3)*3)}.big .toggle-item-wrap span[data-v-dc71c49c]{font-size:var(--font-size-l)}[data-v-dc71c49c] .base-icon-wrap{width:24px!important;height:24px!important;cursor:pointer!important}[data-v-dc71c49c] .event{color:inherit;background:inherit!important}.form-item-wrap[data-v-a1dedff0]{width:100%;height:auto;position:relative;border-radius:calc(var(--radius)*2)}.form-item-wrap .item-content[data-v-a1dedff0]{display:flex;min-height:32px;align-items:center;flex-flow:row nowrap;box-sizing:border-box;border-radius:inherit;background:var(--color-gray-s);justify-content:space-between;border:2px solid var(--font-color-ds);padding:var(--padding-1) var(--padding-3)}.form-item-wrap .item-content[data-v-a1dedff0]:hover .base-icon-wrap{visibility:visible}.form-item-wrap .item-content[data-v-a1dedff0] .base-icon-wrap{width:24px;height:24px;visibility:hidden}.form-item-wrap .item-content .content-value[data-v-a1dedff0]{display:inline-block;color:var(--font-color-d);font-size:var(--font-size-s);font-weight:var(--font-weight-g)}.form-item-wrap .item-content .warn[data-v-a1dedff0]{color:var(--color-warn)}.form-item-wrap .item-content .error[data-v-a1dedff0]{color:var(--color-error)}.form-item-wrap .item-content .success[data-v-a1dedff0]{color:var(--color-success)}.form-item-wrap .item-content .click[data-v-a1dedff0]{cursor:pointer;font-weight:var(--font-weight-kg);color:var(--color-primary)!important}.form-item-wrap .item-content .click[data-v-a1dedff0]:hover{text-decoration:underline}.form-item-wrap .item-handle-wrap[data-v-a1dedff0]{width:100%;min-height:32px;border-radius:inherit}.form-item-wrap .item-handle-wrap[data-v-a1dedff0] .el-input__inner,.form-item-wrap .item-handle-wrap[data-v-a1dedff0] .el-input__prefix i{font-weight:var(--font-weight-kg)!important}.form-item-wrap .checkbox[data-v-a1dedff0],.form-item-wrap .radio[data-v-a1dedff0],.form-item-wrap .template[data-v-a1dedff0],.form-item-wrap .textarea[data-v-a1dedff0]{box-sizing:border-box;background:var(--hover-gray);border:2px solid var(--color-border);padding:var(--padding-1) var(--padding-3)}.form-item-wrap .bottom-handle-wrap[data-v-a1dedff0]{z-index:2;right:0;width:auto;height:auto;display:flex;bottom:-10px;position:absolute;align-items:center;flex-flow:row nowrap;transform:translateY(100%);justify-content:space-between}.form-item-wrap .bottom-handle-wrap .dropdown-button[data-v-a1dedff0]{box-shadow:var(--shadow)}.disabled[data-v-a1dedff0]{cursor:not-allowed!important}.disabled .content-value[data-v-a1dedff0]{color:var(--font-color-ds)!important}.pro_form_content[data-v-47f91511]{width:100%;height:auto}.pro_form_content .form-line-box[data-v-47f91511]{height:auto;display:flex;flex-flow:row nowrap}.pro_form_content .form-line-box .item-label[data-v-47f91511]{font-size:var(--font-size-base);color:var(--form-label-color)!important}.pro_form_content[data-v-47f91511] .el-form-item__content{width:100%!important;box-sizing:border-box;padding-right:var(--padding-5);margin-left:0!important}.pro_form_content .chunk-1[data-v-47f91511]{width:100%}.pro_form_content .chunk-2[data-v-47f91511]{width:50%}.pro_form_content .chunk-3[data-v-47f91511]{width:33%}.pro_form_content .flex-row[data-v-47f91511]{display:flex;align-items:center;flex-flow:row nowrap;justify-content:flex-start}.pro_form_content .flex-column[data-v-47f91511]{display:flex;flex-flow:column nowrap;justify-content:center;align-items:flex-start}.pro_form_content .form-footer[data-v-47f91511]{margin-top:var(--margin-5)}.dialog-form-content[data-v-05694e16]{width:100%;height:100%;overflow-y:auto}.dialog-form-content .dialog-form-content-item[data-v-05694e16]{width:100%;height:auto}.dialog-form-content .dialog-form-content-item .content-item-header[data-v-05694e16]{width:100%;height:auto;display:flex;position:relative;align-items:center;flex-flow:row nowrap;justify-content:flex-start;margin-bottom:var(--margin-4)}.dialog-form-content .dialog-form-content-item .content-item-header[data-v-05694e16]:before{content:"";top:0;width:4px;height:100%;left:var(--margin-2);position:absolute;display:inline-block;background:var(--color-primary);border-radius:calc(var(--radius)*2)}.dialog-form-content .dialog-form-content-item .content-item-header .header-text[data-v-05694e16]{color:var(--font-color-d);font-size:var(--font-size-base);font-weight:var(--font-weight-kg);margin-left:calc(var(--margin-5)*2)}.pro-form-wrap[data-v-17b9178d]{width:100%;height:auto;margin-bottom:var(--margin-5)}.pro-form-wrap .pro-form-wrap-header[data-v-17b9178d]{width:100%;height:auto;background:var(--hover-gray)}
@@ -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
- })