@longhongguo/form-create-ant-design-vue 3.4.82 → 3.4.84
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.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/index.js +1 -0
- package/src/api/marketing.js +23 -0
- package/src/api/product.js +14 -0
- package/src/api/store.js +117 -0
- package/src/components/businessComponent/ActivitySettingsInspectionBlock.vue +874 -186
- package/src/components/businessComponent/BuildStoreAuditDetail.vue +4 -0
- package/src/components/businessComponent/EbCompanyToServiceSettlementApplyBlock.vue +1 -1
- package/src/components/businessComponent/MaterialArrivalInspectionBlock.vue +125 -50
- package/src/components/businessComponent/MeituanCompanyToServiceSettlementApplyBlock.vue +1 -1
- package/src/components/businessComponent/MerchantOperationAnalysisBlock.vue +5740 -0
- package/src/components/businessComponent/PlatformExpandDeliveryRangeApplyBlock.vue +7 -7
- package/src/components/businessComponent/ProductManagementInspectionBlock.vue +751 -180
- package/src/components/businessComponent/StoreBusinessPreparationBlock.vue +127 -19
- package/src/components/businessComponent/StorePlatformOfflineApplyBlock.vue +603 -0
- package/src/components/businessComponent/StorePlatformQualificationChangeApplyBlock.vue +1062 -252
- package/src/components/businessComponent/StorePlatformQualificationChangeAuditBlock.vue +35 -5
- package/src/components/businessComponent/StoreSetupInspectionBlock.vue +192 -68
- package/src/core/api.js +74 -1
- package/src/core/index.js +1 -0
- package/src/core/setupDayjsZhCn.js +8 -0
- package/src/device/request.js +1 -1
- package/src/style/index.css +6 -0
package/dist/form-create.css
CHANGED
|
@@ -294,6 +294,12 @@ textarea[readonly].ant-input {
|
|
|
294
294
|
pointer-events: auto !important;
|
|
295
295
|
}
|
|
296
296
|
|
|
297
|
+
/* 业务组件:商家运营分析 MerchantOperationAnalysisBlock(预览下门店分析 Tab、多平台展开收起、关闭等需可点) */
|
|
298
|
+
.form-create.is-preview .fc-moa-root,
|
|
299
|
+
.form-create.is-preview .fc-moa-root * {
|
|
300
|
+
pointer-events: auto !important;
|
|
301
|
+
}
|
|
302
|
+
|
|
297
303
|
/* 预览模式:允许滚动条滚动(针对有滚动条的容器) */
|
|
298
304
|
.form-create.is-preview .ant-table-body,
|
|
299
305
|
.form-create.is-preview .ant-table-tbody,
|
package/dist/form-create.esm.css
CHANGED
|
@@ -294,6 +294,12 @@ textarea[readonly].ant-input {
|
|
|
294
294
|
pointer-events: auto !important;
|
|
295
295
|
}
|
|
296
296
|
|
|
297
|
+
/* 业务组件:商家运营分析 MerchantOperationAnalysisBlock(预览下门店分析 Tab、多平台展开收起、关闭等需可点) */
|
|
298
|
+
.form-create.is-preview .fc-moa-root,
|
|
299
|
+
.form-create.is-preview .fc-moa-root * {
|
|
300
|
+
pointer-events: auto !important;
|
|
301
|
+
}
|
|
302
|
+
|
|
297
303
|
/* 预览模式:允许滚动条滚动(针对有滚动条的容器) */
|
|
298
304
|
.form-create.is-preview .ant-table-body,
|
|
299
305
|
.form-create.is-preview .ant-table-tbody,
|