设备 预约接口
This commit is contained in:
@@ -281,7 +281,7 @@ class _MinePageState extends State<NewMinePage> {
|
||||
children: [
|
||||
_buildListTile('assets/img/icon/order.svg',
|
||||
'我的订单', '快捷查看我在网上的订单记录',
|
||||
showTopLine: true, path: "/issueListpage"),
|
||||
showTopLine: true, path: ""),
|
||||
_buildListTile('assets/img/icon/store.svg',
|
||||
'门店体验', '如果想免费体验智能设备,可在此进行提前预约',
|
||||
path: "/experienceStorePage"),
|
||||
@@ -293,7 +293,7 @@ class _MinePageState extends State<NewMinePage> {
|
||||
),
|
||||
_buildListTile('assets/img/icon/mall.svg', '网上商城',
|
||||
'最新的智能产品线上购买服务',
|
||||
path: "/issueListpage"),
|
||||
path: ""),
|
||||
_buildListTile('assets/img/icon/address.svg',
|
||||
'地址管理', '用于收货和报修时联系您',
|
||||
path: "/addressListPage"),
|
||||
@@ -304,7 +304,7 @@ class _MinePageState extends State<NewMinePage> {
|
||||
'assets/img/icon/customer_service.svg',
|
||||
'在线客服',
|
||||
'购买和使用智能床过程中,如果遇到疑问可与客服进行联系',
|
||||
path: "/issueListpage"),
|
||||
path: ""),
|
||||
],
|
||||
),
|
||||
),
|
||||
@@ -345,15 +345,19 @@ class _MinePageState extends State<NewMinePage> {
|
||||
highlightColor: Colors.white,
|
||||
padding: EdgeInsets.all(0.rpx),
|
||||
onTap: () {
|
||||
Get.toNamed(path!);
|
||||
if (path == null || path.isEmpty) {
|
||||
TopSlideNotification.show(context, text: "待开发功能".tr);
|
||||
} else {
|
||||
Get.toNamed(path);
|
||||
}
|
||||
},
|
||||
child: Container(
|
||||
decoration: BoxDecoration(
|
||||
border: Border(
|
||||
top: showTopLine
|
||||
? BorderSide(color: Color(0xFF929699), width: 2.rpx)
|
||||
? BorderSide(color: Color(0xFF929699), width: 0.5.rpx)
|
||||
: BorderSide.none,
|
||||
bottom: BorderSide(color: Color(0xFF929699), width: 2.rpx),
|
||||
bottom: BorderSide(color: Color(0xFF929699), width: 0.5.rpx),
|
||||
),
|
||||
),
|
||||
height: 116.rpx,
|
||||
|
||||
Reference in New Issue
Block a user