cloud-web-corejs 1.0.283 → 1.0.285
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/mixins.js +126 -19
- package/src/components/VabUpload/view.vue +248 -209
- package/src/components/excelExport/conditionExportConfig.js +112 -0
- package/src/components/excelExport/exportType.js +8 -0
- package/src/components/excelExport/index.vue +7 -1
- package/src/components/excelExport/mixins.js +410 -259
- package/src/components/mobile/wf/addTaskUserdialog.vue +100 -80
- package/src/components/mobile/wf/content.vue +1705 -1556
- package/src/components/mobile/wf/deleteTaskUserDialog.vue +73 -54
- package/src/components/mobile/wf/mixins/wfModifyDialogMixin.js +8 -6
- package/src/components/mobile/wf/selectUserDialog.vue +118 -0
- package/src/components/mobile/wf/setCandidateDialog.vue +69 -48
- package/src/components/mobile/wf/urgingDialog.vue +75 -52
- package/src/components/mobile/wf/wfModifyDialog.vue +4 -0
- package/src/components/xform/docs/2026-08 xform H5 P0 /345/256/236/347/216/260/350/247/204/346/240/274.md" +528 -0
- package/src/components/xform/docs/2026-08 xform H5 P1 /345/256/236/347/216/260/350/247/204/346/240/274.md" +412 -0
- package/src/components/xform/docs/2026-08 xform H5 P2 /345/256/236/347/216/260/350/247/204/346/240/274.md" +287 -0
- package/src/components/xform/docs/2026-08 xform /347/247/273/345/212/250/347/253/257/345/270/203/345/261/200/345/257/271/351/275/220 bill_setting /346/226/271/346/241/210.md" +400 -0
- package/src/components/xform/form-designer/designer.js +5 -0
- package/src/components/xform/form-designer/form-widget/container-widget/detail-h5-widget.vue +243 -227
- package/src/components/xform/form-designer/form-widget/container-widget/h5-card-pane-widget.vue +228 -207
- package/src/components/xform/form-designer/form-widget/container-widget/h5-card-widget.vue +165 -136
- package/src/components/xform/form-designer/form-widget/dialog/fileReferenceDialog.vue +2 -3
- package/src/components/xform/form-designer/form-widget/dialog/formDialog.vue +3 -3
- package/src/components/xform/form-designer/form-widget/dialog/importDialog.vue +190 -185
- package/src/components/xform/form-designer/form-widget/dialog/importDialogMixin.js +2641 -1833
- package/src/components/xform/form-designer/form-widget/dialog/searchFormDialog.vue +2 -3
- package/src/components/xform/form-designer/form-widget/field-widget/form-item-wrapper.vue +39 -1
- package/src/components/xform/form-designer/form-widget/field-widget/import-button-widget.vue +18 -5
- package/src/components/xform/form-designer/form-widget/field-widget/select-export-item-button-widget.vue +2 -1
- package/src/components/xform/form-designer/form-widget/field-widget/singleUpload-widget.vue +1 -1
- package/src/components/xform/form-designer/form-widget/field-widget/table-export-button-widget.vue +2 -1
- package/src/components/xform/form-designer/form-widget/field-widget/vabUpload-widget.vue +3 -2
- package/src/components/xform/form-designer/indexMixin.js +35 -1
- package/src/components/xform/form-designer/setting-panel/property-editor/container-list-h5/list-h5-editor.vue +19 -5
- package/src/components/xform/form-designer/setting-panel/property-editor/field-import-button/import-button-editor.vue +62 -1
- package/src/components/xform/form-designer/setting-panel/property-editor/field-import-button/import2-button-editor.vue +236 -96
- package/src/components/xform/form-designer/setting-panel/property-editor/field-table-export-button/empty-number-input.vue +51 -0
- package/src/components/xform/form-designer/setting-panel/property-editor/field-table-export-button/select-export-item-button-editor.vue +27 -2
- package/src/components/xform/form-designer/setting-panel/property-editor/field-table-export-button/table-export-button-editor.vue +33 -3
- package/src/components/xform/form-designer/setting-panel/property-editor/h5Span-editor.vue +51 -0
- package/src/components/xform/form-designer/setting-panel/property-editor/itemStyle-editor.vue +39 -0
- package/src/components/xform/form-designer/setting-panel/propertyRegister.js +10 -0
- package/src/components/xform/form-designer/toolbar-panel/index.vue +6 -1
- package/src/components/xform/form-designer/toolbar-panel/indexMixin.js +13 -0
- package/src/components/xform/form-designer/widget-panel/indexMixin.js +22 -6
- package/src/components/xform/form-designer/widget-panel/widgetsConfig.js +88 -3
- package/src/components/xform/form-render/container-item/data-table-mixin.js +3 -1
- package/src/components/xform/form-render/container-item/detail-h5-item.vue +204 -34
- package/src/components/xform/form-render/container-item/h5-card-pane-item.vue +160 -140
- package/src/components/xform/form-render/container-item/list-h5-item.vue +1917 -1700
- package/src/components/xform/form-render/index.vue +7 -1
- package/src/components/xform/form-render/indexMixin.js +42 -4
- package/src/components/xform/lang/en-US.js +10 -0
- package/src/components/xform/lang/zh-CN.js +10 -0
- package/src/components/xform/styles/h5.scss +2305 -0
- package/src/directive/append-to-body/index.js +48 -0
- package/src/index.js +4 -0
- package/src/views/bd/setting/form_template/edit.vue +25 -3
- package/src/views/bd/setting/form_template/formDesignerDialog.vue +6 -0
- package/src/views/bd/setting/form_template/formTemplateType.js +43 -0
- package/src/views/bd/setting/form_template/list.vue +1 -0
- package/src/views/bd/setting/form_template/mixins/edit.js +64 -0
- package/src/views/bd/setting/form_template/mixins/list.js +27 -0
- package/src/views/user/form/vform/designer.vue +3 -1
- package/src/components/xform/docs/2026-09 /346/235/241/344/273/266/345/257/274/345/207/272/345/244/247/346/225/260/346/215/256/351/207/217/345/264/251/346/272/203/346/216/222/346/237/245.md" +0 -389
- package/src/components/xform/docs/2026-09 /347/274/226/350/276/221/350/241/250/350/241/214/345/206/205/344/277/235/345/255/230/346/240/241/351/252/214/350/214/203/345/233/264/344/270/216/345/210/227/345/277/205/345/241/253/350/247/243/346/236/220/344/277/256/345/244/215.md" +0 -233
- package/src/components/xform/form-render/container-item/list-h5-item2.vue +0 -1340
|
@@ -1,80 +1,100 @@
|
|
|
1
|
-
<template>
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
class="
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
<
|
|
56
|
-
<
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
</el-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
<
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
</
|
|
1
|
+
<template>
|
|
2
|
+
<!-- 外壳改成 el-dialog + append-to-body,说明见 urgingDialog.vue。
|
|
3
|
+
里面的 h5SearchDialog(.pop-screen-box)跟着一起进了 body:它自己是
|
|
4
|
+
position:fixed + z-index:99,在 wrapper 这个层叠上下文内部照样盖住本弹层,
|
|
5
|
+
样式同样要走顶层选择器,见 xform/styles/h5.scss。 -->
|
|
6
|
+
<el-dialog
|
|
7
|
+
:visible.sync="dialogVisible"
|
|
8
|
+
:append-to-body="true"
|
|
9
|
+
:modal="false"
|
|
10
|
+
:show-close="false"
|
|
11
|
+
:close-on-click-modal="false"
|
|
12
|
+
:destroy-on-close="true"
|
|
13
|
+
custom-class="h5-pop-dialog"
|
|
14
|
+
width="100%"
|
|
15
|
+
top="0px"
|
|
16
|
+
@close="dialogClose"
|
|
17
|
+
>
|
|
18
|
+
<div>
|
|
19
|
+
<div class="header-box">
|
|
20
|
+
<i class="back el-icon-close" @click="dialogClose"></i>
|
|
21
|
+
选择用户
|
|
22
|
+
</div>
|
|
23
|
+
<div class="search-H5box">
|
|
24
|
+
<div class="txt">
|
|
25
|
+
<el-input placeholder="姓名" suffix-icon="el-icon-search" v-model="formData.nickName"
|
|
26
|
+
@keyup.enter.native="searchEvent">
|
|
27
|
+
<el-button slot="append" @click="searchEvent"> 搜索</el-button>
|
|
28
|
+
</el-input>
|
|
29
|
+
</div>
|
|
30
|
+
<div class="icon-screen" @click="popStatus = true">
|
|
31
|
+
<i class="iconfont icon-shaixuan1"></i>
|
|
32
|
+
<span>高级筛选</span>
|
|
33
|
+
</div>
|
|
34
|
+
</div>
|
|
35
|
+
<div class="flex">
|
|
36
|
+
<div class="checkbox-all_list" @scroll="handleScroll">
|
|
37
|
+
<div v-for="(row,rowIndex) in page.records" :key="rowIndex" class="order-item"
|
|
38
|
+
:class="{on:checkList.includes(row.id)}" @click="changeCheck(row,rowIndex)">
|
|
39
|
+
<div class="is-checked" v-if="checkList.includes(row.id)"><i class="el-icon-check"></i>已选择</div>
|
|
40
|
+
<div class="t1">
|
|
41
|
+
<i class="icon"></i>
|
|
42
|
+
<span>{{ row.nickName }}</span>
|
|
43
|
+
</div>
|
|
44
|
+
<div class="t2">
|
|
45
|
+
<p>登录名:{{ row.loginAccount }}</p>
|
|
46
|
+
<p>角色:{{ row.roleNames }}</p>
|
|
47
|
+
<p>机构:{{ row.saleOrgNames }}</p>
|
|
48
|
+
<p>邮编:{{ row.zipCode }}</p>
|
|
49
|
+
<p>地址:{{ row.address }}</p>
|
|
50
|
+
<p>性别:{{ genderMap[row.gender] }}</p>
|
|
51
|
+
<p>所属组织:{{ row.companyNames }}</p>
|
|
52
|
+
</div>
|
|
53
|
+
</div>
|
|
54
|
+
</div>
|
|
55
|
+
<div class="checkbox-all">
|
|
56
|
+
<div class='ca-t'>已选择用户:</div>
|
|
57
|
+
<div class="ca-c">
|
|
58
|
+
<span v-for="(checkRow, rowIndex) in checkRows" :key="rowIndex">{{ checkRow.nickName }}<i
|
|
59
|
+
class="el-icon-delete" @click="changeCheck(checkRow)"></i></span>
|
|
60
|
+
</div>
|
|
61
|
+
</div>
|
|
62
|
+
</div>
|
|
63
|
+
<div class="fixed-bottom-btns">
|
|
64
|
+
<el-button type="primary" plain class="btn" @click="dialogClose" icon="el-icon-close">取 消
|
|
65
|
+
</el-button>
|
|
66
|
+
<el-button type="primary" class="btn" @click="dialogPrimary" icon="el-icon-check">确 定</el-button>
|
|
67
|
+
</div>
|
|
68
|
+
<h5SearchDialog v-if="popStatus" :visiable.sync="popStatus" @searchEvent="confirmSearchDialog"
|
|
69
|
+
@resetEvent="resetSearchDialog">
|
|
70
|
+
<el-form label-position="top">
|
|
71
|
+
<el-form-item label="登录名">
|
|
72
|
+
<el-input v-model="formData.loginAccount" class="txt" clearable/>
|
|
73
|
+
</el-form-item>
|
|
74
|
+
<el-form-item label="姓名">
|
|
75
|
+
<el-input v-model="formData.nickName" class="txt" clearable/>
|
|
76
|
+
</el-form-item>
|
|
77
|
+
<el-form-item label="手机号">
|
|
78
|
+
<el-input v-model="formData.mobile" class="txt" clearable/>
|
|
79
|
+
</el-form-item>
|
|
80
|
+
</el-form>
|
|
81
|
+
</h5SearchDialog>
|
|
82
|
+
</div>
|
|
83
|
+
</el-dialog>
|
|
84
|
+
</template>
|
|
85
|
+
|
|
86
|
+
<script>
|
|
87
|
+
import selectDialogMixins from '../../../mixins/mobile/selectDialog/index.js';
|
|
88
|
+
import mixin from './mixins/addTaskUserdialogMixin';
|
|
89
|
+
|
|
90
|
+
export default {
|
|
91
|
+
name: 'userDialog',
|
|
92
|
+
props: ['visiable', 'multi', 'rows', 'param'],
|
|
93
|
+
mixins: [selectDialogMixins, mixin],
|
|
94
|
+
data() {
|
|
95
|
+
return {
|
|
96
|
+
dialogVisible: true
|
|
97
|
+
};
|
|
98
|
+
}
|
|
99
|
+
};
|
|
100
|
+
</script>
|