fix(glt): 修复票券模板编辑表单布局和字段映射问题

- 调整弹窗宽度从固定900px改为70%响应式宽度
- 修复表单项标签列布局配置
- 恢复购买数量是否算赠送开关组件并更新标签文字
- 交换释放期数和每期释放数量字段的标签、占位符和模型绑定
- 修复用户票券列表中购买数量字段的数据映射关系
This commit is contained in:
2026-02-09 21:19:09 +08:00
parent f1d023e7e6
commit 2e6004e2ad
2 changed files with 24 additions and 24 deletions

View File

@@ -31,8 +31,8 @@
</div>
</a-space>
</template>
<template v-if="column.key === 'buyQty'">
{{ record.availableQty }}
<template v-if="column.key === 'orderGoodsQty'">
{{ record.orderGoodsQty }}
</template>
<template v-if="column.key === 'image'">
<a-image :src="record.image" :width="50" />
@@ -146,8 +146,8 @@
},
{
title: '购买数量',
dataIndex: 'buyQty',
key: 'buyQty',
dataIndex: 'orderGoodsQty',
key: 'orderGoodsQty',
align: 'center'
},
{