@longhongguo/form-create-ant-design-vue 3.4.89 → 3.4.91
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/dist/form-create.css +8 -0
- package/dist/form-create.esm.css +8 -0
- package/dist/form-create.esm.js +2 -2
- package/dist/form-create.js +2 -2
- package/package.json +1 -1
- package/src/components/FcEditorWrapper.vue +0 -19
- package/src/components/businessComponent/MerchantOperationAnalysisBlock.vue +751 -552
- package/src/components/businessComponent/StoreOperationQualityFollowUpBlock.vue +807 -0
- package/src/components/businessComponent/SubsidyApplyBlock.vue +209 -34
- package/src/style/index.css +8 -0
package/dist/form-create.css
CHANGED
|
@@ -45,6 +45,14 @@
|
|
|
45
45
|
margin-bottom: 22px !important;
|
|
46
46
|
}
|
|
47
47
|
|
|
48
|
+
/* 业务组件等未包 ant-form-item 的 show-count(如 MerchantOperationAnalysisBlock 第二步) */
|
|
49
|
+
.ant-input-textarea.ant-input-textarea-show-count:not(.ant-input-textarea-in-form-item),
|
|
50
|
+
.ant-input-textarea-show-count:not(.ant-input-textarea-in-form-item) {
|
|
51
|
+
display: flow-root !important;
|
|
52
|
+
width: 100% !important;
|
|
53
|
+
max-height: fit-content;
|
|
54
|
+
}
|
|
55
|
+
|
|
48
56
|
.form-create {
|
|
49
57
|
width: 100%;
|
|
50
58
|
}
|
package/dist/form-create.esm.css
CHANGED
|
@@ -45,6 +45,14 @@
|
|
|
45
45
|
margin-bottom: 22px !important;
|
|
46
46
|
}
|
|
47
47
|
|
|
48
|
+
/* 业务组件等未包 ant-form-item 的 show-count(如 MerchantOperationAnalysisBlock 第二步) */
|
|
49
|
+
.ant-input-textarea.ant-input-textarea-show-count:not(.ant-input-textarea-in-form-item),
|
|
50
|
+
.ant-input-textarea-show-count:not(.ant-input-textarea-in-form-item) {
|
|
51
|
+
display: flow-root !important;
|
|
52
|
+
width: 100% !important;
|
|
53
|
+
max-height: fit-content;
|
|
54
|
+
}
|
|
55
|
+
|
|
48
56
|
.form-create {
|
|
49
57
|
width: 100%;
|
|
50
58
|
}
|