@longhongguo/form-create-ant-design-vue 3.4.52 → 3.4.54
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 +6 -0
- package/dist/form-create.esm.css +6 -0
- package/dist/form-create.esm.js +2 -2
- package/dist/form-create.js +2 -2
- package/package.json +1 -1
- package/src/components/businessComponent/BuildStoreAuditDetail.vue +12 -8
- package/src/components/businessComponent/FcMultiImageUpload.vue +3 -0
- package/src/components/businessComponent/ProductManagementInspectionBlock.vue +1 -3
- package/src/components/businessComponent/StoreBillRateAdjustBlock.vue +24 -17
- package/src/components/businessComponent/StorePricingModeSwitchBlock.vue +647 -0
- package/src/style/index.css +6 -0
package/dist/form-create.css
CHANGED
|
@@ -259,6 +259,12 @@ textarea[readonly].ant-input {
|
|
|
259
259
|
pointer-events: auto !important;
|
|
260
260
|
}
|
|
261
261
|
|
|
262
|
+
/* 多图上传 FcMultiImageUpload:只读缩略图预览 / 内联灯箱需可点 */
|
|
263
|
+
.form-create.is-preview .fc-multi-image-upload,
|
|
264
|
+
.form-create.is-preview .fc-multi-image-upload * {
|
|
265
|
+
pointer-events: auto !important;
|
|
266
|
+
}
|
|
267
|
+
|
|
262
268
|
/* 预览模式:允许滚动条滚动(针对有滚动条的容器) */
|
|
263
269
|
.form-create.is-preview .ant-table-body,
|
|
264
270
|
.form-create.is-preview .ant-table-tbody,
|
package/dist/form-create.esm.css
CHANGED
|
@@ -259,6 +259,12 @@ textarea[readonly].ant-input {
|
|
|
259
259
|
pointer-events: auto !important;
|
|
260
260
|
}
|
|
261
261
|
|
|
262
|
+
/* 多图上传 FcMultiImageUpload:只读缩略图预览 / 内联灯箱需可点 */
|
|
263
|
+
.form-create.is-preview .fc-multi-image-upload,
|
|
264
|
+
.form-create.is-preview .fc-multi-image-upload * {
|
|
265
|
+
pointer-events: auto !important;
|
|
266
|
+
}
|
|
267
|
+
|
|
262
268
|
/* 预览模式:允许滚动条滚动(针对有滚动条的容器) */
|
|
263
269
|
.form-create.is-preview .ant-table-body,
|
|
264
270
|
.form-create.is-preview .ant-table-tbody,
|