chore: release v1.0.24
Deploy / build-linux-web (push) Successful in 59s
Deploy / build-windows (push) Successful in 1m50s
Deploy / build-macos (push) Successful in 1m22s
Deploy / build-android (push) Successful in 1m26s
Deploy / build-ios (push) Successful in 7s
Deploy / release-deploy (push) Successful in 1m39s
Deploy / build-linux-web (push) Successful in 59s
Deploy / build-windows (push) Successful in 1m50s
Deploy / build-macos (push) Successful in 1m22s
Deploy / build-android (push) Successful in 1m26s
Deploy / build-ios (push) Successful in 7s
Deploy / release-deploy (push) Successful in 1m39s
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
@@ -1822,6 +1822,7 @@ class _ShopEditDialogState extends ConsumerState<_ShopEditDialog> {
|
||||
late final TextEditingController _addressCtrl;
|
||||
late final TextEditingController _phoneCtrl;
|
||||
late final TextEditingController _managerCtrl;
|
||||
late final TextEditingController _wechatCtrl;
|
||||
bool _saving = false;
|
||||
bool _uploadingLogo = false;
|
||||
|
||||
@@ -1832,6 +1833,7 @@ class _ShopEditDialogState extends ConsumerState<_ShopEditDialog> {
|
||||
_addressCtrl = TextEditingController(text: widget.shop.address);
|
||||
_phoneCtrl = TextEditingController(text: widget.shop.phone);
|
||||
_managerCtrl = TextEditingController(text: widget.shop.managerName);
|
||||
_wechatCtrl = TextEditingController(text: widget.shop.wechatId);
|
||||
}
|
||||
|
||||
@override
|
||||
@@ -1840,6 +1842,7 @@ class _ShopEditDialogState extends ConsumerState<_ShopEditDialog> {
|
||||
_addressCtrl.dispose();
|
||||
_phoneCtrl.dispose();
|
||||
_managerCtrl.dispose();
|
||||
_wechatCtrl.dispose();
|
||||
super.dispose();
|
||||
}
|
||||
|
||||
@@ -1882,6 +1885,7 @@ class _ShopEditDialogState extends ConsumerState<_ShopEditDialog> {
|
||||
'address': _addressCtrl.text.trim(),
|
||||
'phone': _phoneCtrl.text.trim(),
|
||||
'manager_name': _managerCtrl.text.trim(),
|
||||
'wechat_id': _wechatCtrl.text.trim(),
|
||||
});
|
||||
if (mounted) {
|
||||
Navigator.of(context).pop();
|
||||
@@ -1950,6 +1954,14 @@ class _ShopEditDialogState extends ConsumerState<_ShopEditDialog> {
|
||||
controller: _managerCtrl,
|
||||
decoration: const InputDecoration(labelText: '负责人'),
|
||||
),
|
||||
const SizedBox(height: 12),
|
||||
TextField(
|
||||
controller: _wechatCtrl,
|
||||
decoration: const InputDecoration(
|
||||
labelText: '微信号(可选)',
|
||||
hintText: '填写后顾客扫码可查看',
|
||||
),
|
||||
),
|
||||
],
|
||||
),
|
||||
),
|
||||
|
||||
Reference in New Issue
Block a user