cloud-web-corejs 1.0.54-dev.745 → 1.0.54-dev.746
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 +192 -192
- package/src/App.vue +73 -71
- package/src/components/baseArea/index.vue +1628 -1628
- package/src/components/fileLibrary/categoryMoveDialog.vue +109 -109
- package/src/components/fileLibrary/fileObjAuthDialog.vue +297 -297
- package/src/components/fileLibrary/index.vue +1109 -1109
- package/src/components/fileLibrary/propertiesDialog.vue +190 -190
- package/src/components/fileLibrary/recycleBinDialog.vue +237 -237
- package/src/components/wf/mixins/setCandidateDialog.js +217 -217
- package/src/components/wf/mixins/setCandidateDialog2.js +252 -252
- package/src/components/xform/docs//345/257/271/346/257/224/345/212/237/350/203/275/350/220/275/345/234/260/346/226/271/346/241/210.md +986 -986
- package/src/components/xform/form-designer/form-widget/field-widget/area-select-widget.vue +272 -272
- package/src/components/xform/form-designer/form-widget/field-widget/baseAttachment-widget.vue +216 -216
- package/src/components/xform/form-designer/form-widget/field-widget/form-item-wrapper.vue +928 -928
- package/src/components/xform/form-designer/index.vue +195 -195
- package/src/components/xform/form-designer/indexMixin.js +848 -848
- package/src/components/xform/form-designer/setting-panel/index.vue +313 -313
- package/src/components/xform/form-designer/setting-panel/property-editor/container-data-table/columnRenderDialog.vue +124 -124
- package/src/components/xform/form-designer/setting-panel/propertyRegister.js +369 -369
- package/src/components/xform/form-designer/widget-panel/index.vue +389 -389
- package/src/components/xform/form-designer/widget-panel/indexMixin.js +343 -343
- package/src/components/xform/form-designer/widget-panel/widgetsConfig.js +4531 -4531
- package/src/components/xform/form-render/container-item/data-table-mixin.js +4748 -4576
- package/src/components/xform/form-render/container-item/tab-item.vue +125 -125
- package/src/components/xform/form-render/indexMixin.js +5061 -5078
- package/src/components/xform/lang/en-US.js +457 -457
- package/src/components/xform/lang/zh-CN.js +628 -628
- package/src/components/xform/utils/util.js +1585 -1554
- package/src/index.js +344 -230
- package/src/layout/components/AppMain.vue +122 -125
- package/src/layout/components/extractedCode/viewDialog.vue +207 -207
- package/src/layout/components/langTool.vue +128 -123
- package/src/layout/defaultLayout.vue +164 -158
- package/src/permission.js +185 -135
- package/src/store/config/index.js +667 -669
- package/src/store/modules/micro.js +46 -0
- package/src/store/modules/permission.js +461 -373
- package/src/store/modules/user.js +419 -415
- package/src/utils/auth.js +27 -1
- package/src/utils/index.js +579 -6
- package/src/utils/keepAlive.js +4 -0
- package/src/utils/menuAdapter.js +183 -0
- package/src/utils/request.js +417 -28
- package/src/views/bd/setting/formVersion/ftHistoryDialog.vue +483 -483
- package/src/views/bd/setting/form_script/form_list.vue +174 -174
- package/src/views/bd/setting/form_script/mixins/form_list.js +330 -330
- package/src/views/bd/setting/form_template/formDesignerDialog.vue +171 -171
- package/src/views/bd/setting/form_template/wfObjConfigDialog.vue +253 -253
- package/src/views/user/menuFallback/index.vue +123 -0
- package/src/views/user/wf/wfReport/index.vue +625 -625
|
@@ -1,109 +1,109 @@
|
|
|
1
|
-
<template>
|
|
2
|
-
<div>
|
|
3
|
-
<el-dialog
|
|
4
|
-
:title="dialogTitle"
|
|
5
|
-
:modal-append-to-body="false"
|
|
6
|
-
:close-on-click-modal="false"
|
|
7
|
-
:visible.sync="showDialog"
|
|
8
|
-
:modal="false"
|
|
9
|
-
custom-class="dialog-style list-dialog pd_0"
|
|
10
|
-
width="500px"
|
|
11
|
-
height="500px"
|
|
12
|
-
@close="dialogClose"
|
|
13
|
-
v-el-drag-dialog
|
|
14
|
-
v-el-dialog-center
|
|
15
|
-
>
|
|
16
|
-
<div class="cont" id="_categoryMoveDialog" style="height: 430px;">
|
|
17
|
-
<el-form ref="editForm" :model="formData" class="tree-box tree-annex">
|
|
18
|
-
<el-tree
|
|
19
|
-
:props="defaultProps"
|
|
20
|
-
:load="loadNode"
|
|
21
|
-
node-key="id"
|
|
22
|
-
ref="tree"
|
|
23
|
-
lazy
|
|
24
|
-
:filter-node-method="filterNode"
|
|
25
|
-
:expand-on-click-node="false"
|
|
26
|
-
@node-click="handleNodeClick"
|
|
27
|
-
class="tree-list"
|
|
28
|
-
icon-class="el-icon-arrow-down"
|
|
29
|
-
>
|
|
30
|
-
<span class="el-tree-node__label" slot-scope="{ node }" v-if="!node.data.moreBtn">
|
|
31
|
-
<i class="ico-wenjian"></i>
|
|
32
|
-
<span>{{ node.label }}</span>
|
|
33
|
-
</span>
|
|
34
|
-
<span v-else class="el-tree-node__label">
|
|
35
|
-
<el-button type="primary" plain class="button-sty">{{ node.label }}</el-button>
|
|
36
|
-
</span>
|
|
37
|
-
</el-tree>
|
|
38
|
-
</el-form>
|
|
39
|
-
</div>
|
|
40
|
-
<label id="labBtn" class="transverse">
|
|
41
|
-
<div class="icon">
|
|
42
|
-
<i class="el-icon-more"></i>
|
|
43
|
-
<i class="el-icon-more"></i>
|
|
44
|
-
</div>
|
|
45
|
-
</label>
|
|
46
|
-
|
|
47
|
-
<div class="multipleChoice nextDom">
|
|
48
|
-
<el-breadcrumb separator-class="el-icon-arrow-right">
|
|
49
|
-
<i class="position el-icon-map-location"></i>
|
|
50
|
-
<el-breadcrumb-item v-for="(treeNode,index) in treeNodeArr" :key="index" @click.native="doNav(treeNode)">{{
|
|
51
|
-
treeNode.label
|
|
52
|
-
}}
|
|
53
|
-
</el-breadcrumb-item>
|
|
54
|
-
</el-breadcrumb>
|
|
55
|
-
</div>
|
|
56
|
-
<template v-if="isBillEnabled && handleType==2">
|
|
57
|
-
<div class="multipleChoice nextDom2" style="margin-top:8px;">
|
|
58
|
-
<el-button slot="append" icon="el-icon-search" @click="openBillDialog" size="mini" class="an-btn-search"
|
|
59
|
-
type="success" style="float: left;margin-left: 8px;margin-top: 8px;"></el-button>
|
|
60
|
-
<el-tooltip :enterable="false" effect="dark" :content="$t2('全部删除','components.fileLibrary.allDelete')" placement="top">
|
|
61
|
-
<a class="allDel icon-quanbushanchu" @click="clearBill" style="right: 8px;left: auto;"></a>
|
|
62
|
-
</el-tooltip>
|
|
63
|
-
<div class="list">
|
|
64
|
-
<div class="item" v-for="(checkBillData,index) in checkBillDatas" :key="index">
|
|
65
|
-
<p>{{ getBillLabel(checkBillData) }}</p>
|
|
66
|
-
<a class="el-icon-close" @click="deleteBillData(index)"></a>
|
|
67
|
-
</div>
|
|
68
|
-
</div>
|
|
69
|
-
</div>
|
|
70
|
-
</template>
|
|
71
|
-
|
|
72
|
-
<span slot="footer" class="dialog-footer">
|
|
73
|
-
<el-button type="primary" plain class="button-sty" @click="dialogClose">
|
|
74
|
-
<i class="el-icon-close el-icon"></i>
|
|
75
|
-
{{ $t2('取 消', 'system.button.cancel2') }}
|
|
76
|
-
</el-button>
|
|
77
|
-
<el-button type="primary" class="button-sty" @click="dialogPrimary">
|
|
78
|
-
<i class="el-icon-check el-icon"></i>
|
|
79
|
-
{{ $t2('确 定', 'system.button.confirm2') }}
|
|
80
|
-
</el-button>
|
|
81
|
-
</span>
|
|
82
|
-
</el-dialog>
|
|
83
|
-
<component
|
|
84
|
-
v-if="isBillEnabled && showBillDialog && billDialogContent"
|
|
85
|
-
:visiable.sync="showBillDialog"
|
|
86
|
-
:is="billDialogContent"
|
|
87
|
-
v-bind="billDialogParam"
|
|
88
|
-
@confirm="confirmBillDialog"
|
|
89
|
-
></component>
|
|
90
|
-
</div>
|
|
91
|
-
</template>
|
|
92
|
-
<script>
|
|
93
|
-
import mixins from './mixins/categoryMoveDialogMixins';
|
|
94
|
-
|
|
95
|
-
export default {
|
|
96
|
-
mixins: [mixins]
|
|
97
|
-
};
|
|
98
|
-
</script>
|
|
99
|
-
<style scoped>
|
|
100
|
-
.tree-box {
|
|
101
|
-
width: 100%;
|
|
102
|
-
border-right: none;
|
|
103
|
-
}
|
|
104
|
-
|
|
105
|
-
.tree-box.tree-annex .tree-list {
|
|
106
|
-
height: auto;
|
|
107
|
-
padding-top: 0;
|
|
108
|
-
}
|
|
109
|
-
</style>
|
|
1
|
+
<template>
|
|
2
|
+
<div>
|
|
3
|
+
<el-dialog
|
|
4
|
+
:title="dialogTitle"
|
|
5
|
+
:modal-append-to-body="false"
|
|
6
|
+
:close-on-click-modal="false"
|
|
7
|
+
:visible.sync="showDialog"
|
|
8
|
+
:modal="false"
|
|
9
|
+
custom-class="dialog-style list-dialog pd_0"
|
|
10
|
+
width="500px"
|
|
11
|
+
height="500px"
|
|
12
|
+
@close="dialogClose"
|
|
13
|
+
v-el-drag-dialog
|
|
14
|
+
v-el-dialog-center
|
|
15
|
+
>
|
|
16
|
+
<div class="cont" id="_categoryMoveDialog" style="height: 430px;">
|
|
17
|
+
<el-form ref="editForm" :model="formData" class="tree-box tree-annex">
|
|
18
|
+
<el-tree
|
|
19
|
+
:props="defaultProps"
|
|
20
|
+
:load="loadNode"
|
|
21
|
+
node-key="id"
|
|
22
|
+
ref="tree"
|
|
23
|
+
lazy
|
|
24
|
+
:filter-node-method="filterNode"
|
|
25
|
+
:expand-on-click-node="false"
|
|
26
|
+
@node-click="handleNodeClick"
|
|
27
|
+
class="tree-list"
|
|
28
|
+
icon-class="el-icon-arrow-down"
|
|
29
|
+
>
|
|
30
|
+
<span class="el-tree-node__label" slot-scope="{ node }" v-if="!node.data.moreBtn">
|
|
31
|
+
<i class="ico-wenjian"></i>
|
|
32
|
+
<span>{{ node.label }}</span>
|
|
33
|
+
</span>
|
|
34
|
+
<span v-else class="el-tree-node__label">
|
|
35
|
+
<el-button type="primary" plain class="button-sty">{{ node.label }}</el-button>
|
|
36
|
+
</span>
|
|
37
|
+
</el-tree>
|
|
38
|
+
</el-form>
|
|
39
|
+
</div>
|
|
40
|
+
<label id="labBtn" class="transverse">
|
|
41
|
+
<div class="icon">
|
|
42
|
+
<i class="el-icon-more"></i>
|
|
43
|
+
<i class="el-icon-more"></i>
|
|
44
|
+
</div>
|
|
45
|
+
</label>
|
|
46
|
+
|
|
47
|
+
<div class="multipleChoice nextDom">
|
|
48
|
+
<el-breadcrumb separator-class="el-icon-arrow-right">
|
|
49
|
+
<i class="position el-icon-map-location"></i>
|
|
50
|
+
<el-breadcrumb-item v-for="(treeNode,index) in treeNodeArr" :key="index" @click.native="doNav(treeNode)">{{
|
|
51
|
+
treeNode.label
|
|
52
|
+
}}
|
|
53
|
+
</el-breadcrumb-item>
|
|
54
|
+
</el-breadcrumb>
|
|
55
|
+
</div>
|
|
56
|
+
<template v-if="isBillEnabled && handleType==2">
|
|
57
|
+
<div class="multipleChoice nextDom2" style="margin-top:8px;">
|
|
58
|
+
<el-button slot="append" icon="el-icon-search" @click="openBillDialog" size="mini" class="an-btn-search"
|
|
59
|
+
type="success" style="float: left;margin-left: 8px;margin-top: 8px;"></el-button>
|
|
60
|
+
<el-tooltip :enterable="false" effect="dark" :content="$t2('全部删除','components.fileLibrary.allDelete')" placement="top">
|
|
61
|
+
<a class="allDel icon-quanbushanchu" @click="clearBill" style="right: 8px;left: auto;"></a>
|
|
62
|
+
</el-tooltip>
|
|
63
|
+
<div class="list">
|
|
64
|
+
<div class="item" v-for="(checkBillData,index) in checkBillDatas" :key="index">
|
|
65
|
+
<p>{{ getBillLabel(checkBillData) }}</p>
|
|
66
|
+
<a class="el-icon-close" @click="deleteBillData(index)"></a>
|
|
67
|
+
</div>
|
|
68
|
+
</div>
|
|
69
|
+
</div>
|
|
70
|
+
</template>
|
|
71
|
+
|
|
72
|
+
<span slot="footer" class="dialog-footer">
|
|
73
|
+
<el-button type="primary" plain class="button-sty" @click="dialogClose">
|
|
74
|
+
<i class="el-icon-close el-icon"></i>
|
|
75
|
+
{{ $t2('取 消', 'system.button.cancel2') }}
|
|
76
|
+
</el-button>
|
|
77
|
+
<el-button type="primary" class="button-sty" @click="dialogPrimary">
|
|
78
|
+
<i class="el-icon-check el-icon"></i>
|
|
79
|
+
{{ $t2('确 定', 'system.button.confirm2') }}
|
|
80
|
+
</el-button>
|
|
81
|
+
</span>
|
|
82
|
+
</el-dialog>
|
|
83
|
+
<component
|
|
84
|
+
v-if="isBillEnabled && showBillDialog && billDialogContent"
|
|
85
|
+
:visiable.sync="showBillDialog"
|
|
86
|
+
:is="billDialogContent"
|
|
87
|
+
v-bind="billDialogParam"
|
|
88
|
+
@confirm="confirmBillDialog"
|
|
89
|
+
></component>
|
|
90
|
+
</div>
|
|
91
|
+
</template>
|
|
92
|
+
<script>
|
|
93
|
+
import mixins from './mixins/categoryMoveDialogMixins';
|
|
94
|
+
|
|
95
|
+
export default {
|
|
96
|
+
mixins: [mixins]
|
|
97
|
+
};
|
|
98
|
+
</script>
|
|
99
|
+
<style scoped>
|
|
100
|
+
.tree-box {
|
|
101
|
+
width: 100%;
|
|
102
|
+
border-right: none;
|
|
103
|
+
}
|
|
104
|
+
|
|
105
|
+
.tree-box.tree-annex .tree-list {
|
|
106
|
+
height: auto;
|
|
107
|
+
padding-top: 0;
|
|
108
|
+
}
|
|
109
|
+
</style>
|