diff --git a/src/_common b/src/_common index 6b4dde5c4..c1eeb3254 160000 --- a/src/_common +++ b/src/_common @@ -1 +1 @@ -Subproject commit 6b4dde5c4f8a09514b011038d8d453ad692adb39 +Subproject commit c1eeb3254f3655db518f63b0600df031e25ee7c3 diff --git a/src/checkbox/hooks/useKeyboardEvent.ts b/src/checkbox/hooks/useKeyboardEvent.ts index 26d7a2ee0..1433afd68 100644 --- a/src/checkbox/hooks/useKeyboardEvent.ts +++ b/src/checkbox/hooks/useKeyboardEvent.ts @@ -1,6 +1,10 @@ +export const CHECKED_CODE_REG = /(enter|space)/i; + export function useKeyboardEvent(handleChange: (e: Event) => void) { const keyboardEventListener = (e: KeyboardEvent) => { - if (e.code === 'Enter') { + const isCheckedCode = CHECKED_CODE_REG.test(e.key) || CHECKED_CODE_REG.test(e.code); + if (isCheckedCode) { + e.preventDefault(); const { disabled } = (e.currentTarget as HTMLElement).querySelector('input'); !disabled && handleChange(e); } diff --git a/src/hooks/useElementLazyRender.ts b/src/hooks/useElementLazyRender.ts index 1ff818088..bd32d7544 100644 --- a/src/hooks/useElementLazyRender.ts +++ b/src/hooks/useElementLazyRender.ts @@ -8,7 +8,7 @@ export function useElementLazyRender(labelRef: Ref, lazyLoad: Ref { - if (!lazyLoad.value) return; + if (!lazyLoad.value || !labelRef.value || ioObserver.value) return; showElement.value = false; const io = observe( labelRef.value, @@ -23,11 +23,11 @@ export function useElementLazyRender(labelRef: Ref, lazyLoad: Ref { if (!lazyLoad.value) return; - ioObserver.value?.unobserve(labelRef.value); + ioObserver.value?.unobserve?.(labelRef.value); }); return { diff --git a/src/hooks/useVirtualScrollNew.ts b/src/hooks/useVirtualScrollNew.ts index e658e2794..3ab44a348 100644 --- a/src/hooks/useVirtualScrollNew.ts +++ b/src/hooks/useVirtualScrollNew.ts @@ -31,7 +31,7 @@ const useVirtualScroll = (container: Ref, params: UseVirtualScrollP /** 注意测试:数据长度为空;数据长度小于表格高度等情况。即期望只有数据量达到一定程度才允许开启虚拟滚动 */ const visibleData = ref([]); // 用于显示表格列 - const translateY = ref(0); + const translateY = ref((params.value.data?.length || 0) * (params.value.scroll?.rowHeight || 50)); // 滚动高度,用于显示滚动条 const scrollHeight = ref(0); const trScrollTopHeightList = ref([]); diff --git a/src/input/input.tsx b/src/input/input.tsx index aae7ae0fd..0b8fe0940 100644 --- a/src/input/input.tsx +++ b/src/input/input.tsx @@ -525,17 +525,16 @@ export default mixins( {prefixIcon} ) : null} {labelContent} - {this.showInput && ( - - )} + {/* input element must exist, or other select components can not focus by keyboard operation */} + {this.autoWidth && ( {this.preValue || this.tPlaceholder} diff --git a/src/radio/group.tsx b/src/radio/group.tsx index 51a9110e9..aeded6122 100644 --- a/src/radio/group.tsx +++ b/src/radio/group.tsx @@ -11,6 +11,7 @@ import { emitEvent } from '../utils/event'; import { getClassPrefixMixins } from '../config-provider/config-receiver'; import mixins from '../utils/mixins'; import { off, on } from '../utils/dom'; +import { CHECKED_CODE_REG } from '../checkbox/hooks/useKeyboardEvent'; const classPrefixMixins = getClassPrefixMixins('radio-group'); @@ -113,7 +114,9 @@ export default mixins(classPrefixMixins).extend({ // 注意:此处会还原区分 数字 和 数字字符串 checkRadioInGroup(e: KeyboardEvent) { - if (/enter/i.test(e.key) || /enter/i.test(e.code)) { + const isCheckedCode = CHECKED_CODE_REG.test(e.key) || CHECKED_CODE_REG.test(e.code); + if (isCheckedCode) { + e.preventDefault(); const inputNode = (e.target as HTMLElement).querySelector('input'); const data = inputNode.dataset; if (inputNode.checked && data.allowUncheck) { diff --git a/src/select-input/_example/single.vue b/src/select-input/_example/single.vue index bc8748f78..11604e616 100644 --- a/src/select-input/_example/single.vue +++ b/src/select-input/_example/single.vue @@ -11,6 +11,7 @@ @popup-visible-change="onPopupVisibleChange" @clear="onClear" @input-change="onInputChange" + @focus="onFocus" > diff --git a/src/table/base-table.tsx b/src/table/base-table.tsx index 24586ea54..146186785 100644 --- a/src/table/base-table.tsx +++ b/src/table/base-table.tsx @@ -522,6 +522,9 @@ export default defineComponent({ }, render(h) { + if (!this.showElement) { + return
; + } const { rowAndColFixedPosition } = this; const data = this.isPaginateData ? this.dataSource : this.data; const columns = this.spansAndLeafNodes?.leafColumns || this.columns; @@ -634,10 +637,6 @@ export default defineComponent({ ); - if (!this.showElement) { - return
; - } - return (
{!!topContent &&
{topContent}
} diff --git a/src/table/hooks/useColumnResize.ts b/src/table/hooks/useColumnResize.ts index 686bcc2fa..d48ad0a8d 100644 --- a/src/table/hooks/useColumnResize.ts +++ b/src/table/hooks/useColumnResize.ts @@ -108,7 +108,7 @@ export default function useColumnResize(params: { // 频繁事件,仅用于计算是否在表头显示拖拽鼠标形态 const onColumnMouseover = (e: MouseEvent, col: BaseTableCol) => { // calculate mouse cursor before drag start - if (!resizeLineRef.value || resizeLineParams.isDragging) return; + if (!resizeLineRef.value || resizeLineParams.isDragging || !e.target) return; const target = (e.target as HTMLElement).closest('th'); // 判断是否为叶子阶段,仅叶子结点允许拖拽 const colKey = target.getAttribute('data-colkey'); diff --git a/src/table/hooks/useDragSort.ts b/src/table/hooks/useDragSort.ts index e0dd2e8ad..2aa0c8368 100644 --- a/src/table/hooks/useDragSort.ts +++ b/src/table/hooks/useDragSort.ts @@ -209,15 +209,20 @@ export default function useDragSort(props: TdPrimaryTableProps, context: SetupCo // 注册拖拽事件 watch([primaryTableRef], ([val]: [any]) => { if (!val || !val.$el) return; - registerRowDragEvent(val.$el); - registerColDragEvent(val.$el); - /** 待表头节点准备完成后 */ + // regis after table tr rendered const timer = setTimeout(() => { - if (val.$refs.affixHeaderRef) { - registerColDragEvent(val.$refs.affixHeaderRef); - } + registerRowDragEvent(val.$el); + registerColDragEvent(val.$el); + + // initial after normal table header + const timer1 = setTimeout(() => { + if (val.$refs.affixHeaderRef) { + registerColDragEvent(val.$refs.affixHeaderRef); + clearTimeout(timer1); + } + }); clearTimeout(timer); - }); + }, 60); }); return { diff --git a/src/table/hooks/useFixed.ts b/src/table/hooks/useFixed.ts index 173c6d826..c80b4c9e8 100644 --- a/src/table/hooks/useFixed.ts +++ b/src/table/hooks/useFixed.ts @@ -533,6 +533,7 @@ export default function useFixed( let resizeObserver: ResizeObserver = null; function addTableResizeObserver(tableElement: HTMLDivElement) { + if (typeof window === 'undefined') return; // IE 11 以下使用 window resize;IE 11 以上使用 ResizeObserver if (getIEVersion() < 11 || typeof window.ResizeObserver === 'undefined') return; off(window, 'resize', onResize); @@ -552,13 +553,17 @@ export default function useFixed( updateThWidthListHandler(); const isWatchResize = isFixedColumn.value || isFixedHeader.value || !notNeedThWidthList.value || !data.value.length; // IE 11 以下使用 window resize;IE 11 以上使用 ResizeObserver - if ((isWatchResize && getIEVersion() < 11) || typeof window.ResizeObserver === 'undefined') { + const hasWindow = typeof window !== 'undefined'; + const hasResizeObserver = hasWindow && typeof window.ResizeObserver !== 'undefined'; + if ((isWatchResize && getIEVersion() < 11) || !hasResizeObserver) { on(window, 'resize', onResize); } }); onBeforeUnmount(() => { - off(window, 'resize', onResize); + if (typeof window !== 'undefined') { + off(window, 'resize', onResize); + } resizeObserver?.unobserve(tableRef.value); resizeObserver?.disconnect(); }); diff --git a/src/tag-input/tag-input.tsx b/src/tag-input/tag-input.tsx index 740774935..f6833338f 100644 --- a/src/tag-input/tag-input.tsx +++ b/src/tag-input/tag-input.tsx @@ -176,13 +176,14 @@ export default defineComponent({ }); // 左侧文本 const label = renderTNodeJSX(this, 'label', { silent: true }); + const readonly = this.readonly || this.inputProps?.readonly; return ( :props > :defaultValue 1`] = `
+ @@ -490,6 +498,14 @@ exports[`TreeSelect > :props > :multiple 1`] = ` + diff --git a/src/upload/themes/multiple-flow-list.tsx b/src/upload/themes/multiple-flow-list.tsx index 1e4660a8a..2b28ce8a8 100644 --- a/src/upload/themes/multiple-flow-list.tsx +++ b/src/upload/themes/multiple-flow-list.tsx @@ -197,7 +197,10 @@ export default defineComponent({ { this.browseIconClick({ - e, index, file, viewFiles: this.displayFiles, + e, + index, + file, + viewFiles: this.displayFiles, }); }} /> @@ -384,7 +387,10 @@ export default defineComponent({ onClick={(e: MouseEvent) => { e.preventDefault(); this.browseIconClick({ - e, index: 0, file, viewFiles: [file], + e, + index: 0, + file, + viewFiles: [file], }); }} /> diff --git a/test/snap/__snapshots__/csr.test.js.snap b/test/snap/__snapshots__/csr.test.js.snap index cacd56bf4..e8af12bd5 100644 --- a/test/snap/__snapshots__/csr.test.js.snap +++ b/test/snap/__snapshots__/csr.test.js.snap @@ -22124,6 +22124,14 @@ exports[`csr snapshot test > csr test ./src/cascader/_example/check-strictly.vue + @@ -22200,6 +22208,14 @@ exports[`csr snapshot test > csr test ./src/cascader/_example/collapsed.vue 1`]
+ @@ -22266,6 +22282,14 @@ exports[`csr snapshot test > csr test ./src/cascader/_example/collapsed.vue 1`] +2 + @@ -22332,6 +22356,14 @@ exports[`csr snapshot test > csr test ./src/cascader/_example/collapsed.vue 1`] +2 + @@ -22586,6 +22618,16 @@ exports[`csr snapshot test > csr test ./src/cascader/_example/disabled.vue 1`] = + @@ -22702,6 +22744,14 @@ exports[`csr snapshot test > csr test ./src/cascader/_example/ellipsis.vue 1`] = + @@ -22983,6 +23033,14 @@ exports[`csr snapshot test > csr test ./src/cascader/_example/keys.vue 1`] = ` + @@ -23195,6 +23253,14 @@ exports[`csr snapshot test > csr test ./src/cascader/_example/multiple.vue 1`] = + @@ -24033,6 +24099,14 @@ exports[`csr snapshot test > csr test ./src/cascader/_example/value-type.vue 1`] + @@ -84215,6 +84289,14 @@ exports[`csr snapshot test > csr test ./src/select/_example/collapsed.vue 1`] = + @@ -84285,6 +84367,14 @@ exports[`csr snapshot test > csr test ./src/select/_example/collapsed.vue 1`] = +1 + @@ -84355,6 +84445,14 @@ exports[`csr snapshot test > csr test ./src/select/_example/collapsed.vue 1`] = +1 + @@ -84699,6 +84797,14 @@ exports[`csr snapshot test > csr test ./src/select/_example/custom-selected.vue + @@ -84821,6 +84927,14 @@ exports[`csr snapshot test > csr test ./src/select/_example/custom-selected.vue + @@ -84942,6 +85056,16 @@ exports[`csr snapshot test > csr test ./src/select/_example/disabled.vue 1`] = ` + @@ -85292,6 +85416,14 @@ exports[`csr snapshot test > csr test ./src/select/_example/label-in-value.vue 1 + @@ -85439,6 +85571,14 @@ exports[`csr snapshot test > csr test ./src/select/_example/multiple.vue 1`] = ` + @@ -85599,6 +85739,14 @@ exports[`csr snapshot test > csr test ./src/select/_example/multiple.vue 1`] = ` + @@ -85639,7 +85787,7 @@ exports[`csr snapshot test > csr test ./src/select/_example/multiple.vue 1`] = ` class="t-input__wrap t-tag-input t-tag-input--break-line t-tag-input--with-tag t-tag-input__with-suffix-icon" >
csr test ./src/select/_example/multiple.vue 1`] = `
+ @@ -87359,6 +87514,14 @@ exports[`csr snapshot test > csr test ./src/select-input/_example/custom-tag.vue
+ @@ -87515,6 +87678,14 @@ exports[`csr snapshot test > csr test ./src/select-input/_example/custom-tag.vue + @@ -100389,6 +100560,14 @@ exports[`csr snapshot test > csr test ./src/table/_example/editable-cell.vue 1`] + @@ -100528,6 +100707,14 @@ exports[`csr snapshot test > csr test ./src/table/_example/editable-cell.vue 1`] + @@ -100706,6 +100893,14 @@ exports[`csr snapshot test > csr test ./src/table/_example/editable-cell.vue 1`]
+ @@ -100845,6 +101040,14 @@ exports[`csr snapshot test > csr test ./src/table/_example/editable-cell.vue 1`] + @@ -101131,6 +101334,14 @@ exports[`csr snapshot test > csr test ./src/table/_example/editable-row.vue 1`] + @@ -115349,7 +115560,7 @@ exports[`csr snapshot test > csr test ./src/table/_example/multi-header.vue 1`] csr test ./src/table/_example/tree-select.vue 1`] = csr test ./src/table/_example/virtual-scroll.vue 1` csr test ./src/tag-input/_example/status.vue 1`] = csr test ./src/tree/_example/debug-vscroll.vue 1`] >
csr test ./src/tree/_example/vscroll.vue 1`] = ` >
csr test ./src/tree-select/_example/collapsed.vue 1
+ @@ -158410,6 +158629,14 @@ exports[`csr snapshot test > csr test ./src/tree-select/_example/collapsed.vue 1
+ @@ -158793,6 +159020,14 @@ exports[`csr snapshot test > csr test ./src/tree-select/_example/multiple.vue 1`
+ @@ -159178,6 +159413,14 @@ exports[`csr snapshot test > csr test ./src/tree-select/_example/valuetype.vue 1
+ diff --git a/test/snap/__snapshots__/ssr.test.js.snap b/test/snap/__snapshots__/ssr.test.js.snap index 1dbf7ca73..ae9122b16 100644 --- a/test/snap/__snapshots__/ssr.test.js.snap +++ b/test/snap/__snapshots__/ssr.test.js.snap @@ -182,25 +182,25 @@ exports[`ssr snapshot test > renders ./src/card/_example/small.vue correctly 1`] exports[`ssr snapshot test > renders ./src/cascader/_example/base.vue correctly 1`] = `"
单选:
"`; -exports[`ssr snapshot test > renders ./src/cascader/_example/check-strictly.vue correctly 1`] = `"
1/1.1/1.1.2/1.1.2.12
"`; +exports[`ssr snapshot test > renders ./src/cascader/_example/check-strictly.vue correctly 1`] = `"
1/1.1/1.1.2/1.1.2.12
"`; -exports[`ssr snapshot test > renders ./src/cascader/_example/collapsed.vue correctly 1`] = `"
选项一/子选项一+2
选项一/子选项一+2
选项一/子选项一+2
"`; +exports[`ssr snapshot test > renders ./src/cascader/_example/collapsed.vue correctly 1`] = `"
选项一/子选项一+2
选项一/子选项一+2
选项一/子选项一+2
"`; exports[`ssr snapshot test > renders ./src/cascader/_example/custom-options.vue correctly 1`] = `"
"`; -exports[`ssr snapshot test > renders ./src/cascader/_example/disabled.vue correctly 1`] = `"
选项一/子选项一
"`; +exports[`ssr snapshot test > renders ./src/cascader/_example/disabled.vue correctly 1`] = `"
选项一/子选项一
"`; -exports[`ssr snapshot test > renders ./src/cascader/_example/ellipsis.vue correctly 1`] = `"
当选项一数据展示文本过长时/子选项一
"`; +exports[`ssr snapshot test > renders ./src/cascader/_example/ellipsis.vue correctly 1`] = `"
当选项一数据展示文本过长时/子选项一
"`; exports[`ssr snapshot test > renders ./src/cascader/_example/filterable.vue correctly 1`] = `"
当选项一数据展示文本过长时/子选项一
"`; -exports[`ssr snapshot test > renders ./src/cascader/_example/keys.vue correctly 1`] = `"
选项一/子选项一
"`; +exports[`ssr snapshot test > renders ./src/cascader/_example/keys.vue correctly 1`] = `"
选项一/子选项一
"`; exports[`ssr snapshot test > renders ./src/cascader/_example/load.vue correctly 1`] = `"
"`; exports[`ssr snapshot test > renders ./src/cascader/_example/max.vue correctly 1`] = `"
请选择
"`; -exports[`ssr snapshot test > renders ./src/cascader/_example/multiple.vue correctly 1`] = `"
选项一/子选项一
"`; +exports[`ssr snapshot test > renders ./src/cascader/_example/multiple.vue correctly 1`] = `"
选项一/子选项一
"`; exports[`ssr snapshot test > renders ./src/cascader/_example/panel.vue correctly 1`] = `"
  • 选项一
  • 选项二
"`; @@ -225,7 +225,7 @@ exports[`ssr snapshot test > renders ./src/cascader/_example/value-type.vue corr "1", "1.2" ] -]
选项一/子选项一选项一/子选项二
" +]
选项一/子选项一选项一/子选项二
" `; exports[`ssr snapshot test > renders ./src/checkbox/_example/base.vue correctly 1`] = `"
"`; @@ -797,25 +797,25 @@ exports[`ssr snapshot test > renders ./src/rate/_example/texts.vue correctly 1`] exports[`ssr snapshot test > renders ./src/select/_example/base.vue correctly 1`] = `"
属性:
插槽:
"`; -exports[`ssr snapshot test > renders ./src/select/_example/collapsed.vue correctly 1`] = `"
选项一+1
选项一+1
选项一+1
"`; +exports[`ssr snapshot test > renders ./src/select/_example/collapsed.vue correctly 1`] = `"
选项一+1
选项一+1
选项一+1
"`; exports[`ssr snapshot test > renders ./src/select/_example/creatable.vue correctly 1`] = `"
多选支持自定义创建
"`; exports[`ssr snapshot test > renders ./src/select/_example/custom-options.vue correctly 1`] = `"


"`; -exports[`ssr snapshot test > renders ./src/select/_example/custom-selected.vue correctly 1`] = `"
选项一(1)选项二(2)选项三(3)
选项四(4) 选项五(5) 选项六(6) 选项七(7)
"`; +exports[`ssr snapshot test > renders ./src/select/_example/custom-selected.vue correctly 1`] = `"
选项一(1)选项二(2)选项三(3)
选项四(4) 选项五(5) 选项六(6) 选项七(7)
"`; -exports[`ssr snapshot test > renders ./src/select/_example/disabled.vue correctly 1`] = `"
选项一选项二
"`; +exports[`ssr snapshot test > renders ./src/select/_example/disabled.vue correctly 1`] = `"
选项一选项二
"`; exports[`ssr snapshot test > renders ./src/select/_example/filterable.vue correctly 1`] = `"
-请选择-
"`; exports[`ssr snapshot test > renders ./src/select/_example/group.vue correctly 1`] = `"
请选择
"`; -exports[`ssr snapshot test > renders ./src/select/_example/label-in-value.vue correctly 1`] = `"
选项一
"`; +exports[`ssr snapshot test > renders ./src/select/_example/label-in-value.vue correctly 1`] = `"
选项一
"`; exports[`ssr snapshot test > renders ./src/select/_example/max.vue correctly 1`] = `"
-请选择-
"`; -exports[`ssr snapshot test > renders ./src/select/_example/multiple.vue correctly 1`] = `"
区块链人工智能
云服务器云数据库域名注册网站备案对象存储低代码平台
区块链人工智能+2
"`; +exports[`ssr snapshot test > renders ./src/select/_example/multiple.vue correctly 1`] = `"
区块链人工智能
云服务器云数据库域名注册网站备案对象存储低代码平台
区块链人工智能+2
"`; exports[`ssr snapshot test > renders ./src/select/_example/noborder.vue correctly 1`] = `"
-请选择-
"`; @@ -847,7 +847,7 @@ exports[`ssr snapshot test > renders ./src/select-input/_example/borderless-mult exports[`ssr snapshot test > renders ./src/select-input/_example/collapsed-items.vue correctly 1`] = `"
tdesign-vue+5
tdesign-vuetdesign-react更多(4)
tdesign-vuetdesign-reacttdesign-miniprogramMore(3)
"`; -exports[`ssr snapshot test > renders ./src/select-input/_example/custom-tag.vue correctly 1`] = `"
tdesign-vue
tdesign-vue tdesign-react
tdesign-vuetdesign-reacttdesign-mobile-vue
"`; +exports[`ssr snapshot test > renders ./src/select-input/_example/custom-tag.vue correctly 1`] = `"
tdesign-vue
tdesign-vue tdesign-react
tdesign-vuetdesign-reacttdesign-mobile-vue
"`; exports[`ssr snapshot test > renders ./src/select-input/_example/excess-tags-display-type.vue correctly 1`] = `"

第一种呈现方式:超出时滚动显示

tdesign-vuetdesign-reacttdesign-miniprogramtdesign-angulartdesign-mobile-vuetdesign-mobile-react

第二种呈现方式:超出时换行显示

tdesign-vuetdesign-reacttdesign-miniprogramtdesign-angulartdesign-mobile-vuetdesign-mobile-react
"`; @@ -971,9 +971,9 @@ exports[`ssr snapshot test > renders ./src/table/_example/drag-sort.vue correctl exports[`ssr snapshot test > renders ./src/table/_example/drag-sort-handler.vue correctly 1`] = `"
排序
申请人
申请状态
签署方式
邮箱地址
申请时间
贾明审批通过电子签署
w.cezkdudy@lhll.au
2022-01-01
张三审批失败纸质签署
r.nmgw@peurezgn.sl
2022-02-01
王芳审批过期纸质签署
p.cumx@rampblpa.ru
2022-03-01
贾明审批通过电子签署
w.cezkdudy@lhll.au
2022-04-01
"`; -exports[`ssr snapshot test > renders ./src/table/_example/editable-cell.vue correctly 1`] = `"
申请人
申请状态
申请事项
创建日期
审批通过
宣传物料制作费用
2022-01-01
审批过期
宣传物料制作费用
2022-02-01
王芳
审批失败
宣传物料制作费用
2022-03-01
审批通过
宣传物料制作费用+1
2022-04-01
审批过期
宣传物料制作费用
2022-01-01
"`; +exports[`ssr snapshot test > renders ./src/table/_example/editable-cell.vue correctly 1`] = `"
申请人
申请状态
申请事项
创建日期
审批通过
宣传物料制作费用
2022-01-01
审批过期
宣传物料制作费用
2022-02-01
王芳
审批失败
宣传物料制作费用
2022-03-01
审批通过
宣传物料制作费用+1
2022-04-01
审批过期
宣传物料制作费用
2022-01-01
"`; -exports[`ssr snapshot test > renders ./src/table/_example/editable-row.vue correctly 1`] = `"

申请人
申请状态
申请事项
创建日期
操作栏
贾明
宣传物料制作费用
张三
审批过期
宣传物料制作费用
2022-02-01
王芳
审批失败
宣传物料制作费用
2022-03-01
贾明
审批通过
宣传物料制作费用、algolia 服务报销
2022-04-01
张三
审批过期
宣传物料制作费用
2022-01-01
"`; +exports[`ssr snapshot test > renders ./src/table/_example/editable-row.vue correctly 1`] = `"

申请人
申请状态
申请事项
创建日期
操作栏
贾明
宣传物料制作费用
张三
审批过期
宣传物料制作费用
2022-02-01
王芳
审批失败
宣传物料制作费用
2022-03-01
贾明
审批通过
宣传物料制作费用、algolia 服务报销
2022-04-01
张三
审批过期
宣传物料制作费用
2022-01-01
"`; exports[`ssr snapshot test > renders ./src/table/_example/ellipsis.vue correctly 1`] = `"
申请人
审批状态
签署方式(超长标题示例)
邮箱地址
申请事项
审核时间
操作
贾明(kyrieJia)
审批通过电子签署
w.cezkdudy@lhll.au
宣传物料制作费用
2021-11-01
张三(threeZhang)
审批失败纸质签署
r.nmgw@peurezgn.sl
algolia 服务报销
2021-12-01
王芳(fangWang)
审批过期纸质签署
p.cumx@rampblpa.ru
相关周边制作费
2022-01-01
贾明(kyrieJia)
审批通过电子签署
w.cezkdudy@lhll.au
激励奖品快递费
2022-02-01
张三(threeZhang)
审批失败纸质签署
r.nmgw@peurezgn.sl
宣传物料制作费用
2021-11-01
"`; @@ -999,7 +999,7 @@ exports[`ssr snapshot test > renders ./src/table/_example/loading.vue correctly exports[`ssr snapshot test > renders ./src/table/_example/merge-cells.vue correctly 1`] = `"
申请人
申请状态
审批事项
邮箱地址
其他信息
贾明审批通过宣传物料制作费用w.cezkdudy@lhll.au电子签署2021-11-01
审批失败algolia 服务报销纸质签署2021-11-01
王芳审批过期纸质签署2021-11-01
审批通过激励奖品快递费b.nmgw@peurezgn.sl电子签署2021-11-01
张三审批失败宣传物料制作费用d.cumx@rampblpa.ru纸质签署2021-11-01
审批过期algolia 服务报销w.cezkdudy@lhll.au纸质签署2021-11-01
"`; -exports[`ssr snapshot test > renders ./src/table/_example/multi-header.vue correctly 1`] = `"
申请人
申请汇总
住宿费
交通费
物料费
奖品激励费
审批汇总
申请时间
申请状态
申请渠道和金额
审批状态
说明
类型
申请耗时(天)
审批单号
邮箱地址
贾明审批通过电子签署3100100100100组长审批审批单号001
w.cezkdudy@lhll.au
2022-01-01
张三审批失败纸质签署2200200200200部门审批审批单号002
r.nmgw@peurezgn.sl
2022-02-01
王芳审批过期纸质签署4400400400400财务审批审批单号003
p.cumx@rampblpa.ru
2022-03-01
贾明审批通过电子签署1500500500500组长审批审批单号004
w.cezkdudy@lhll.au
2022-04-01
张三审批失败纸质签署3100100100100部门审批审批单号005
r.nmgw@peurezgn.sl
2022-01-01
王芳审批过期纸质签署2200200200200财务审批审批单号006
p.cumx@rampblpa.ru
2022-02-01
贾明审批通过电子签署4400400400400组长审批审批单号007
w.cezkdudy@lhll.au
2022-03-01
张三审批失败纸质签署1500500500500部门审批审批单号008
r.nmgw@peurezgn.sl
2022-04-01
王芳审批过期纸质签署3100100100100财务审批审批单号009
p.cumx@rampblpa.ru
2022-01-01
贾明审批通过电子签署2200200200200组长审批审批单号0010
w.cezkdudy@lhll.au
2022-02-01
张三审批失败纸质签署4400400400400部门审批审批单号0011
r.nmgw@peurezgn.sl
2022-03-01
王芳审批过期纸质签署1500500500500财务审批审批单号0012
p.cumx@rampblpa.ru
2022-04-01
贾明审批通过电子签署3100100100100组长审批审批单号0013
w.cezkdudy@lhll.au
2022-01-01
张三审批失败纸质签署2200200200200部门审批审批单号0014
r.nmgw@peurezgn.sl
2022-02-01
王芳审批过期纸质签署4400400400400财务审批审批单号0015
p.cumx@rampblpa.ru
2022-03-01
贾明审批通过电子签署1500500500500组长审批审批单号0016
w.cezkdudy@lhll.au
2022-04-01
张三审批失败纸质签署3100100100100部门审批审批单号0017
r.nmgw@peurezgn.sl
2022-01-01
王芳审批过期纸质签署2200200200200财务审批审批单号0018
p.cumx@rampblpa.ru
2022-02-01
贾明审批通过电子签署4400400400400组长审批审批单号0019
w.cezkdudy@lhll.au
2022-03-01
张三审批失败纸质签署1500500500500部门审批审批单号0020
r.nmgw@peurezgn.sl
2022-04-01
王芳审批过期纸质签署3100100100100财务审批审批单号0021
p.cumx@rampblpa.ru
2022-01-01
贾明审批通过电子签署2200200200200组长审批审批单号0022
w.cezkdudy@lhll.au
2022-02-01
张三审批失败纸质签署4400400400400部门审批审批单号0023
r.nmgw@peurezgn.sl
2022-03-01
王芳审批过期纸质签署1500500500500财务审批审批单号0024
p.cumx@rampblpa.ru
2022-04-01
贾明审批通过电子签署3100100100100组长审批审批单号0025
w.cezkdudy@lhll.au
2022-01-01
张三审批失败纸质签署2200200200200部门审批审批单号0026
r.nmgw@peurezgn.sl
2022-02-01
王芳审批过期纸质签署4400400400400财务审批审批单号0027
p.cumx@rampblpa.ru
2022-03-01
贾明审批通过电子签署1500500500500组长审批审批单号0028
w.cezkdudy@lhll.au
2022-04-01
张三审批失败纸质签署3100100100100部门审批审批单号0029
r.nmgw@peurezgn.sl
2022-01-01
王芳审批过期纸质签署2200200200200财务审批审批单号0030
p.cumx@rampblpa.ru
2022-02-01
"`; +exports[`ssr snapshot test > renders ./src/table/_example/multi-header.vue correctly 1`] = `"
申请人
申请汇总
住宿费
交通费
物料费
奖品激励费
审批汇总
申请时间
申请状态
申请渠道和金额
审批状态
说明
类型
申请耗时(天)
审批单号
邮箱地址
贾明审批通过电子签署3100100100100组长审批审批单号001
w.cezkdudy@lhll.au
2022-01-01
张三审批失败纸质签署2200200200200部门审批审批单号002
r.nmgw@peurezgn.sl
2022-02-01
王芳审批过期纸质签署4400400400400财务审批审批单号003
p.cumx@rampblpa.ru
2022-03-01
贾明审批通过电子签署1500500500500组长审批审批单号004
w.cezkdudy@lhll.au
2022-04-01
张三审批失败纸质签署3100100100100部门审批审批单号005
r.nmgw@peurezgn.sl
2022-01-01
王芳审批过期纸质签署2200200200200财务审批审批单号006
p.cumx@rampblpa.ru
2022-02-01
贾明审批通过电子签署4400400400400组长审批审批单号007
w.cezkdudy@lhll.au
2022-03-01
张三审批失败纸质签署1500500500500部门审批审批单号008
r.nmgw@peurezgn.sl
2022-04-01
王芳审批过期纸质签署3100100100100财务审批审批单号009
p.cumx@rampblpa.ru
2022-01-01
贾明审批通过电子签署2200200200200组长审批审批单号0010
w.cezkdudy@lhll.au
2022-02-01
张三审批失败纸质签署4400400400400部门审批审批单号0011
r.nmgw@peurezgn.sl
2022-03-01
王芳审批过期纸质签署1500500500500财务审批审批单号0012
p.cumx@rampblpa.ru
2022-04-01
贾明审批通过电子签署3100100100100组长审批审批单号0013
w.cezkdudy@lhll.au
2022-01-01
张三审批失败纸质签署2200200200200部门审批审批单号0014
r.nmgw@peurezgn.sl
2022-02-01
王芳审批过期纸质签署4400400400400财务审批审批单号0015
p.cumx@rampblpa.ru
2022-03-01
贾明审批通过电子签署1500500500500组长审批审批单号0016
w.cezkdudy@lhll.au
2022-04-01
张三审批失败纸质签署3100100100100部门审批审批单号0017
r.nmgw@peurezgn.sl
2022-01-01
王芳审批过期纸质签署2200200200200财务审批审批单号0018
p.cumx@rampblpa.ru
2022-02-01
贾明审批通过电子签署4400400400400组长审批审批单号0019
w.cezkdudy@lhll.au
2022-03-01
张三审批失败纸质签署1500500500500部门审批审批单号0020
r.nmgw@peurezgn.sl
2022-04-01
王芳审批过期纸质签署3100100100100财务审批审批单号0021
p.cumx@rampblpa.ru
2022-01-01
贾明审批通过电子签署2200200200200组长审批审批单号0022
w.cezkdudy@lhll.au
2022-02-01
张三审批失败纸质签署4400400400400部门审批审批单号0023
r.nmgw@peurezgn.sl
2022-03-01
王芳审批过期纸质签署1500500500500财务审批审批单号0024
p.cumx@rampblpa.ru
2022-04-01
贾明审批通过电子签署3100100100100组长审批审批单号0025
w.cezkdudy@lhll.au
2022-01-01
张三审批失败纸质签署2200200200200部门审批审批单号0026
r.nmgw@peurezgn.sl
2022-02-01
王芳审批过期纸质签署4400400400400财务审批审批单号0027
p.cumx@rampblpa.ru
2022-03-01
贾明审批通过电子签署1500500500500组长审批审批单号0028
w.cezkdudy@lhll.au
2022-04-01
张三审批失败纸质签署3100100100100部门审批审批单号0029
r.nmgw@peurezgn.sl
2022-01-01
王芳审批过期纸质签署2200200200200财务审批审批单号0030
p.cumx@rampblpa.ru
2022-02-01
"`; exports[`ssr snapshot test > renders ./src/table/_example/multiple-sort.vue correctly 1`] = ` "

排序:[ @@ -1033,9 +1033,9 @@ exports[`ssr snapshot test > renders ./src/table/_example/style.vue correctly 1` exports[`ssr snapshot test > renders ./src/table/_example/tree.vue correctly 1`] = `"



排序
编号
申请人
签署方式
操作
0
申请人 0_1 号
电子签署
1
申请人 1_1 号
纸质签署
2
申请人 2_1 号
纸质签署
3
申请人 3_1 号
电子签署
4
申请人 4_1 号
纸质签署
66666
申请人懒加载节点 66666,点我体验
电子签署
88888
申请人懒加载节点 88888,点我体验
纸质签署
共 5 项数据
10 条/页
  • 1
"`; -exports[`ssr snapshot test > renders ./src/table/_example/tree-select.vue correctly 1`] = `"
编号
申请人
状态
申请事项
邮箱地址
1
贾明
审批通过宣传物料制作费用w.cezkdudy@lhll.au
2
张三
审批失败algolia 服务报销r.nmgw@peurezgn.sl
3
王芳
审批过期相关周边制作费p.cumx@rampblpa.ru
4
贾明
审批通过激励奖品快递费w.cezkdudy@lhll.au
5
张三
审批失败宣传物料制作费用r.nmgw@peurezgn.sl
6
王芳
审批过期algolia 服务报销p.cumx@rampblpa.ru
7
贾明
审批通过相关周边制作费w.cezkdudy@lhll.au
8
张三
审批失败激励奖品快递费r.nmgw@peurezgn.sl
9
王芳
审批过期宣传物料制作费用p.cumx@rampblpa.ru
10
贾明
审批通过algolia 服务报销w.cezkdudy@lhll.au
11
张三
审批失败相关周边制作费r.nmgw@peurezgn.sl
12
王芳
审批过期激励奖品快递费p.cumx@rampblpa.ru
13
贾明
审批通过宣传物料制作费用w.cezkdudy@lhll.au
14
张三
审批失败algolia 服务报销r.nmgw@peurezgn.sl
15
王芳
审批过期相关周边制作费p.cumx@rampblpa.ru
16
贾明
审批通过激励奖品快递费w.cezkdudy@lhll.au
17
张三
审批失败宣传物料制作费用r.nmgw@peurezgn.sl
18
王芳
审批过期algolia 服务报销p.cumx@rampblpa.ru
19
贾明
审批通过相关周边制作费w.cezkdudy@lhll.au
20
张三
审批失败激励奖品快递费r.nmgw@peurezgn.sl
21
王芳
审批过期宣传物料制作费用p.cumx@rampblpa.ru
22
贾明
审批通过algolia 服务报销w.cezkdudy@lhll.au
23
张三
审批失败相关周边制作费r.nmgw@peurezgn.sl
24
王芳
审批过期激励奖品快递费p.cumx@rampblpa.ru
25
贾明
审批通过宣传物料制作费用w.cezkdudy@lhll.au
26
张三
审批失败algolia 服务报销r.nmgw@peurezgn.sl
27
王芳
审批过期相关周边制作费p.cumx@rampblpa.ru
28
贾明
审批通过激励奖品快递费w.cezkdudy@lhll.au
29
张三
审批失败宣传物料制作费用r.nmgw@peurezgn.sl
30
王芳
审批过期algolia 服务报销p.cumx@rampblpa.ru
"`; +exports[`ssr snapshot test > renders ./src/table/_example/tree-select.vue correctly 1`] = `"
编号
申请人
状态
申请事项
邮箱地址
1
贾明
审批通过宣传物料制作费用w.cezkdudy@lhll.au
2
张三
审批失败algolia 服务报销r.nmgw@peurezgn.sl
3
王芳
审批过期相关周边制作费p.cumx@rampblpa.ru
4
贾明
审批通过激励奖品快递费w.cezkdudy@lhll.au
5
张三
审批失败宣传物料制作费用r.nmgw@peurezgn.sl
6
王芳
审批过期algolia 服务报销p.cumx@rampblpa.ru
7
贾明
审批通过相关周边制作费w.cezkdudy@lhll.au
8
张三
审批失败激励奖品快递费r.nmgw@peurezgn.sl
9
王芳
审批过期宣传物料制作费用p.cumx@rampblpa.ru
10
贾明
审批通过algolia 服务报销w.cezkdudy@lhll.au
11
张三
审批失败相关周边制作费r.nmgw@peurezgn.sl
12
王芳
审批过期激励奖品快递费p.cumx@rampblpa.ru
13
贾明
审批通过宣传物料制作费用w.cezkdudy@lhll.au
14
张三
审批失败algolia 服务报销r.nmgw@peurezgn.sl
15
王芳
审批过期相关周边制作费p.cumx@rampblpa.ru
16
贾明
审批通过激励奖品快递费w.cezkdudy@lhll.au
17
张三
审批失败宣传物料制作费用r.nmgw@peurezgn.sl
18
王芳
审批过期algolia 服务报销p.cumx@rampblpa.ru
19
贾明
审批通过相关周边制作费w.cezkdudy@lhll.au
20
张三
审批失败激励奖品快递费r.nmgw@peurezgn.sl
21
王芳
审批过期宣传物料制作费用p.cumx@rampblpa.ru
22
贾明
审批通过algolia 服务报销w.cezkdudy@lhll.au
23
张三
审批失败相关周边制作费r.nmgw@peurezgn.sl
24
王芳
审批过期激励奖品快递费p.cumx@rampblpa.ru
25
贾明
审批通过宣传物料制作费用w.cezkdudy@lhll.au
26
张三
审批失败algolia 服务报销r.nmgw@peurezgn.sl
27
王芳
审批过期相关周边制作费p.cumx@rampblpa.ru
28
贾明
审批通过激励奖品快递费w.cezkdudy@lhll.au
29
张三
审批失败宣传物料制作费用r.nmgw@peurezgn.sl
30
王芳
审批过期algolia 服务报销p.cumx@rampblpa.ru
"`; -exports[`ssr snapshot test > renders ./src/table/_example/virtual-scroll.vue correctly 1`] = `"
序号
申请人
申请状态
申请事项
邮箱地址
申请时间
1贾明审批通过部分宣传物料制作费用w.cezkdudy@lhll.au2022-01-01
2张三审批失败algolia 服务报销r.nmgw@peurezgn.sl2022-02-01
3王芳审批过期相关周边制作费p.cumx@rampblpa.ru2022-03-01
4贾明审批通过激励奖品快递费w.cezkdudy@lhll.au2022-04-01
5张三审批失败部分宣传物料制作费用r.nmgw@peurezgn.sl2022-01-01
6王芳审批过期algolia 服务报销p.cumx@rampblpa.ru2022-02-01
7贾明审批通过相关周边制作费w.cezkdudy@lhll.au2022-03-01
8张三审批失败激励奖品快递费r.nmgw@peurezgn.sl2022-04-01
9王芳审批过期部分宣传物料制作费用p.cumx@rampblpa.ru2022-01-01
10贾明审批通过algolia 服务报销w.cezkdudy@lhll.au2022-02-01
11贾明审批失败部分宣传物料制作费用w.cezkdudy@lhll.au2022-01-01
12张三审批过期algolia 服务报销r.nmgw@peurezgn.sl2022-02-01
13王芳审批通过相关周边制作费p.cumx@rampblpa.ru2022-03-01
14贾明审批失败激励奖品快递费w.cezkdudy@lhll.au2022-04-01
15张三审批过期部分宣传物料制作费用r.nmgw@peurezgn.sl2022-01-01
16王芳审批通过algolia 服务报销p.cumx@rampblpa.ru2022-02-01
17贾明审批失败相关周边制作费w.cezkdudy@lhll.au2022-03-01
18张三审批过期激励奖品快递费r.nmgw@peurezgn.sl2022-04-01
19王芳审批通过部分宣传物料制作费用p.cumx@rampblpa.ru2022-01-01
20贾明审批失败algolia 服务报销w.cezkdudy@lhll.au2022-02-01
21贾明审批过期部分宣传物料制作费用w.cezkdudy@lhll.au2022-01-01
22张三审批通过algolia 服务报销r.nmgw@peurezgn.sl2022-02-01
23王芳审批失败相关周边制作费p.cumx@rampblpa.ru2022-03-01
24贾明审批过期激励奖品快递费w.cezkdudy@lhll.au2022-04-01
25张三审批通过部分宣传物料制作费用r.nmgw@peurezgn.sl2022-01-01
26王芳审批失败algolia 服务报销p.cumx@rampblpa.ru2022-02-01
27贾明审批过期相关周边制作费w.cezkdudy@lhll.au2022-03-01
28张三审批通过激励奖品快递费r.nmgw@peurezgn.sl2022-04-01
29王芳审批失败部分宣传物料制作费用p.cumx@rampblpa.ru2022-01-01
30贾明审批过期algolia 服务报销w.cezkdudy@lhll.au2022-02-01
"`; +exports[`ssr snapshot test > renders ./src/table/_example/virtual-scroll.vue correctly 1`] = `"
序号
申请人
申请状态
申请事项
邮箱地址
申请时间
1贾明审批通过部分宣传物料制作费用w.cezkdudy@lhll.au2022-01-01
2张三审批失败algolia 服务报销r.nmgw@peurezgn.sl2022-02-01
3王芳审批过期相关周边制作费p.cumx@rampblpa.ru2022-03-01
4贾明审批通过激励奖品快递费w.cezkdudy@lhll.au2022-04-01
5张三审批失败部分宣传物料制作费用r.nmgw@peurezgn.sl2022-01-01
6王芳审批过期algolia 服务报销p.cumx@rampblpa.ru2022-02-01
7贾明审批通过相关周边制作费w.cezkdudy@lhll.au2022-03-01
8张三审批失败激励奖品快递费r.nmgw@peurezgn.sl2022-04-01
9王芳审批过期部分宣传物料制作费用p.cumx@rampblpa.ru2022-01-01
10贾明审批通过algolia 服务报销w.cezkdudy@lhll.au2022-02-01
11贾明审批失败部分宣传物料制作费用w.cezkdudy@lhll.au2022-01-01
12张三审批过期algolia 服务报销r.nmgw@peurezgn.sl2022-02-01
13王芳审批通过相关周边制作费p.cumx@rampblpa.ru2022-03-01
14贾明审批失败激励奖品快递费w.cezkdudy@lhll.au2022-04-01
15张三审批过期部分宣传物料制作费用r.nmgw@peurezgn.sl2022-01-01
16王芳审批通过algolia 服务报销p.cumx@rampblpa.ru2022-02-01
17贾明审批失败相关周边制作费w.cezkdudy@lhll.au2022-03-01
18张三审批过期激励奖品快递费r.nmgw@peurezgn.sl2022-04-01
19王芳审批通过部分宣传物料制作费用p.cumx@rampblpa.ru2022-01-01
20贾明审批失败algolia 服务报销w.cezkdudy@lhll.au2022-02-01
21贾明审批过期部分宣传物料制作费用w.cezkdudy@lhll.au2022-01-01
22张三审批通过algolia 服务报销r.nmgw@peurezgn.sl2022-02-01
23王芳审批失败相关周边制作费p.cumx@rampblpa.ru2022-03-01
24贾明审批过期激励奖品快递费w.cezkdudy@lhll.au2022-04-01
25张三审批通过部分宣传物料制作费用r.nmgw@peurezgn.sl2022-01-01
26王芳审批失败algolia 服务报销p.cumx@rampblpa.ru2022-02-01
27贾明审批过期相关周边制作费w.cezkdudy@lhll.au2022-03-01
28张三审批通过激励奖品快递费r.nmgw@peurezgn.sl2022-04-01
29王芳审批失败部分宣传物料制作费用p.cumx@rampblpa.ru2022-01-01
30贾明审批过期algolia 服务报销w.cezkdudy@lhll.au2022-02-01
"`; exports[`ssr snapshot test > renders ./src/tabs/_example/ban.vue correctly 1`] = `"

选项卡1的内容

"`; @@ -1091,7 +1091,7 @@ exports[`ssr snapshot test > renders ./src/tag-input/_example/max.vue correctly exports[`ssr snapshot test > renders ./src/tag-input/_example/size.vue correctly 1`] = `"
VueReact
VueReact
VueReact
"`; -exports[`ssr snapshot test > renders ./src/tag-input/_example/status.vue correctly 1`] = `"
VueReactMiniprogram
VueReactMiniprogram
这是普通文本提示
VueReactMiniprogram
校验通过文本提示
VueReactMiniprogram
校验不通过文本提示
VueReactMiniprogram
校验存在严重问题文本提示
"`; +exports[`ssr snapshot test > renders ./src/tag-input/_example/status.vue correctly 1`] = `"
VueReactMiniprogram
VueReactMiniprogram
这是普通文本提示
VueReactMiniprogram
校验通过文本提示
VueReactMiniprogram
校验不通过文本提示
VueReactMiniprogram
校验存在严重问题文本提示
"`; exports[`ssr snapshot test > renders ./src/tag-input/_example/theme.vue correctly 1`] = `"
VueReactMiniprogram
VueReactMiniprogram
VueReactMiniprogram
VueReactMiniprogram
"`; @@ -1195,7 +1195,7 @@ exports[`ssr snapshot test > renders ./src/tree/_example/debug-performance.vue c exports[`ssr snapshot test > renders ./src/tree/_example/debug-state.vue correctly 1`] = `"
"`; -exports[`ssr snapshot test > renders ./src/tree/_example/debug-vscroll.vue correctly 1`] = `"

虚拟滚动 - virtual 模式

插入节点数量:
filter:
"`; +exports[`ssr snapshot test > renders ./src/tree/_example/debug-vscroll.vue correctly 1`] = `"

虚拟滚动 - virtual 模式

插入节点数量:
filter:
"`; exports[`ssr snapshot test > renders ./src/tree/_example/disabled.vue correctly 1`] = `"

禁用整个 tree

禁用指定节点

"`; @@ -1227,11 +1227,11 @@ exports[`ssr snapshot test > renders ./src/tree/_example/sync.vue correctly 1`] exports[`ssr snapshot test > renders ./src/tree/_example/transition.vue correctly 1`] = `"
"`; -exports[`ssr snapshot test > renders ./src/tree/_example/vscroll.vue correctly 1`] = `"

虚拟滚动 - lazy模式

虚拟滚动 - virtual 模式

插入节点数量:
"`; +exports[`ssr snapshot test > renders ./src/tree/_example/vscroll.vue correctly 1`] = `"

虚拟滚动 - lazy模式

虚拟滚动 - virtual 模式

插入节点数量:
"`; exports[`ssr snapshot test > renders ./src/tree-select/_example/base.vue correctly 1`] = `"
单选:
"`; -exports[`ssr snapshot test > renders ./src/tree-select/_example/collapsed.vue correctly 1`] = `"
广州市+1
广州市更多...
"`; +exports[`ssr snapshot test > renders ./src/tree-select/_example/collapsed.vue correctly 1`] = `"
广州市+1
广州市更多...
"`; exports[`ssr snapshot test > renders ./src/tree-select/_example/dvalue.vue correctly 1`] = `"
"`; @@ -1239,7 +1239,7 @@ exports[`ssr snapshot test > renders ./src/tree-select/_example/filterable.vue c exports[`ssr snapshot test > renders ./src/tree-select/_example/lazy.vue correctly 1`] = `"
"`; -exports[`ssr snapshot test > renders ./src/tree-select/_example/multiple.vue correctly 1`] = `"
tdesign-vuetdesign-reacttdesign-miniprogram
"`; +exports[`ssr snapshot test > renders ./src/tree-select/_example/multiple.vue correctly 1`] = `"
tdesign-vuetdesign-reacttdesign-miniprogram
"`; exports[`ssr snapshot test > renders ./src/tree-select/_example/prefix.vue correctly 1`] = `"
"`; @@ -1247,7 +1247,7 @@ exports[`ssr snapshot test > renders ./src/tree-select/_example/props.vue correc exports[`ssr snapshot test > renders ./src/tree-select/_example/valuedisplay.vue correctly 1`] = `"
深圳市(shenzhen)
深圳市(shenzhen) 广州市(guangzhou)
"`; -exports[`ssr snapshot test > renders ./src/tree-select/_example/valuetype.vue correctly 1`] = `"
广州市深圳市
"`; +exports[`ssr snapshot test > renders ./src/tree-select/_example/valuetype.vue correctly 1`] = `"
广州市深圳市
"`; exports[`ssr snapshot test > renders ./src/upload/_example/base.vue correctly 1`] = `"

要求文件大小在 1M 以内
文件上传失败示例
"`;