cloud-web-corejs 1.1.0-dev.10 → 1.1.0-dev.11
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/mobile/wf/content.vue +1 -1
- package/src/components/mobile/wf/selectUserDialog.vue +8 -12
- package/src/components/xform/form-render/container-item/detail-h5-item.vue +1 -1
- package/src/components/xform/styles/h5.scss +483 -459
- package/src/components/xform/docs/2026-08 xform H5 P0 /345/256/236/347/216/260/350/247/204/346/240/274.md" +0 -528
- package/src/components/xform/docs/2026-08 xform H5 P1 /345/256/236/347/216/260/350/247/204/346/240/274.md" +0 -412
- package/src/components/xform/docs/2026-08 xform H5 P2 /345/256/236/347/216/260/350/247/204/346/240/274.md" +0 -287
- 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" +0 -400
- package/src/views/demo/bizTab/bill/billConfig.js +0 -41
- package/src/views/demo/bizTab/bill/detail.vue +0 -436
- package/src/views/demo/bizTab/bill/list.vue +0 -288
- package/src/views/demo/bizTab/bill/productDialog.vue +0 -176
- package/src/views/demo/bizTab/simple/billApi.js +0 -123
- package/src/views/demo/bizTab/simple/detail.vue +0 -407
- package/src/views/demo/bizTab/simple/list.vue +0 -217
- package/src/views/demo/bizTab/standalone/index.vue +0 -121
- package/src/views/demo/bizTab/wf/billConfig.js +0 -44
- package/src/views/demo/bizTab/wf/detail.vue +0 -661
- package/src/views/demo/bizTab/wf/list.vue +0 -242
- package/src/views/user/home/wjl/content.vue +0 -1569
- package/src/views/user/outLink/cc_form_view.vue +0 -188
package/package.json
CHANGED
|
@@ -221,7 +221,7 @@
|
|
|
221
221
|
</el-select>
|
|
222
222
|
</el-form-item>
|
|
223
223
|
<el-form-item label="驳回意见" field="opinion">
|
|
224
|
-
<el-input type="textarea" :rows="
|
|
224
|
+
<el-input type="textarea" :rows="5"
|
|
225
225
|
:placeholder="$t2('请输入内容', 'components.wf.rejectOpinionPlaceholder')"
|
|
226
226
|
v-model="rejectForm.opinion" class="txt"></el-input>
|
|
227
227
|
</el-form-item>
|
|
@@ -13,21 +13,17 @@
|
|
|
13
13
|
走 xform/styles/h5.scss 的 .h5-pop-dialog(顶层选择器,body 挂载后才命中)。 -->
|
|
14
14
|
<el-dialog
|
|
15
15
|
:visible.sync="dialogVisible"
|
|
16
|
+
:title="$t1('选择用户')"
|
|
16
17
|
:append-to-body="true"
|
|
17
18
|
:modal="false"
|
|
18
|
-
:show-close="false"
|
|
19
19
|
:close-on-click-modal="false"
|
|
20
20
|
:destroy-on-close="true"
|
|
21
|
-
custom-class="
|
|
21
|
+
custom-class="dialog-style h5view-dialog"
|
|
22
22
|
width="100%"
|
|
23
23
|
top="0px"
|
|
24
24
|
@close="dialogClose"
|
|
25
25
|
>
|
|
26
|
-
<div>
|
|
27
|
-
<div class="header-box">
|
|
28
|
-
<i class="back el-icon-close" @click="dialogClose"></i>
|
|
29
|
-
{{ $t1('选择用户') }}
|
|
30
|
-
</div>
|
|
26
|
+
<div class="selected-flex-box">
|
|
31
27
|
<div class="search-H5box">
|
|
32
28
|
<div class="txt">
|
|
33
29
|
<el-input placeholder="姓名" suffix-icon="el-icon-search" v-model="formData.nickName"
|
|
@@ -68,11 +64,6 @@
|
|
|
68
64
|
</div>
|
|
69
65
|
</div>
|
|
70
66
|
</div>
|
|
71
|
-
<div class="fixed-bottom-btns">
|
|
72
|
-
<el-button type="primary" plain class="btn" @click="dialogClose" icon="el-icon-close">{{ $t1('取 消') }}
|
|
73
|
-
</el-button>
|
|
74
|
-
<el-button type="primary" class="btn" @click="dialogPrimary" icon="el-icon-check">{{ $t1('确 定') }}</el-button>
|
|
75
|
-
</div>
|
|
76
67
|
<h5SearchDialog v-if="popStatus" :visiable.sync="popStatus" @searchEvent="confirmSearchDialog"
|
|
77
68
|
@resetEvent="resetSearchDialog">
|
|
78
69
|
<el-form label-position="top">
|
|
@@ -85,6 +76,11 @@
|
|
|
85
76
|
</el-form>
|
|
86
77
|
</h5SearchDialog>
|
|
87
78
|
</div>
|
|
79
|
+
<span slot="footer" class="dialog-footer">
|
|
80
|
+
<el-button type="primary" plain class="btn" @click="dialogClose" icon="el-icon-close">{{ $t1('取 消') }}
|
|
81
|
+
</el-button>
|
|
82
|
+
<el-button type="primary" class="btn" @click="dialogPrimary" icon="el-icon-check">{{ $t1('确 定') }}</el-button>
|
|
83
|
+
</span>
|
|
88
84
|
</el-dialog>
|
|
89
85
|
</template>
|
|
90
86
|
|
|
@@ -98,7 +98,7 @@
|
|
|
98
98
|
<i class="el-icon-arrow-up h5-more-icon"></i>
|
|
99
99
|
<el-dropdown-menu slot="dropdown">
|
|
100
100
|
<el-dropdown-item v-for="(subWidget, swIdx) in overflowButtons()" :key="swIdx">
|
|
101
|
-
<el-button v-if="subWidget.__builtin" class="button-sty" :type="subWidget.type"
|
|
101
|
+
<el-button v-if="subWidget.__builtin" class="button-sty h5-dropdown-button" :type="subWidget.type"
|
|
102
102
|
@click="subWidget.onClick">{{ subWidget.label }}</el-button>
|
|
103
103
|
<component v-else :is="subWidget.type + '-widget'" :field="subWidget" :designer="null"
|
|
104
104
|
:parent-list="widget.widgetList"
|