cloud-web-corejs 1.0.62 → 1.0.64
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 +1 -1
- package/src/components/VabUpload/index.vue +2 -1
- package/src/components/VabUpload/mixins.js +1 -1
- package/src/components/VabUpload/view.vue +2 -1
- package/src/components/excelExport/exportFieldDialog.vue +16 -6
- package/src/components/excelExport/index.js +2 -1
- package/src/components/excelExport/index.vue +8 -6
- package/src/components/excelExport/mixins.js +1 -1
- package/src/components/table/index.js +2 -1
- package/src/views/user/area/dialog.vue +3 -2
@@ -107,7 +107,7 @@
|
|
107
107
|
@checkbox-all="checkAll"
|
108
108
|
@cell-dblclick="checkWithSubmit"
|
109
109
|
>
|
110
|
-
<template #form>
|
110
|
+
<template #form v-if="!(param && param.onlySearchTopLevel)">
|
111
111
|
<div class="clearfix screen-btns">
|
112
112
|
<div class="fr">
|
113
113
|
<vxe-button icon="el-icon-brush" class="button-sty" @click="resetEvent" type="text" status="primary"
|
@@ -379,7 +379,8 @@ export default {
|
|
379
379
|
field: 'name',
|
380
380
|
width: 250,
|
381
381
|
fixed: 'left',
|
382
|
-
treeNode: true,
|
382
|
+
// treeNode: true,
|
383
|
+
treeNode: !(this.param && this.param.onlySearchTopLevel)
|
383
384
|
},
|
384
385
|
{
|
385
386
|
field: 'fullName',
|