Blame view

lib/pages/shopping/state.dart 245 Bytes
4224b3f8   吴启风   feat:支付详情页ui
1
2
3
4
5
6
7
8
9
10
  class ShoppingState {
    ShoppingState init() {
      return ShoppingState();
    }
  
    ShoppingState clone() {
      return ShoppingState();
    }
  }
  
2879454a   吴启风   feat:调通支付宝支付&游戏列表页
11
12
13
  class PaymentChannelChangeState extends ShoppingState {}
  
  class PaySuccessState extends ShoppingState {}