mirror of
https://gitee.com/ShopeX/ECShopX_admin-frontend
synced 2026-08-05 20:45:50 +08:00
This merge bundles multiple fixes and UX improvements across decoration, routing/path picker behavior, i18n, goods/category management, coupon detail filtering, and system config pages.
This commit is contained in:
19
.cursor/commit-summary/2026-04-20-coupon-mobile-erp-tip.md
Normal file
19
.cursor/commit-summary/2026-04-20-coupon-mobile-erp-tip.md
Normal file
@@ -0,0 +1,19 @@
|
||||
## 本次变更总结
|
||||
|
||||
**时间**: 2026-04-20
|
||||
|
||||
**涉及文件**:
|
||||
- `src/view/member/cardticket/detail/receive.vue` (修改)
|
||||
- `src/view/member/cardticket/detail/used.vue` (修改)
|
||||
- `src/views/settings/systemConfig/wdtSetting.vue` (修改)
|
||||
- `src/views/settings/systemConfig/jstSetting.vue` (修改)
|
||||
- `src/i18n/locales/zh-CN.json` (修改)
|
||||
- `src/i18n/locales/en.json` (修改)
|
||||
- `src/i18n/locales/ar.json` (修改)
|
||||
|
||||
**主要改动**:
|
||||
- 优惠券管理「查看优惠券数据」两个子列表新增手机号查询能力,支持输入手机号后搜索、回车搜索和清空后重查。
|
||||
- 旺店通与聚水潭系统配置页顶部新增服务商模式提示,采用 `SpPlatformTip` 方式展示并与现有页面风格对齐。
|
||||
- 补充三语文案键 `59579ae2.c5d4d8` 与 `20f6ad88.c5d4d8`,用于两处服务商提示文案。
|
||||
|
||||
**一句话概括**: feat: 优惠券数据列表支持手机号查询并补充 ERP 服务商提示
|
||||
@@ -0,0 +1,12 @@
|
||||
## 本次变更总结
|
||||
|
||||
**时间**: 2026-04-21
|
||||
|
||||
**涉及文件**:
|
||||
- `src/view/goods/saleCategory.vue` (修改)
|
||||
|
||||
**主要改动**:
|
||||
- 在销售分类列表中移除平台端限制条件,原本仅非平台端显示的操作列改为全端可见。
|
||||
- 通过删除 `v-if="!VERSION_PLATFORM()"`,让平台账号也能看到该列中的相关操作入口。
|
||||
|
||||
**一句话概括**: fix: 放开平台端销售分类列表操作列显示限制
|
||||
@@ -0,0 +1,16 @@
|
||||
## 本次变更总结
|
||||
|
||||
**时间**: 2026-04-21
|
||||
|
||||
**涉及文件**:
|
||||
- `src/view/mall/goods/physical/list.vue` (修改)
|
||||
- `src/i18n/locales/zh-CN.json` (修改)
|
||||
- `src/i18n/locales/en.json` (修改)
|
||||
- `src/i18n/locales/ar.json` (修改)
|
||||
|
||||
**主要改动**:
|
||||
- 修复“商品管理 > 自营商品”中点击“同步至所有店铺”时确认弹窗文案错误(显示为“审核失败”)的问题。
|
||||
- 新增独立 i18n key `6f19b2ab.6b3d7e` 作为同步确认文案,避免复用冲突 key 导致串文案。
|
||||
- 同步补齐中/英/阿三语文案,并将确认框标题改为稳定的提示文案 key。
|
||||
|
||||
**一句话概括**: fix: 修复自营商品同步所有店铺时弹窗误显示审核失败
|
||||
19
.cursor/commit-summary/2026-04-23-goodsCard-decorate.md
Normal file
19
.cursor/commit-summary/2026-04-23-goodsCard-decorate.md
Normal file
@@ -0,0 +1,19 @@
|
||||
## 本次变更总结
|
||||
|
||||
**时间**: 2026-04-23
|
||||
|
||||
**涉及文件**:
|
||||
- `src/components/sp-decorate/index.vue` (修改)
|
||||
- `src/view/decorate/index.vue` (修改)
|
||||
- `src/view/decorate/comps/configsetting.js` (修改)
|
||||
- `src/view/decorate/wgts/wgt_goodsCard/config.js` (修改)
|
||||
- `src/view/decorate/wgts/wgt_goodsCard/index.vue` (修改)
|
||||
|
||||
**主要改动**:
|
||||
- **落库名与组件名对齐**:`goodsCard` 挂件 Vue `name` 改为 `goodsCard`,与 `config.name` 一致,避免与商城 `Goods` 混淆;保存/预览通过 `findWidgetForPersistedName` 用 `config.name` 解析挂件。
|
||||
- **装修保存与回显**:`SpDecorate`、`decorate/index` 的 `onSave` / `onSaveTemplate` 等改为按 `persistedName` 查找挂件并调用 `transformOut`,场景 `1005` 下旧数据 `goods` 兼容映射到 `goodsCard`。
|
||||
- **商品卡片配置**:`transformIn`/`transformOut` 接入 `transformInBase`、`createTransformOutBase`,正确读写外边距/内边距及内外背景;移除误标为「组件间距」的 `padded` 开关项。
|
||||
- **商品卡片 UI**:去掉标题区与 `padded` 相关样式;卡片块用 `getInnerStyle` + 默认白底与圆角;列表项信息区改为纵向 flex 布局。
|
||||
- **全局样式注入**:`configsetting` 为 `goodsCard` 增加与 `goods` 相同的内边距(`innerPadding`)自动配置。
|
||||
|
||||
**一句话概括**: fix: 软文商品卡片 goodsCard 落库解析、样式转换与预览保存一致
|
||||
@@ -0,0 +1,11 @@
|
||||
## 本次变更总结
|
||||
|
||||
**时间**: 2026-04-23
|
||||
|
||||
**涉及文件**:
|
||||
- `src/view/goods/saleCategory.vue` (修改)
|
||||
|
||||
**主要改动**:
|
||||
- 销售分类编辑表单中「前台是否显示」(`is_show_front`) 表单项去掉 `isShow: () => !this.VERSION_PLATFORM()`,**平台版**下也会展示该开关,与标准版一致可配置。
|
||||
|
||||
**一句话概括**: fix: 销售分类「前台是否显示」在平台版不再隐藏
|
||||
20
.cursor/commit-summary/2026-04-23-summary.md
Normal file
20
.cursor/commit-summary/2026-04-23-summary.md
Normal file
@@ -0,0 +1,20 @@
|
||||
## 本次变更总结
|
||||
|
||||
**时间**: 2026-04-23
|
||||
|
||||
**涉及文件**:
|
||||
- `src/components/sp-picker/pickers/picker-path.vue` (修改)
|
||||
- `src/components/sp-decorate/index.vue` (修改)
|
||||
- `src/view/decorate/index.vue` (修改)
|
||||
- `src/view/decorate/wgts/wgt_goodsCard/config.js` (修改)
|
||||
- `src/i18n/locales/zh-CN.json` (修改)
|
||||
- `src/i18n/locales/en.json` (修改)
|
||||
- `src/i18n/locales/ar.json` (修改)
|
||||
|
||||
**主要改动**:
|
||||
- **设置路径弹窗**:移除「文章」Tab 及 `PickerArticle`;历史 `tab === 'article'` 时打开弹窗默认切到「商品」。
|
||||
- **软文装修预览**:`SpDecorate` 增加 `findWidgetForPersistedName`,scene 1005 下旧数据 `name: goods` 映射为 `GoodsCard` 挂件。
|
||||
- **商品卡片挂件**:`config.name` 由 `goods` 改为 `goodsCard`,与商城商品列表挂件区分;装修左侧分类 `functionalNames` 增加 `goodsCard`。
|
||||
- **文案**:商城商品挂件 `8865eba5.9897d8` 改为「商品列表」等;新增 `8f58e7cb.d4e5f6`「商品卡片(正文)」三语(若 `wgt_goodsCard` 已改用该 key 则用于展示名)。
|
||||
|
||||
**一句话概括**: feat: 路径弹窗下线文章;软文商品卡片与商品列表区分及 i18n
|
||||
@@ -1,12 +1,7 @@
|
||||
## 本次变更总结
|
||||
## 最近一次变更(2026-04-23)
|
||||
|
||||
**时间**: 2026-04-16
|
||||
**一句话概括**: fix: 软文商品卡片 goodsCard 落库解析、样式转换与预览保存一致
|
||||
|
||||
**涉及文件**:
|
||||
- `src/i18n/locales/zh-CN.json`、`en.json`、`ar.json`
|
||||
**要点**: `findWidgetForPersistedName` 统一按 `config.name` 找挂件;`goodsCard` 组件名与 transform 对齐;内层样式走 `getInnerStyle`;去掉「组件间距」开关与标题区 UI。
|
||||
|
||||
**主要改动**:
|
||||
- `223cc8af.e366cc` → 切换语言(及 en/ar 对应译文)。
|
||||
- `d81d8932.4f2c29` → 设置路径(路径选择器标题,三语与语义对齐)。
|
||||
|
||||
**一句话概括**: i18n: 路径弹窗标题恢复为设置路径;链接项 223cc8af 改为切换语言
|
||||
详见: `.cursor/commit-summary/2026-04-23-goodsCard-decorate.md`
|
||||
|
||||
Reference in New Issue
Block a user