@longhongguo/form-create-ant-design-vue 3.4.32 → 3.4.34
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 +11 -0
- package/dist/form-create.esm.css +11 -0
- package/dist/form-create.esm.js +2 -2
- package/dist/form-create.esm.js.map +1 -1
- package/dist/form-create.js +2 -2
- package/dist/form-create.js.map +1 -1
- package/package.json +1 -1
- package/src/api/store.js +35 -0
- package/src/components/FcEditorWrapper.vue +2 -2
- package/src/components/businessComponent/BuildStoreAuditDetail.vue +1235 -0
- package/src/components/businessComponent/ScatterStoreRecycleDetail.vue +533 -0
- package/src/core/api.js +37 -1
- package/src/device/request.js +2 -1
- package/src/style/index.css +11 -0
package/dist/form-create.css
CHANGED
|
@@ -248,6 +248,17 @@ textarea[readonly].ant-input {
|
|
|
248
248
|
cursor: pointer !important;
|
|
249
249
|
}
|
|
250
250
|
|
|
251
|
+
/* 业务组件:建店审核详情(需要支持 tab 切换和图片点击预览) */
|
|
252
|
+
.form-create.is-preview .fc-build-store-audit-detail,
|
|
253
|
+
.form-create.is-preview .fc-build-store-audit-detail * {
|
|
254
|
+
pointer-events: auto !important;
|
|
255
|
+
}
|
|
256
|
+
|
|
257
|
+
.form-create.is-preview .fc-scatter-recycle-detail,
|
|
258
|
+
.form-create.is-preview .fc-scatter-recycle-detail * {
|
|
259
|
+
pointer-events: auto !important;
|
|
260
|
+
}
|
|
261
|
+
|
|
251
262
|
/* 预览模式:允许滚动条滚动(针对有滚动条的容器) */
|
|
252
263
|
.form-create.is-preview .ant-table-body,
|
|
253
264
|
.form-create.is-preview .ant-table-tbody,
|
package/dist/form-create.esm.css
CHANGED
|
@@ -248,6 +248,17 @@ textarea[readonly].ant-input {
|
|
|
248
248
|
cursor: pointer !important;
|
|
249
249
|
}
|
|
250
250
|
|
|
251
|
+
/* 业务组件:建店审核详情(需要支持 tab 切换和图片点击预览) */
|
|
252
|
+
.form-create.is-preview .fc-build-store-audit-detail,
|
|
253
|
+
.form-create.is-preview .fc-build-store-audit-detail * {
|
|
254
|
+
pointer-events: auto !important;
|
|
255
|
+
}
|
|
256
|
+
|
|
257
|
+
.form-create.is-preview .fc-scatter-recycle-detail,
|
|
258
|
+
.form-create.is-preview .fc-scatter-recycle-detail * {
|
|
259
|
+
pointer-events: auto !important;
|
|
260
|
+
}
|
|
261
|
+
|
|
251
262
|
/* 预览模式:允许滚动条滚动(针对有滚动条的容器) */
|
|
252
263
|
.form-create.is-preview .ant-table-body,
|
|
253
264
|
.form-create.is-preview .ant-table-tbody,
|