cloud-web-corejs 1.0.54-dev.744 → 1.0.54-dev.745
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/fileLibrary/categoryMoveDialog.vue +1 -1
- package/src/components/fileLibrary/fileObjAuthDialog.vue +171 -172
- package/src/components/fileLibrary/index.vue +57 -58
- package/src/components/fileLibrary/propertiesDialog.vue +1 -1
- package/src/components/fileLibrary/recycleBinDialog.vue +50 -49
- package/src/components/xform/form-designer/form-widget/dialog/baseFormulaDialog copy.vue +971 -0
- package/src/components/xform/form-designer/form-widget/dialog/vabSearchDialog.vue +408 -0
- package/src/components/xform/form-designer/index.vue +2 -2
- package/src/components/xform/form-designer/indexMixin.js +2 -2
- package/src/components/xform/form-designer/setting-panel/index.vue +2 -3
- package/src/components/xform/form-designer/setting-panel/property-editor/container-data-table/columnRenderDialog.vue +16 -16
- package/src/components/xform/form-designer/widget-panel/index.vue +3 -3
- package/src/components/xform/utils/formHttp.js +162 -0
- package/src/layout/components/AppMain.vue +5 -2
- package/src/layout/components/extractedCode/viewDialog.vue +2 -2
- package/src/views/bd/setting/formVersion/ftHistoryDialog.vue +1 -9
- package/src/views/bd/setting/form_template/formDesignerDialog.vue +21 -21
- package/src/views/bd/setting/form_template/wfObjConfigDialog.vue +43 -44
- package/src/views/user/wf/wfReport/index.vue +10 -4
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
v-el-dialog-center
|
|
13
13
|
>
|
|
14
14
|
<div id="containt">
|
|
15
|
-
<div class="file-library" style="padding:0 6px 6px;">
|
|
15
|
+
<div class="file-library" style="padding:0 6px 6px;height:80vh">
|
|
16
16
|
<div class="annex-screen">
|
|
17
17
|
<div class="fl">
|
|
18
18
|
<el-button type="primary" class="button-sty" icon="el-icon-refresh-left" @click="rever()">{{$t2('还原','components.fileLibrary.revert')}}
|
|
@@ -119,53 +119,54 @@
|
|
|
119
119
|
</div>
|
|
120
120
|
</div>
|
|
121
121
|
</div>
|
|
122
|
-
<
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
<
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
<
|
|
137
|
-
<span>
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
<
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
122
|
+
<div v-show="showType==2">
|
|
123
|
+
<vxe-grid ref="table-m1" v-bind="vxeOption" :data="page.records"
|
|
124
|
+
@resizable-change="$vxeTableUtil.onColumnWitchChange" @custom="$vxeTableUtil.customHandle"
|
|
125
|
+
@checkbox-change="tableCheckChange"
|
|
126
|
+
@checkbox-all="tableCheckAll">
|
|
127
|
+
<template #pager>
|
|
128
|
+
<vxe-pager
|
|
129
|
+
class="pages-box"
|
|
130
|
+
:current-page.sync="page.current"
|
|
131
|
+
:page-size.sync="page.size"
|
|
132
|
+
:total="page.total"
|
|
133
|
+
:layouts="['PrevPage', 'Number', 'NextPage']"
|
|
134
|
+
@page-change="changePageNew"
|
|
135
|
+
>
|
|
136
|
+
<template #right>
|
|
137
|
+
<span>
|
|
138
|
+
<span>{{$t2('当前记录','components.table.pageInfo')}}</span>
|
|
139
|
+
<span class="f-red"> {{ page.records.length }} </span>
|
|
140
|
+
<span>/</span>
|
|
141
|
+
<span class="f-red"> {{ page.total }}</span>
|
|
142
|
+
</span>
|
|
143
|
+
</template>
|
|
144
|
+
</vxe-pager>
|
|
145
|
+
</template>
|
|
146
|
+
<template #operate="{row}">
|
|
147
|
+
<a
|
|
148
|
+
href="javascript:void(0);"
|
|
149
|
+
class="a-link"
|
|
150
|
+
@click="openPropertiesDialog(row)"
|
|
151
|
+
>
|
|
152
|
+
<el-tooltip :enterable="false" effect="dark" :content="$t2('详情','components.fileLibrary.detail')" placement="top"
|
|
153
|
+
popper-class="tooltip-skin">
|
|
154
|
+
<i class="iconfont icon-shuxing"/>
|
|
155
|
+
</el-tooltip>
|
|
156
|
+
</a>
|
|
157
|
+
<a
|
|
158
|
+
href="javascript:void(0);"
|
|
159
|
+
class="a-link"
|
|
160
|
+
@click="rever([row])"
|
|
161
|
+
>
|
|
162
|
+
<el-tooltip :enterable="false" effect="dark" :content="$t2('还原','components.fileLibrary.revert')" placement="top"
|
|
163
|
+
popper-class="tooltip-skin">
|
|
164
|
+
<i class="el-icon-refresh-left"/>
|
|
165
|
+
</el-tooltip>
|
|
166
|
+
</a>
|
|
167
|
+
</template>
|
|
168
|
+
</vxe-grid>
|
|
169
|
+
</div>
|
|
169
170
|
</div>
|
|
170
171
|
</div>
|
|
171
172
|
</div>
|
|
@@ -232,5 +233,5 @@ export default {
|
|
|
232
233
|
z-index: 9999;
|
|
233
234
|
}
|
|
234
235
|
}*/
|
|
235
|
-
|
|
236
|
+
.file-library > .grid-height > div{flex:1}
|
|
236
237
|
</style>
|