ff-ui-plus 2.0.7 → 2.0.8

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/LICENSE CHANGED
@@ -1,21 +1,21 @@
1
- MIT License
2
-
3
- Copyright (c) 2023 wocwin
4
-
5
- Permission is hereby granted, free of charge, to any person obtaining a copy
6
- of this software and associated documentation files (the "Software"), to deal
7
- in the Software without restriction, including without limitation the rights
8
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
- copies of the Software, and to permit persons to whom the Software is
10
- furnished to do so, subject to the following conditions:
11
-
12
- The above copyright notice and this permission notice shall be included in all
13
- copies or substantial portions of the Software.
14
-
15
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
- SOFTWARE.
1
+ MIT License
2
+
3
+ Copyright (c) 2023 zhangpengfeia
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
package/README.md CHANGED
@@ -1,9 +1,5 @@
1
1
  # FF-ui-Plus
2
2
 
3
- ## [FF-ui-Plus 使用 Demo 项目](https://github.com/wocwin/wocwin-admin)
4
-
5
- > `wocwin-admin`是基于 Vue3.3、TypeScript、Vite4、Pinia、Element-Plus 开源的一套后台管理模板;此项目全面使用了`FF-ui-Plus`二次封装基础组件库
6
-
7
3
  ## 介绍
8
4
 
9
5
  > 基于 vue3+ ts+ Element-plus 二次封装组件
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ff-ui-plus",
3
- "version": "2.0.7",
3
+ "version": "2.0.8",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
@@ -24,10 +24,10 @@
24
24
  "vite": "^5.2.9",
25
25
  "vue": "^3.4.21",
26
26
  "vue-tsc": "1.8.27",
27
- "@ff-ui-plus/resolver": "0.0.2",
28
27
  "@ff-ui-plus/components": "0.0.1",
29
28
  "@ff-ui-plus/eslint-config": "0.0.2",
30
29
  "@ff-ui-plus/theme-chalk": "0.0.7",
30
+ "@ff-ui-plus/resolver": "0.0.2",
31
31
  "@ff-ui-plus/hooks": "0.0.1",
32
32
  "@ff-ui-plus/locale": "0.0.1",
33
33
  "@ff-ui-plus/types": "1.0.0",
@@ -120,7 +120,7 @@
120
120
  "vue3",
121
121
  "ff-ui",
122
122
  "ff-ui-plus",
123
- "wocwin",
123
+ "zhangpengfeia",
124
124
  "二次封装组件",
125
125
  "封装组件",
126
126
  "components"
@@ -2,4 +2,4 @@ import AdaptivePage from "./src/index.vue"
2
2
 
3
3
  export * from "./src/type"
4
4
 
5
- export const TAdaptivePage = AdaptivePage
5
+ export const FAdaptivePage = AdaptivePage
@@ -1,8 +1,8 @@
1
1
  <template>
2
2
  <div class="t_adaptive_page">
3
3
  <div
4
- :style="{ width: isShow('leftContent') ? `${leftWidth}px` : '0px' }"
5
4
  v-if="isShow('leftContent')"
5
+ :style="{ width: isShow('leftContent') ? `${leftWidth}px` : '0px' }"
6
6
  class="left_content"
7
7
  >
8
8
  <div class="left_tree">
@@ -10,7 +10,7 @@
10
10
  </div>
11
11
  </div>
12
12
  <t-layout-page class="right_content" :style="pageStyle">
13
- <t-layout-page-item class="table_search" :style="queryPageStyle" v-if="$attrs.opts">
13
+ <t-layout-page-item v-if="$attrs.opts" class="table_search" :style="queryPageStyle">
14
14
  <t-query-condition v-bind="$attrs" ref="TQueryConditionPage">
15
15
  <template v-for="(_index, name) in slots" #[name]="data">
16
16
  <slot :name="name" v-bind="data" />
@@ -25,9 +25,9 @@
25
25
  >
26
26
  <t-table
27
27
  v-bind="{ columnSetting, name, ...$attrs }"
28
- :isSlotToolbar="isShow('toolbar')"
29
- :isSlotTitle="isShow('title')"
30
28
  ref="TTablePage"
29
+ :is-slot-toolbar="isShow('toolbar')"
30
+ :is-slot-title="isShow('title')"
31
31
  >
32
32
  <template v-for="(_index, name) in slots" #[name]="data">
33
33
  <slot :name="name" v-bind="data" />
@@ -40,17 +40,17 @@
40
40
  </template>
41
41
 
42
42
  <script setup lang="ts">
43
- import TLayoutPage from "../../layout-page/src/index.vue"
44
- import TLayoutPageItem from "../../layout-page-item/src/index.vue"
45
- import TTable from "../../table/src/index.vue"
46
- import TQueryCondition from "../../query-condition/src/index.vue"
47
- import { getCurrentInstance, onMounted, ref, useSlots } from "vue"
48
- import type { TAdaptivePageProps } from "./type"
43
+ import { getCurrentInstance, onMounted, ref, useSlots } from 'vue'
44
+ import TLayoutPage from '../../layout-page/src/index.vue'
45
+ import TLayoutPageItem from '../../layout-page-item/src/index.vue'
46
+ import TTable from '../../table/src/index.vue'
47
+ import TQueryCondition from '../../query-condition/src/index.vue'
48
+ import type { FAdaptivePageProps } from "./type"
49
49
 
50
50
  defineOptions({
51
- name: "TAdaptivePage"
51
+ name: "FAdaptivePage"
52
52
  })
53
- withDefaults(defineProps<TAdaptivePageProps>(), {
53
+ withDefaults(defineProps<FAdaptivePageProps>(), {
54
54
  leftWidth: 260,
55
55
  pageStyle: () => ({}),
56
56
  columnSetting: false,
@@ -1,4 +1,4 @@
1
- export interface TAdaptivePageProps {
1
+ export interface FAdaptivePageProps {
2
2
  leftWidth?: number | string
3
3
  pageStyle?: Record<string, string>
4
4
  columnSetting?: boolean
@@ -2,4 +2,4 @@ import Chart from "./src/index.vue"
2
2
 
3
3
  export * from "./src/type"
4
4
 
5
- export const TChart = Chart
5
+ export const FChart = Chart
@@ -1,10 +1,10 @@
1
1
  <template>
2
2
  <div class="t-chart" v-bind="$attrs">
3
- <div v-show="!formatEmpty" class="t-chart-container" :id="id" ref="echartRef" />
3
+ <div v-show="!formatEmpty" :id="id" ref="echartRef" class="t-chart-container" />
4
4
  <slot v-if="formatEmpty" name="empty">
5
5
  <el-empty v-bind="$attrs" :description="description" />
6
6
  </slot>
7
- <slot></slot>
7
+ <slot />
8
8
  </div>
9
9
  </template>
10
10
 
@@ -22,14 +22,14 @@ import {
22
22
  } from "vue"
23
23
  import { useResizeObserver } from "@vueuse/core"
24
24
  import { debounce, toLine } from "../../utils"
25
- import type { TChartProps } from "./type"
25
+ import type { FChartProps } from "./type"
26
26
 
27
27
  defineOptions({
28
- name: "TChart"
28
+ name: "FChart"
29
29
  })
30
30
  const { proxy } = getCurrentInstance() as any
31
31
 
32
- const props = withDefaults(defineProps<TChartProps>(), {
32
+ const props = withDefaults(defineProps<FChartProps>(), {
33
33
  options: () => ({}),
34
34
  id: () => Math.random().toString(36).substring(2, 8),
35
35
  theme: "",
@@ -1,4 +1,4 @@
1
- export interface TChartProps {
1
+ export interface FChartProps {
2
2
  options?: Record<string, any>
3
3
  id?: string
4
4
  theme?: string
@@ -1,4 +1,4 @@
1
1
  import LayoutPage from "./src/index.vue"
2
- export type { TLayoutPageProps } from "./src/index.vue"
2
+ export type { FLayoutPageProps } from "./src/index.vue"
3
3
 
4
- export const TLayoutPage = LayoutPage
4
+ export const FLayoutPage = LayoutPage
@@ -1,12 +1,12 @@
1
1
  <template>
2
2
  <div
3
- ref="TLayoutPageRef"
4
- class="t_layout_page"
3
+ ref="FLayoutPageRef"
4
+ class="f_layout_page"
5
5
  :class="{ layout_page_no_margin: isNoMargin }"
6
6
  @scroll="(e:any) => scrollTop = e.target.scrollTop"
7
7
  >
8
8
  <slot />
9
- <div class="back_to_top" v-if="showGoTopButton">
9
+ <div v-if="showGoTopButton" class="back_to_top">
10
10
  <div v-if="isShowGoTopButton" @click="backToTop">
11
11
  <el-icon v-bind="{ size: 24, ...$attrs }"><CaretTop /></el-icon>
12
12
  </div>
@@ -17,16 +17,16 @@
17
17
  import { onActivated, onMounted, ref, watch } from "vue"
18
18
  import { CaretTop } from "@element-plus/icons-vue"
19
19
  defineOptions({
20
- name: "TLayoutPage"
20
+ name: "FLayoutPage"
21
21
  })
22
- export interface TLayoutPageProps {
22
+ export interface FLayoutPageProps {
23
23
  keepScrollDisabled?: boolean
24
24
  isNoMargin?: boolean
25
25
  showGoTopButton?: boolean
26
26
  scrollToTop?: number
27
27
  }
28
28
 
29
- const props = withDefaults(defineProps<TLayoutPageProps>(), {
29
+ const props = withDefaults(defineProps<FLayoutPageProps>(), {
30
30
  keepScrollDisabled: false,
31
31
  isNoMargin: false,
32
32
  showGoTopButton: true,
@@ -34,7 +34,7 @@ const props = withDefaults(defineProps<TLayoutPageProps>(), {
34
34
  })
35
35
  const isShowGoTopButton = ref(false)
36
36
 
37
- const TLayoutPageRef = ref(null)
37
+ const FLayoutPageRef = ref(null)
38
38
  const scrollTop = ref(0)
39
39
  watch(
40
40
  () => scrollTop.value,
@@ -48,13 +48,13 @@ watch(
48
48
  )
49
49
  const backToTop = () => {
50
50
  scrollTop.value = 0
51
- ;(TLayoutPageRef.value as any).scrollTo({
51
+ ;(FLayoutPageRef.value as any).scrollTo({
52
52
  top: 0,
53
53
  behavior: "smooth"
54
54
  })
55
55
  }
56
56
  onMounted(() => {
57
- const pageItems = (TLayoutPageRef.value as any).querySelectorAll(".t_layout_page_item")
57
+ const pageItems = (FLayoutPageRef.value as any).querySelectorAll(".f_layout_page_item")
58
58
  if (pageItems.length === 2) {
59
59
  pageItems[0].style.marginBottom = "8px"
60
60
  }
@@ -68,7 +68,7 @@ onMounted(() => {
68
68
 
69
69
  onActivated(() => {
70
70
  if (!props.keepScrollDisabled) {
71
- ;(TLayoutPageRef.value as any).scrollTop = scrollTop
71
+ ;(FLayoutPageRef.value as any).scrollTop = scrollTop
72
72
  }
73
73
  })
74
74
  </script>
@@ -1,3 +1,3 @@
1
1
  import LayoutPageItem from "./src/index.vue"
2
2
 
3
- export const TLayoutPageItem = LayoutPageItem
3
+ export const FLayoutPageItem = LayoutPageItem
@@ -1,11 +1,11 @@
1
1
  <template>
2
- <section class="t_layout_page_item" :class="{ page_item_no_margin: isNoMargin }">
2
+ <section class="f_layout_page_item" :class="{ page_item_no_margin: isNoMargin }">
3
3
  <slot />
4
4
  </section>
5
5
  </template>
6
- <script setup lang="ts" name="TLayoutPageItem">
6
+ <script setup lang="ts" name="FLayoutPageItem">
7
7
  defineOptions({
8
- name: "TLayoutPageItem"
8
+ name: "FLayoutPageItem"
9
9
  })
10
10
  defineProps({
11
11
  isNoMargin: {
@@ -8,16 +8,16 @@
8
8
  */
9
9
  import type { Component } from "vue"
10
10
 
11
- import { TAdaptivePage } from "@ff-ui-plus/components/adaptive-page"
11
+ import { FAdaptivePage } from "@ff-ui-plus/components/adaptive-page"
12
12
  import { TButton } from "@ff-ui-plus/components/button"
13
- import { TChart } from "@ff-ui-plus/components/chart"
13
+ import { FChart } from "@ff-ui-plus/components/chart"
14
14
  import { TCheckbox } from "@ff-ui-plus/components/checkbox"
15
15
  import { TDatePicker } from "@ff-ui-plus/components/date-picker"
16
16
  import { TDetail } from "@ff-ui-plus/components/detail"
17
17
  import { TForm } from "@ff-ui-plus/components/form"
18
18
  import { FInput } from "@ff-ui-plus/components/input"
19
- import { TLayoutPage } from "@ff-ui-plus/components/layout-page"
20
- import { TLayoutPageItem } from "@ff-ui-plus/components/layout-page-item"
19
+ import { FLayoutPage } from "@ff-ui-plus/components/layout-page"
20
+ import { FLayoutPageItem } from "@ff-ui-plus/components/layout-page-item"
21
21
  import { TModuleForm } from "@ff-ui-plus/components/module-form"
22
22
  import { TQueryCondition } from "@ff-ui-plus/components/query-condition"
23
23
  import { TRadio } from "@ff-ui-plus/components/radio"
@@ -30,16 +30,16 @@ import { TTabs } from "@ff-ui-plus/components/tabs"
30
30
  import { TTimerBtn } from "@ff-ui-plus/components/timer-btn"
31
31
 
32
32
  const plugins: Component[] = [
33
- TAdaptivePage,
33
+ FAdaptivePage,
34
34
  TButton,
35
- TChart,
35
+ FChart,
36
36
  TCheckbox,
37
37
  TDatePicker,
38
38
  TDetail,
39
39
  TForm,
40
40
  FInput,
41
- TLayoutPage,
42
- TLayoutPageItem,
41
+ FLayoutPage,
42
+ FLayoutPageItem,
43
43
  TModuleForm,
44
44
  TQueryCondition,
45
45
  TRadio,
@@ -1,8 +1,8 @@
1
1
  {
2
- "name": "@wocwin/t-ui-plus",
2
+ "name": "@zhangpengfeia/t-ui-plus",
3
3
  "version": "2.0.7",
4
4
  "description": "Page level components developed based on Element Plus.",
5
- "author": "wocwin",
5
+ "author": "zhangpengfeia",
6
6
  "private": false,
7
7
  "keywords": [
8
8
  "element-ui",
@@ -14,15 +14,15 @@
14
14
  "vue3",
15
15
  "t-ui",
16
16
  "t-ui-plus",
17
- "wocwin",
17
+ "zhangpengfeia",
18
18
  "vitepress-theme-demoblock",
19
19
  "二次封装组件",
20
20
  "封装组件",
21
21
  "components"
22
22
  ],
23
- "homepage": "https://wocwin.github.io/t-ui-plus/",
23
+ "homepage": "https://zhangpengfeia.github.io/t-ui-plus/",
24
24
  "bugs": {
25
- "url": "https://github.com/wocwin/t-ui-plus/issues"
25
+ "url": "https://github.com/zhangpengfeia/t-ui-plus/issues"
26
26
  },
27
27
  "license": "MIT",
28
28
  "main": "lib/index.js",
@@ -77,7 +77,7 @@
77
77
  "jsdelivr": "index.js",
78
78
  "repository": {
79
79
  "type": "git",
80
- "url": "git+https://github.com/wocwin/t-ui-plus.git"
80
+ "url": "git+https://github.com/zhangpengfeia/t-ui-plus.git"
81
81
  },
82
82
  "publishConfig": {
83
83
  "access": "public",
@@ -1 +1 @@
1
- .t_adaptive_page{align-content:center;display:flex;height:100%;overflow:hidden;width:100%}.t_adaptive_page .left_content{background:var(--el-bg-color);margin:8px 0 8px 8px}.t_adaptive_page .left_content .left_tree{display:flex;flex-direction:column;height:100%;overflow-y:auto;padding:10px;width:100%}.t_adaptive_page .right_content{display:flex;flex:1;flex-direction:column;height:100%;overflow:hidden;width:100%}.t_adaptive_page .right_content .table_main{flex:1;height:100vh;overflow-y:auto;width:100%}.t_adaptive_page .right_content .table_main .t-table{display:flex;flex:1;flex-direction:column;height:100%;width:100%}.t_adaptive_page .right_content .t_table_self-filling .t-table .el-table{height:100vh}.t-button-tip{height:auto;padding:0}.t-button-tip:focus,.t-button-tip:hover{animation:jump .3s}@keyframes jump{0%{transform:translateY(0)}50%{transform:translateY(-3px)}to{transform:translateY(0)}}.t-chart{position:relative}.t-chart,.t-chart-container{height:100%;width:100%}.t-date-picker{width:100%}.t_detail .el-descriptions__body .el-descriptions__label:not(.is-bordered-label){margin-right:10px}.t-form{display:flex;flex-wrap:wrap}.t-form .el-form-item{align-items:center}.t-form .el-form-item .el-form-item__content .el-date-editor,.t-form .el-form-item .el-form-item__content .el-input,.t-form .el-form-item .el-form-item__content .el-select,.t-form .el-form-item .el-form-item__content .el-textarea{width:100%}.t-form .el-form-item .el-form-item__content .el-input-number .el-input{width:inherit}.t-form .asterisk-left .el-form-item__label{margin-left:5px}.t-form .t-margin-top-5{margin-top:5px}.t-form .el-input-number .el-input .el-input__inner{text-align:left}.t-form .render_label .el-form-item__label{align-items:center;display:flex;justify-content:flex-end}.t-form .render_label .el-form-item__label:before{margin-top:1px}.t-form .render_laber_position_left .el-form-item__label,.t-form.el-form--label-top .render_label .el-form-item__label{justify-content:flex-start}.t-form .label_render{align-items:center;display:flex;justify-content:flex-end}.t-form .text_show{color:var(--el-text-color-primary)}.t-form .slot_label .el-form-item__content label{color:var(--el-text-color-primary);margin-right:12px}.t-form .flex-box{display:flex}.t-form .flex-ver{align-items:center;justify-content:center}.t-form .footer_btn{width:100%}.t_layout_page{display:flex;flex-direction:column;height:100%;overflow:auto;padding:8px;width:100%}.t_layout_page .back_to_top{background:#fff;border-radius:5px;bottom:100px;box-shadow:0 5px 6px 2px rgba(0,0,0,.5);opacity:.6;position:absolute;right:10px;z-index:100}.t_layout_page .back_to_top:hover{opacity:1}.t_layout_page .back_to_top>div{align-items:center;cursor:pointer;display:flex;height:40px;justify-content:center;width:40px}.t_layout_page .back_to_top>div .el-icon{color:#9b59b6}.layout_page_no_margin{padding:0}.t_layout_page_item{background:var(--el-bg-color);border-radius:4px;padding:16px}.page_item_no_margin{margin:0;padding:0}.t_module_form{background-color:var(--el-bg-color-page);height:100%;overflow:auto;position:relative;text-align:left}.t_module_form,.t_module_form .scroll_wrap{display:flex;flex-direction:column;flex-grow:1}.t_module_form .scroll_wrap .el-page-header{background-color:var(--el-bg-color);box-sizing:border-box;color:var(--el-text-color-primary);font-feature-settings:"tnum";font-size:14px;font-variant:tabular-nums;line-height:1.5;list-style:none;margin:0;padding:16px 24px;position:relative}.t_module_form .scroll_wrap .el-page-header .el-page-header__breadcrumb{margin:0}.t_module_form .scroll_wrap .el-page-header .el-page-header__left{align-items:center;color:var(--el-text-color-primary);margin:0;width:100%}.t_module_form .scroll_wrap .el-page-header .el-page-header__left .el-icon-back{font-weight:700}.t_module_form .scroll_wrap .el-page-header .el-page-header__left .el-page-header__title{font-size:18px;font-weight:700}.t_module_form .scroll_wrap .el-page-header .el-page-header__content{align-items:center;display:flex;flex:60%;justify-content:space-between}.t_module_form .scroll_wrap .el-page-header .el-page-header__content .sub_title{flex:30%}.t_module_form .scroll_wrap .el-page-header .el-page-header__content .extra{display:flex;flex:70%;justify-content:flex-end}.t_module_form .scroll_wrap .isShowBack .el-page-header__left .el-page-header__icon,.t_module_form .scroll_wrap .noContent .el-page-header__left .el-divider{display:none}.t_module_form .scroll_wrap .t_detail .el-collapse{border:none}.t_module_form .scroll_wrap .t_detail .el-collapse .el-collapse-item{background-color:var(--el-bg-color);border:none;margin-top:10px}.t_module_form .scroll_wrap .t_detail .el-collapse .el-collapse-item .el-collapse-item__header{align-items:center;border-bottom:1px solid var(--el-border-color);display:flex;font-size:14px;justify-content:space-between;padding-left:35px;position:relative}.t_module_form .scroll_wrap .t_detail .el-collapse .el-collapse-item .el-collapse-item__header .t_btn{margin-right:15px}.t_module_form .scroll_wrap .t_detail .el-collapse .el-collapse-item .el-collapse-item__header .el-collapse-item__arrow{color:inherit;font-style:normal;line-height:0;text-align:center;text-rendering:optimizeLegibility;text-transform:none;vertical-align:-.125em;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;display:inline-block;font-size:14px;left:14px;position:absolute;top:17px}.t_module_form .scroll_wrap .t_detail .el-collapse .el-collapse-item .el-collapse-item__wrap{border:none;padding:16px}.t_module_form .scroll_wrap .t_detail .el-collapse .el-collapse-item .el-collapse-item__wrap .el-collapse-item__content{padding-bottom:0}.t_module_form .scroll_wrap .t_detail .el-collapse .title_bold .collapse-item_title{font-weight:700}.t_module_form .scroll_wrap .t_detail .el-collapse .noTitle{margin-top:0}.t_module_form .scroll_wrap .t_detail .el-collapse .noTitle>div:first-child{display:none}.t_module_form .scroll_wrap .t_detail .el-collapse .disabledStyle .el-collapse-item__header{align-items:center;color:var(--el-collapse-header-text-color);cursor:default;display:flex;font-size:14px;justify-content:space-between;padding-left:20px}.t_module_form .scroll_wrap .t_detail .el-collapse .disabledStyle .el-collapse-item__header .el-collapse-item__arrow{display:none}.t_module_form .scroll_wrap .t_detail .el-collapse .disabledStyle .el-collapse-item__header .t_btn{margin-right:15px}.t_module_form .scroll_wrap .t_form .el-collapse{border:none}.t_module_form .scroll_wrap .t_form .el-collapse .el-collapse-item{background-color:var(--el-bg-color);border:none;margin-top:10px}.t_module_form .scroll_wrap .t_form .el-collapse .el-collapse-item .el-collapse-item__header{align-items:center;border-bottom:1px solid var(--el-border-color);display:flex;font-size:14px;justify-content:space-between;padding-left:35px;position:relative}.t_module_form .scroll_wrap .t_form .el-collapse .el-collapse-item .el-collapse-item__header .t_btn{margin-right:15px}.t_module_form .scroll_wrap .t_form .el-collapse .el-collapse-item .el-collapse-item__header .el-collapse-item__arrow{color:inherit;font-style:normal;line-height:0;text-align:center;text-rendering:optimizeLegibility;text-transform:none;vertical-align:-.125em;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;display:inline-block;font-size:14px;left:14px;position:absolute;top:17px}.t_module_form .scroll_wrap .t_form .el-collapse .el-collapse-item .el-collapse-item__wrap{border:none;padding:16px}.t_module_form .scroll_wrap .t_form .el-collapse .el-collapse-item .el-collapse-item__wrap .el-collapse-item__content{padding-bottom:0}.t_module_form .scroll_wrap .t_form .el-collapse .title_bold .collapse-item_title{font-weight:700}.t_module_form .scroll_wrap .t_form .el-collapse .noTitle>div:first-child{display:none}.t_module_form .scroll_wrap .t_form .el-collapse .disabledStyle .el-collapse-item__header{align-items:center;color:var(--el-collapse-header-text-color);cursor:default;display:flex;font-size:14px;justify-content:space-between;padding-left:20px}.t_module_form .scroll_wrap .t_form .el-collapse .disabledStyle .el-collapse-item__header .el-collapse-item__arrow{display:none}.t_module_form .scroll_wrap .t_form .el-collapse .disabledStyle .el-collapse-item__header .t_btn{margin-right:15px}.t_module_form .scroll_wrap .t_form .el-collapse-borderless{background-color:var(--el-bg-color)}.t_module_form .scroll_wrap .t_form .el-collapse-borderless .noTitle .el-collapse-header{display:none}.t_module_form .scroll_wrap .t_form .el-collapse-borderless .el-collapse-item{background-color:var(--el-bg-color);border:none;margin-top:10px}.t_module_form .scroll_wrap .t_form .el-collapse-borderless .el-collapse-item:first-child{margin-top:0}.t_module_form .scroll_wrap .t_form .el-collapse-borderless .el-collapse-item .el-collapse-header{border-bottom:1px solid var(--el-border-color)}.t_module_form .scroll_wrap .t_form .el-collapse-borderless .el-collapse-item .el-collapse-content-box{padding:16px}.t_module_form .scroll_wrap .tabs{margin:0;padding:0}.t_module_form .scroll_wrap .tabs .el-tabs .el-tabs__header{background-color:var(--el-bg-color);margin:0;padding:0 10px}.t_module_form .scroll_wrap .tabs .el-tabs .el-tabs__nav-wrap:after{height:1px}.t_module_form .handle_wrap{align-items:center;background-color:var(--el-bg-color);border-top:1px solid var(--el-border-color);bottom:0;display:flex;height:60px;justify-content:flex-end;position:fixed;right:0;text-align:right;width:100%;z-index:4}.t_module_form .handle_wrap .el-button:last-child{margin-right:15px}.t-query-condition.el-form{display:grid;gap:2px 8px;margin-bottom:-7px;position:relative;text-align:left}.t-query-condition.el-form .ant-calendar-picker,.t-query-condition.el-form .el-date-editor,.t-query-condition.el-form .el-select{width:100%}.t-query-condition.el-form .flex_end{grid-area:submit_btn;margin-top:2px}.t-query-condition.el-form .flex_end .el-form-item__content{align-items:center;display:flex;overflow:visible!important}.t-query-condition.el-form .btn .el-form-item__content{display:flex}.t-query-condition.el-form .btn .more_dropdown_icon{cursor:pointer;margin-left:10px}.t-query-condition.el-form .btn_flex_end .el-form-item__content{justify-content:flex-end}.t-query-condition.el-form .btn_label_position_top{align-items:flex-end;display:flex}.t-query-condition.el-form .el-form-item{margin-bottom:10px}.t-query-condition.el-form .el-form-item .el-form-item__label{flex-shrink:0;min-width:60px;padding-left:8px}.t-query-condition.el-form .el-form-item .el-form-item__content{flex-grow:1;margin-left:0!important}.t-query-condition.el-form .render_label .el-form-item__label{align-items:center;cursor:pointer;display:flex;justify-content:flex-end}.t-query-condition.el-form .render_label .el-form-item__label:before{margin-top:1px}.t-query-condition.el-form .render_label_position_left .el-form-item__label,.t-query-condition.el-form .render_label_position_top .el-form-item__label{justify-content:flex-start}.t-query-condition.el-form .btn_check{position:relative;top:-1px}.t-query-condition.el-form .btn_reset{margin-left:8px;position:relative;top:-1px}.t_query_condition_more.el-popover{padding:15px}.t_query_condition_more.el-popover .inside_box{display:flex;flex-direction:column}.t_query_condition_more.el-popover .inside_box .inside_box_title{align-items:center;display:flex;justify-content:space-between}.t_query_condition_more.el-popover .inside_box .inside_box_main{display:grid;grid-template-columns:repeat(2,minmax(100px,50%))}.t_query_condition_more.el-popover .inside_box .inside_box_main .el-checkbox{align-items:center;display:flex}.t_query_condition_more.el-popover .inside_box .inside_box_main .el-checkbox .el-checkbox__label{box-sizing:border-box;min-width:90px;overflow:hidden;text-overflow:ellipsis;word-break:break-all}.t_select .el-select-dropdown .all_checkbox{margin-left:20px}.t_select_icon{width:100%}.t_select_icon .el-button{align-items:center;color:var(--el-text-color-regular);display:flex;font-size:18px;justify-content:center}.t_select_icon .el-button .el-icon{color:var(--el-color-primary)}.t_select_icon .t_select_icon_dialog .el-dialog__body{padding:25px 20px 20px}.t_select_icon .t_select_icon_dialog .el-dialog__body .el-input{margin-bottom:10px}.t_select_icon .t_select_icon_dialog .el-dialog__body .icon-list{display:grid;grid-template-columns:repeat(auto-fill,115px);justify-content:space-evenly;max-height:60vh}.t_select_icon .t_select_icon_dialog .el-dialog__body .icon-list .icon-item{align-items:center;cursor:pointer;display:flex;flex-direction:column;padding:20px 30px;transition:all .2s;width:42px}.t_select_icon .t_select_icon_dialog .el-dialog__body .icon-list .icon-item svg{height:30px;width:30px}.t_select_icon .t_select_icon_dialog .el-dialog__body .icon-list .icon-item:hover{transform:scale(1.3)}.t_select_icon .t_select_icon_dialog .el-dialog__body .icon-list .icon-item.icon-active{color:var(--el-color-primary)}.t_select_icon .t_select_icon_dialog .el-dialog__body .icon-list .icon-item span{line-height:20px;margin-top:5px;text-align:center}.t-select-table .radioStyle .el-radio .el-radio__label{display:none}.t-select-table .radioStyle .el-radio:focus:not(.is-focus):not(:active):not(.is-disabled) .el-radio__inner{box-shadow:none}.t-select-table .radioStyle .el-table__row{cursor:pointer}.t-select-table .keyUpStyle .el-table__body tbody .current-row{color:var(--el-color-primary)!important;cursor:pointer}.t-select-table .highlightCurrentRow .current-row,.t-select-table .selected_row_style{color:var(--el-color-primary);cursor:pointer}.t-select-table .t-table-select__table{padding:10px}.t-select-table .t-table-select__table .el-table__body,.t-select-table .t-table-select__table .el-table__header{margin:0}.t-select-table .t-table-select__table .table_query_condition{overflow-x:auto;overflow-y:hidden;padding:10px;width:100%}.t-select-table .t-table-select__table .header_wrap{align-items:center;display:flex;justify-content:flex-end}.t-select-table .t-table-select__page{padding-right:10px;padding-top:5px}.t-select-table .t-table-select__page .el-pagination{align-items:center;background-color:var(--el-table-tr-bg-color);display:flex;justify-content:flex-end;margin-right:calc(2% - 20px)}.t_step-wizard{position:relative}.t_step-wizard .el-steps--simple .el-step__head{align-items:center;display:flex;justify-content:center}.t_step-wizard .content-step-main .step-last .icon-success{color:var(--el-color-primary);font-size:95px;margin-top:40px}.t_step-wizard .content-step-main .step-last .success-margin{color:var(--el-color-primary);margin-bottom:70px}.t_step-wizard .content-step-main .step_btn{align-items:center;background:var(--el-bg-color);display:flex;justify-content:center;text-align:center}.t_step-wizard .flex-box{display:flex}.t_step-wizard .flex-ver{align-items:center;justify-content:center}.t_step-wizard .flex-col{flex-direction:column}.t-table{background-color:var(--el-bg-color);z-index:0}.t-table .el-table__body-wrapper .el-table__body,.t-table .el-table__header-wrapper .el-table__header{margin:0}.t-table .el-pagination{align-items:center;background-color:var(--el-bg-color);display:flex;justify-content:flex-end;margin-right:calc(2% - 20px);margin-top:10px}.t-table .el-table .el-tooltip div{box-sizing:border-box;overflow:hidden;text-overflow:ellipsis;word-break:break-all}.t-table .el-table .el-tooltip .single_edit_cell{margin-bottom:0;overflow:visible}.t-table .el-table .el-tooltip .single_edit_cell div{overflow:visible}.t-table .el-table .single_edit_cell{cursor:pointer}.t-table .el-table .single_edit_cell .slot_edit_name{width:100%}.t-table .el-table .cell div,.t-table .multile_head_column .el-table__row .el-tooltip div{box-sizing:border-box;overflow:hidden;text-overflow:ellipsis;word-break:break-all}.t-table .el-table .cell .single_edit_cell{margin-bottom:0;overflow:visible}.t-table .el-table .cell .single_edit_cell div{overflow:visible}.t-table .el-table .cell .t_edit_cell_form_rules .single_edit_cell{margin-bottom:15px}.t-table .el-table .cell .t_edit_cell_form_rules .single_edit_cell .el-form-item__content,.t-table .el-table .cell .t_edit_cell_form_rules .single_edit_cell .el-form-item__content .el-form-item__error{overflow:visible}.t-table .el-table .cell .click_edit{align-items:center;display:flex;line-height:1}.t-table .el-table .cell .click_edit .el-icon{margin-left:2px}.t-table .el-table--border td:first-child .cell,.t-table .el-table--border th:first-child .cell{padding-left:5px}.t-table .header_wrap{align-items:center;display:flex}.t-table .header_wrap .toolbar_top{align-items:center;display:flex;flex:1;justify-content:flex-end}.t-table .header_wrap .toolbar_top .toolbar{display:flex;justify-content:flex-end;width:100%}.t-table .header_wrap .toolbar_top .el-button--small{height:32px}.t-table .header_wrap .toolbar_top .el-button--success{background-color:#355db4;border:1px solid #355db4}.t-table .header_wrap .toolbar_top .header_right_wrap{align-items:center;display:flex}.t-table .header_wrap .header_title{align-items:center;color:var(--el-text-color-primary);display:flex;flex:1;font-size:16px;font-weight:700;line-height:35px;margin-left:10px}.t-table .title-tip{align-items:center;display:flex;font-size:14px;padding-left:10px}.t-table .marginBttom{margin-bottom:-8px}.t-table .radioStyle .el-radio .el-radio__label{display:none}.t-table .radioStyle .el-radio:focus:not(.is-focus):not(:active):not(.is-disabled) .el-radio__inner{box-shadow:none}.t-table .cursor tbody .el-table__row,.t-table .radioStyle tbody .el-table__row{cursor:pointer}.t-table .row_sort tbody .el-table__row{cursor:move}.t-table .row_sort_none tbody .el-table__row{cursor:default}.t-table .row_sort_none tbody .row_drag{cursor:move}.t-table .tree_style .el-table__body-wrapper .el-table__body .cell{align-items:center;display:flex}.t-table .tree_style .el-table__body-wrapper .el-table__body .cell .el-table__expand-icon{align-items:center;display:flex;justify-content:center}.t-table .highlightCurrentRow .current-row{cursor:pointer}.t-table .highlightCurrentRow .current-row>td.el-table__cell{background-color:var(--el-table-current-row-bg-color)}.t-table .el-table--scrollable-y .el-table__body-wrapper{overflow-x:auto}.t-table .handle_wrap{background-color:var(--el-bg-color);border-top:1px solid var(--el-table-border);bottom:-8px;margin:0 -8px -8px;padding:12px 16px;position:sticky;right:0;z-index:10}.t-table .handle_wrap .el-btn{margin-left:8px}.t-table .operator .operator_btn{align-items:center;display:flex}.t-table .operator .operator_btn .oper_more_dropdown{margin-left:8px}.column_set .title{align-items:center;color:var(--el-text-color-primary);display:flex;font-size:14px;font-weight:700;justify-content:center;padding:10px 10px 0}.column_set .el-dropdown-menu{font-size:14px;padding:0}.column_set .el-dropdown-menu .el-dropdown-menu__item{align-items:flex-start;display:flex;flex-direction:column;padding:0}.column_set .el-dropdown-menu .el-dropdown-menu__item .t_table_column_setting_dropdown{display:flex;flex-direction:column;gap:10px;max-height:400px;overflow-y:auto;padding:0 10px 0 12px;width:100%}.column_set .el-dropdown-menu .el-dropdown-menu__item .t_table_column_setting_dropdown:hover{background-color:transparent}.column_set .el-dropdown-menu .el-dropdown-menu__item .t_table_column_setting_dropdown .el-tree-node .el-tree-node__content{cursor:default;padding:10px}.column_set .el-dropdown-menu .el-dropdown-menu__item .t_table_column_setting_dropdown .el-tree-node .el-tree-node__content:hover{color:var(--el-color-primary)}.column_set .el-dropdown-menu .el-dropdown-menu__item .t_table_column_setting_dropdown .el-tree-node .el-tree-node__content .el-tree-node__expand-icon{display:none}.column_set .el-dropdown-menu .el-dropdown-menu__item .t_table_column_setting_dropdown .el-tree-node .el-tree-node__content .el-tree-node__label{cursor:move;display:inline-block;width:100%}.column_set .el-dropdown-menu .el-dropdown-menu__item:not(.is-disabled):hover{background-color:transparent}.oper_more_dropdown_menu{display:flex;flex-direction:column}.oper_more_dropdown_menu .el-dropdown-menu__item{padding:6px 12px}.density_set .density_set_list{align-items:center;display:flex;flex-direction:column;gap:10px;padding:10px}.density_set .density_set_list .el-button{margin:0}.t_tabs .tabs{margin:0;padding:0}.t_tabs .tabs .el-tabs .el-tabs__header{background-color:#fff;margin:0;padding:0 10px}.t_tabs .tabs .el-tabs .el-tabs__nav-wrap:after{height:1px}
1
+ .t_adaptive_page{align-content:center;display:flex;height:100%;overflow:hidden;width:100%}.t_adaptive_page .left_content{background:var(--el-bg-color);margin:8px 0 8px 8px}.t_adaptive_page .left_content .left_tree{display:flex;flex-direction:column;height:100%;overflow-y:auto;padding:10px;width:100%}.t_adaptive_page .right_content{display:flex;flex:1;flex-direction:column;height:100%;overflow:hidden;width:100%}.t_adaptive_page .right_content .table_main{flex:1;height:100vh;overflow-y:auto;width:100%}.t_adaptive_page .right_content .table_main .t-table{display:flex;flex:1;flex-direction:column;height:100%;width:100%}.t_adaptive_page .right_content .t_table_self-filling .t-table .el-table{height:100vh}.t-button-tip{height:auto;padding:0}.t-button-tip:focus,.t-button-tip:hover{animation:jump .3s}@keyframes jump{0%{transform:translateY(0)}50%{transform:translateY(-3px)}to{transform:translateY(0)}}.t-chart{position:relative}.t-chart,.t-chart-container{height:100%;width:100%}.t-date-picker{width:100%}.t_detail .el-descriptions__body .el-descriptions__label:not(.is-bordered-label){margin-right:10px}.t-form{display:flex;flex-wrap:wrap}.t-form .el-form-item{align-items:center}.t-form .el-form-item .el-form-item__content .el-date-editor,.t-form .el-form-item .el-form-item__content .el-input,.t-form .el-form-item .el-form-item__content .el-select,.t-form .el-form-item .el-form-item__content .el-textarea{width:100%}.t-form .el-form-item .el-form-item__content .el-input-number .el-input{width:inherit}.t-form .asterisk-left .el-form-item__label{margin-left:5px}.t-form .t-margin-top-5{margin-top:5px}.t-form .el-input-number .el-input .el-input__inner{text-align:left}.t-form .render_label .el-form-item__label{align-items:center;display:flex;justify-content:flex-end}.t-form .render_label .el-form-item__label:before{margin-top:1px}.t-form .render_laber_position_left .el-form-item__label,.t-form.el-form--label-top .render_label .el-form-item__label{justify-content:flex-start}.t-form .label_render{align-items:center;display:flex;justify-content:flex-end}.t-form .text_show{color:var(--el-text-color-primary)}.t-form .slot_label .el-form-item__content label{color:var(--el-text-color-primary);margin-right:12px}.t-form .flex-box{display:flex}.t-form .flex-ver{align-items:center;justify-content:center}.t-form .footer_btn{width:100%}.f_layout_page{display:flex;flex-direction:column;height:100%;overflow:auto;padding:8px;width:100%}.f_layout_page .back_to_top{background:#fff;border-radius:5px;bottom:100px;box-shadow:0 5px 6px 2px rgba(0,0,0,.5);opacity:.6;position:absolute;right:10px;z-index:100}.f_layout_page .back_to_top:hover{opacity:1}.f_layout_page .back_to_top>div{align-items:center;cursor:pointer;display:flex;height:40px;justify-content:center;width:40px}.f_layout_page .back_to_top>div .el-icon{color:#9b59b6}.layout_page_no_margin{padding:0}.f_layout_page_item{background:var(--el-bg-color);border-radius:4px;padding:16px}.page_item_no_margin{margin:0;padding:0}.t_module_form{background-color:var(--el-bg-color-page);height:100%;overflow:auto;position:relative;text-align:left}.t_module_form,.t_module_form .scroll_wrap{display:flex;flex-direction:column;flex-grow:1}.t_module_form .scroll_wrap .el-page-header{background-color:var(--el-bg-color);box-sizing:border-box;color:var(--el-text-color-primary);font-feature-settings:"tnum";font-size:14px;font-variant:tabular-nums;line-height:1.5;list-style:none;margin:0;padding:16px 24px;position:relative}.t_module_form .scroll_wrap .el-page-header .el-page-header__breadcrumb{margin:0}.t_module_form .scroll_wrap .el-page-header .el-page-header__left{align-items:center;color:var(--el-text-color-primary);margin:0;width:100%}.t_module_form .scroll_wrap .el-page-header .el-page-header__left .el-icon-back{font-weight:700}.t_module_form .scroll_wrap .el-page-header .el-page-header__left .el-page-header__title{font-size:18px;font-weight:700}.t_module_form .scroll_wrap .el-page-header .el-page-header__content{align-items:center;display:flex;flex:60%;justify-content:space-between}.t_module_form .scroll_wrap .el-page-header .el-page-header__content .sub_title{flex:30%}.t_module_form .scroll_wrap .el-page-header .el-page-header__content .extra{display:flex;flex:70%;justify-content:flex-end}.t_module_form .scroll_wrap .isShowBack .el-page-header__left .el-page-header__icon,.t_module_form .scroll_wrap .noContent .el-page-header__left .el-divider{display:none}.t_module_form .scroll_wrap .t_detail .el-collapse{border:none}.t_module_form .scroll_wrap .t_detail .el-collapse .el-collapse-item{background-color:var(--el-bg-color);border:none;margin-top:10px}.t_module_form .scroll_wrap .t_detail .el-collapse .el-collapse-item .el-collapse-item__header{align-items:center;border-bottom:1px solid var(--el-border-color);display:flex;font-size:14px;justify-content:space-between;padding-left:35px;position:relative}.t_module_form .scroll_wrap .t_detail .el-collapse .el-collapse-item .el-collapse-item__header .t_btn{margin-right:15px}.t_module_form .scroll_wrap .t_detail .el-collapse .el-collapse-item .el-collapse-item__header .el-collapse-item__arrow{color:inherit;font-style:normal;line-height:0;text-align:center;text-rendering:optimizeLegibility;text-transform:none;vertical-align:-.125em;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;display:inline-block;font-size:14px;left:14px;position:absolute;top:17px}.t_module_form .scroll_wrap .t_detail .el-collapse .el-collapse-item .el-collapse-item__wrap{border:none;padding:16px}.t_module_form .scroll_wrap .t_detail .el-collapse .el-collapse-item .el-collapse-item__wrap .el-collapse-item__content{padding-bottom:0}.t_module_form .scroll_wrap .t_detail .el-collapse .title_bold .collapse-item_title{font-weight:700}.t_module_form .scroll_wrap .t_detail .el-collapse .noTitle{margin-top:0}.t_module_form .scroll_wrap .t_detail .el-collapse .noTitle>div:first-child{display:none}.t_module_form .scroll_wrap .t_detail .el-collapse .disabledStyle .el-collapse-item__header{align-items:center;color:var(--el-collapse-header-text-color);cursor:default;display:flex;font-size:14px;justify-content:space-between;padding-left:20px}.t_module_form .scroll_wrap .t_detail .el-collapse .disabledStyle .el-collapse-item__header .el-collapse-item__arrow{display:none}.t_module_form .scroll_wrap .t_detail .el-collapse .disabledStyle .el-collapse-item__header .t_btn{margin-right:15px}.t_module_form .scroll_wrap .t_form .el-collapse{border:none}.t_module_form .scroll_wrap .t_form .el-collapse .el-collapse-item{background-color:var(--el-bg-color);border:none;margin-top:10px}.t_module_form .scroll_wrap .t_form .el-collapse .el-collapse-item .el-collapse-item__header{align-items:center;border-bottom:1px solid var(--el-border-color);display:flex;font-size:14px;justify-content:space-between;padding-left:35px;position:relative}.t_module_form .scroll_wrap .t_form .el-collapse .el-collapse-item .el-collapse-item__header .t_btn{margin-right:15px}.t_module_form .scroll_wrap .t_form .el-collapse .el-collapse-item .el-collapse-item__header .el-collapse-item__arrow{color:inherit;font-style:normal;line-height:0;text-align:center;text-rendering:optimizeLegibility;text-transform:none;vertical-align:-.125em;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;display:inline-block;font-size:14px;left:14px;position:absolute;top:17px}.t_module_form .scroll_wrap .t_form .el-collapse .el-collapse-item .el-collapse-item__wrap{border:none;padding:16px}.t_module_form .scroll_wrap .t_form .el-collapse .el-collapse-item .el-collapse-item__wrap .el-collapse-item__content{padding-bottom:0}.t_module_form .scroll_wrap .t_form .el-collapse .title_bold .collapse-item_title{font-weight:700}.t_module_form .scroll_wrap .t_form .el-collapse .noTitle>div:first-child{display:none}.t_module_form .scroll_wrap .t_form .el-collapse .disabledStyle .el-collapse-item__header{align-items:center;color:var(--el-collapse-header-text-color);cursor:default;display:flex;font-size:14px;justify-content:space-between;padding-left:20px}.t_module_form .scroll_wrap .t_form .el-collapse .disabledStyle .el-collapse-item__header .el-collapse-item__arrow{display:none}.t_module_form .scroll_wrap .t_form .el-collapse .disabledStyle .el-collapse-item__header .t_btn{margin-right:15px}.t_module_form .scroll_wrap .t_form .el-collapse-borderless{background-color:var(--el-bg-color)}.t_module_form .scroll_wrap .t_form .el-collapse-borderless .noTitle .el-collapse-header{display:none}.t_module_form .scroll_wrap .t_form .el-collapse-borderless .el-collapse-item{background-color:var(--el-bg-color);border:none;margin-top:10px}.t_module_form .scroll_wrap .t_form .el-collapse-borderless .el-collapse-item:first-child{margin-top:0}.t_module_form .scroll_wrap .t_form .el-collapse-borderless .el-collapse-item .el-collapse-header{border-bottom:1px solid var(--el-border-color)}.t_module_form .scroll_wrap .t_form .el-collapse-borderless .el-collapse-item .el-collapse-content-box{padding:16px}.t_module_form .scroll_wrap .tabs{margin:0;padding:0}.t_module_form .scroll_wrap .tabs .el-tabs .el-tabs__header{background-color:var(--el-bg-color);margin:0;padding:0 10px}.t_module_form .scroll_wrap .tabs .el-tabs .el-tabs__nav-wrap:after{height:1px}.t_module_form .handle_wrap{align-items:center;background-color:var(--el-bg-color);border-top:1px solid var(--el-border-color);bottom:0;display:flex;height:60px;justify-content:flex-end;position:fixed;right:0;text-align:right;width:100%;z-index:4}.t_module_form .handle_wrap .el-button:last-child{margin-right:15px}.t-query-condition.el-form{display:grid;gap:2px 8px;margin-bottom:-7px;position:relative;text-align:left}.t-query-condition.el-form .ant-calendar-picker,.t-query-condition.el-form .el-date-editor,.t-query-condition.el-form .el-select{width:100%}.t-query-condition.el-form .flex_end{grid-area:submit_btn;margin-top:2px}.t-query-condition.el-form .flex_end .el-form-item__content{align-items:center;display:flex;overflow:visible!important}.t-query-condition.el-form .btn .el-form-item__content{display:flex}.t-query-condition.el-form .btn .more_dropdown_icon{cursor:pointer;margin-left:10px}.t-query-condition.el-form .btn_flex_end .el-form-item__content{justify-content:flex-end}.t-query-condition.el-form .btn_label_position_top{align-items:flex-end;display:flex}.t-query-condition.el-form .el-form-item{margin-bottom:10px}.t-query-condition.el-form .el-form-item .el-form-item__label{flex-shrink:0;min-width:60px;padding-left:8px}.t-query-condition.el-form .el-form-item .el-form-item__content{flex-grow:1;margin-left:0!important}.t-query-condition.el-form .render_label .el-form-item__label{align-items:center;cursor:pointer;display:flex;justify-content:flex-end}.t-query-condition.el-form .render_label .el-form-item__label:before{margin-top:1px}.t-query-condition.el-form .render_label_position_left .el-form-item__label,.t-query-condition.el-form .render_label_position_top .el-form-item__label{justify-content:flex-start}.t-query-condition.el-form .btn_check{position:relative;top:-1px}.t-query-condition.el-form .btn_reset{margin-left:8px;position:relative;top:-1px}.t_query_condition_more.el-popover{padding:15px}.t_query_condition_more.el-popover .inside_box{display:flex;flex-direction:column}.t_query_condition_more.el-popover .inside_box .inside_box_title{align-items:center;display:flex;justify-content:space-between}.t_query_condition_more.el-popover .inside_box .inside_box_main{display:grid;grid-template-columns:repeat(2,minmax(100px,50%))}.t_query_condition_more.el-popover .inside_box .inside_box_main .el-checkbox{align-items:center;display:flex}.t_query_condition_more.el-popover .inside_box .inside_box_main .el-checkbox .el-checkbox__label{box-sizing:border-box;min-width:90px;overflow:hidden;text-overflow:ellipsis;word-break:break-all}.t_select .el-select-dropdown .all_checkbox{margin-left:20px}.t_select_icon{width:100%}.t_select_icon .el-button{align-items:center;color:var(--el-text-color-regular);display:flex;font-size:18px;justify-content:center}.t_select_icon .el-button .el-icon{color:var(--el-color-primary)}.t_select_icon .t_select_icon_dialog .el-dialog__body{padding:25px 20px 20px}.t_select_icon .t_select_icon_dialog .el-dialog__body .el-input{margin-bottom:10px}.t_select_icon .t_select_icon_dialog .el-dialog__body .icon-list{display:grid;grid-template-columns:repeat(auto-fill,115px);justify-content:space-evenly;max-height:60vh}.t_select_icon .t_select_icon_dialog .el-dialog__body .icon-list .icon-item{align-items:center;cursor:pointer;display:flex;flex-direction:column;padding:20px 30px;transition:all .2s;width:42px}.t_select_icon .t_select_icon_dialog .el-dialog__body .icon-list .icon-item svg{height:30px;width:30px}.t_select_icon .t_select_icon_dialog .el-dialog__body .icon-list .icon-item:hover{transform:scale(1.3)}.t_select_icon .t_select_icon_dialog .el-dialog__body .icon-list .icon-item.icon-active{color:var(--el-color-primary)}.t_select_icon .t_select_icon_dialog .el-dialog__body .icon-list .icon-item span{line-height:20px;margin-top:5px;text-align:center}.t-select-table .radioStyle .el-radio .el-radio__label{display:none}.t-select-table .radioStyle .el-radio:focus:not(.is-focus):not(:active):not(.is-disabled) .el-radio__inner{box-shadow:none}.t-select-table .radioStyle .el-table__row{cursor:pointer}.t-select-table .keyUpStyle .el-table__body tbody .current-row{color:var(--el-color-primary)!important;cursor:pointer}.t-select-table .highlightCurrentRow .current-row,.t-select-table .selected_row_style{color:var(--el-color-primary);cursor:pointer}.t-select-table .t-table-select__table{padding:10px}.t-select-table .t-table-select__table .el-table__body,.t-select-table .t-table-select__table .el-table__header{margin:0}.t-select-table .t-table-select__table .table_query_condition{overflow-x:auto;overflow-y:hidden;padding:10px;width:100%}.t-select-table .t-table-select__table .header_wrap{align-items:center;display:flex;justify-content:flex-end}.t-select-table .t-table-select__page{padding-right:10px;padding-top:5px}.t-select-table .t-table-select__page .el-pagination{align-items:center;background-color:var(--el-table-tr-bg-color);display:flex;justify-content:flex-end;margin-right:calc(2% - 20px)}.t_step-wizard{position:relative}.t_step-wizard .el-steps--simple .el-step__head{align-items:center;display:flex;justify-content:center}.t_step-wizard .content-step-main .step-last .icon-success{color:var(--el-color-primary);font-size:95px;margin-top:40px}.t_step-wizard .content-step-main .step-last .success-margin{color:var(--el-color-primary);margin-bottom:70px}.t_step-wizard .content-step-main .step_btn{align-items:center;background:var(--el-bg-color);display:flex;justify-content:center;text-align:center}.t_step-wizard .flex-box{display:flex}.t_step-wizard .flex-ver{align-items:center;justify-content:center}.t_step-wizard .flex-col{flex-direction:column}.t-table{background-color:var(--el-bg-color);z-index:0}.t-table .el-table__body-wrapper .el-table__body,.t-table .el-table__header-wrapper .el-table__header{margin:0}.t-table .el-pagination{align-items:center;background-color:var(--el-bg-color);display:flex;justify-content:flex-end;margin-right:calc(2% - 20px);margin-top:10px}.t-table .el-table .el-tooltip div{box-sizing:border-box;overflow:hidden;text-overflow:ellipsis;word-break:break-all}.t-table .el-table .el-tooltip .single_edit_cell{margin-bottom:0;overflow:visible}.t-table .el-table .el-tooltip .single_edit_cell div{overflow:visible}.t-table .el-table .single_edit_cell{cursor:pointer}.t-table .el-table .single_edit_cell .slot_edit_name{width:100%}.t-table .el-table .cell div,.t-table .multile_head_column .el-table__row .el-tooltip div{box-sizing:border-box;overflow:hidden;text-overflow:ellipsis;word-break:break-all}.t-table .el-table .cell .single_edit_cell{margin-bottom:0;overflow:visible}.t-table .el-table .cell .single_edit_cell div{overflow:visible}.t-table .el-table .cell .t_edit_cell_form_rules .single_edit_cell{margin-bottom:15px}.t-table .el-table .cell .t_edit_cell_form_rules .single_edit_cell .el-form-item__content,.t-table .el-table .cell .t_edit_cell_form_rules .single_edit_cell .el-form-item__content .el-form-item__error{overflow:visible}.t-table .el-table .cell .click_edit{align-items:center;display:flex;line-height:1}.t-table .el-table .cell .click_edit .el-icon{margin-left:2px}.t-table .el-table--border td:first-child .cell,.t-table .el-table--border th:first-child .cell{padding-left:5px}.t-table .header_wrap{align-items:center;display:flex}.t-table .header_wrap .toolbar_top{align-items:center;display:flex;flex:1;justify-content:flex-end}.t-table .header_wrap .toolbar_top .toolbar{display:flex;justify-content:flex-end;width:100%}.t-table .header_wrap .toolbar_top .el-button--small{height:32px}.t-table .header_wrap .toolbar_top .el-button--success{background-color:#355db4;border:1px solid #355db4}.t-table .header_wrap .toolbar_top .header_right_wrap{align-items:center;display:flex}.t-table .header_wrap .header_title{align-items:center;color:var(--el-text-color-primary);display:flex;flex:1;font-size:16px;font-weight:700;line-height:35px;margin-left:10px}.t-table .title-tip{align-items:center;display:flex;font-size:14px;padding-left:10px}.t-table .marginBttom{margin-bottom:-8px}.t-table .radioStyle .el-radio .el-radio__label{display:none}.t-table .radioStyle .el-radio:focus:not(.is-focus):not(:active):not(.is-disabled) .el-radio__inner{box-shadow:none}.t-table .cursor tbody .el-table__row,.t-table .radioStyle tbody .el-table__row{cursor:pointer}.t-table .row_sort tbody .el-table__row{cursor:move}.t-table .row_sort_none tbody .el-table__row{cursor:default}.t-table .row_sort_none tbody .row_drag{cursor:move}.t-table .tree_style .el-table__body-wrapper .el-table__body .cell{align-items:center;display:flex}.t-table .tree_style .el-table__body-wrapper .el-table__body .cell .el-table__expand-icon{align-items:center;display:flex;justify-content:center}.t-table .highlightCurrentRow .current-row{cursor:pointer}.t-table .highlightCurrentRow .current-row>td.el-table__cell{background-color:var(--el-table-current-row-bg-color)}.t-table .el-table--scrollable-y .el-table__body-wrapper{overflow-x:auto}.t-table .handle_wrap{background-color:var(--el-bg-color);border-top:1px solid var(--el-table-border);bottom:-8px;margin:0 -8px -8px;padding:12px 16px;position:sticky;right:0;z-index:10}.t-table .handle_wrap .el-btn{margin-left:8px}.t-table .operator .operator_btn{align-items:center;display:flex}.t-table .operator .operator_btn .oper_more_dropdown{margin-left:8px}.column_set .title{align-items:center;color:var(--el-text-color-primary);display:flex;font-size:14px;font-weight:700;justify-content:center;padding:10px 10px 0}.column_set .el-dropdown-menu{font-size:14px;padding:0}.column_set .el-dropdown-menu .el-dropdown-menu__item{align-items:flex-start;display:flex;flex-direction:column;padding:0}.column_set .el-dropdown-menu .el-dropdown-menu__item .t_table_column_setting_dropdown{display:flex;flex-direction:column;gap:10px;max-height:400px;overflow-y:auto;padding:0 10px 0 12px;width:100%}.column_set .el-dropdown-menu .el-dropdown-menu__item .t_table_column_setting_dropdown:hover{background-color:transparent}.column_set .el-dropdown-menu .el-dropdown-menu__item .t_table_column_setting_dropdown .el-tree-node .el-tree-node__content{cursor:default;padding:10px}.column_set .el-dropdown-menu .el-dropdown-menu__item .t_table_column_setting_dropdown .el-tree-node .el-tree-node__content:hover{color:var(--el-color-primary)}.column_set .el-dropdown-menu .el-dropdown-menu__item .t_table_column_setting_dropdown .el-tree-node .el-tree-node__content .el-tree-node__expand-icon{display:none}.column_set .el-dropdown-menu .el-dropdown-menu__item .t_table_column_setting_dropdown .el-tree-node .el-tree-node__content .el-tree-node__label{cursor:move;display:inline-block;width:100%}.column_set .el-dropdown-menu .el-dropdown-menu__item:not(.is-disabled):hover{background-color:transparent}.oper_more_dropdown_menu{display:flex;flex-direction:column}.oper_more_dropdown_menu .el-dropdown-menu__item{padding:6px 12px}.density_set .density_set_list{align-items:center;display:flex;flex-direction:column;gap:10px;padding:10px}.density_set .density_set_list .el-button{margin:0}.t_tabs .tabs{margin:0;padding:0}.t_tabs .tabs .el-tabs .el-tabs__header{background-color:#fff;margin:0;padding:0 10px}.t_tabs .tabs .el-tabs .el-tabs__nav-wrap:after{height:1px}
@@ -1,4 +1,4 @@
1
- .t_layout_page_item {
1
+ .f_layout_page_item {
2
2
  // margin: 8px;
3
3
  padding: 16px;
4
4
  background: var(--el-bg-color);
@@ -1,4 +1,4 @@
1
- .t_layout_page {
1
+ .f_layout_page {
2
2
  display: flex;
3
3
  flex-direction: column;
4
4
  padding: 8px;
@@ -1 +1 @@
1
- .t_layout_page_item{background:var(--el-bg-color);border-radius:4px;padding:16px}.page_item_no_margin{margin:0;padding:0}
1
+ .f_layout_page_item{background:var(--el-bg-color);border-radius:4px;padding:16px}.page_item_no_margin{margin:0;padding:0}
@@ -1 +1 @@
1
- .t_layout_page{display:flex;flex-direction:column;height:100%;overflow:auto;padding:8px;width:100%}.t_layout_page .back_to_top{background:#fff;border-radius:5px;bottom:100px;box-shadow:0 5px 6px 2px rgba(0,0,0,.5);opacity:.6;position:absolute;right:10px;z-index:100}.t_layout_page .back_to_top:hover{opacity:1}.t_layout_page .back_to_top>div{align-items:center;cursor:pointer;display:flex;height:40px;justify-content:center;width:40px}.t_layout_page .back_to_top>div .el-icon{color:#9b59b6}.layout_page_no_margin{padding:0}
1
+ .f_layout_page{display:flex;flex-direction:column;height:100%;overflow:auto;padding:8px;width:100%}.f_layout_page .back_to_top{background:#fff;border-radius:5px;bottom:100px;box-shadow:0 5px 6px 2px rgba(0,0,0,.5);opacity:.6;position:absolute;right:10px;z-index:100}.f_layout_page .back_to_top:hover{opacity:1}.f_layout_page .back_to_top>div{align-items:center;cursor:pointer;display:flex;height:40px;justify-content:center;width:40px}.f_layout_page .back_to_top>div .el-icon{color:#9b59b6}.layout_page_no_margin{padding:0}
@@ -1,4 +1,4 @@
1
- .t_layout_page_item {
1
+ .f_layout_page_item {
2
2
  // margin: 8px;
3
3
  padding: 16px;
4
4
  background: var(--el-bg-color);
@@ -1,4 +1,4 @@
1
- .t_layout_page {
1
+ .f_layout_page {
2
2
  display: flex;
3
3
  flex-direction: column;
4
4
  padding: 8px;