| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133 |
- <?xml version="1.0" encoding="utf-8"?>
- <DirectionalLayout
- xmlns:ohos="http://schemas.huawei.com/res/ohos"
- ohos:height="match_parent"
- ohos:width="match_parent"
- ohos:orientation="vertical"
- ohos:background_element="#FFFFFFFF"
- ohos:padding="16vp">
- <!-- 标题 -->
- <Text
- ohos:id="$+id:detail_title"
- ohos:height="match_content"
- ohos:width="match_parent"
- ohos:text="订单详情"
- ohos:text_size="18fp"
- ohos:text_color="#FF000000"
- ohos:text_weight="600"
- ohos:bottom_margin="16vp"/>
- <!-- 商品名称 -->
- <DirectionalLayout
- ohos:height="match_content"
- ohos:width="match_parent"
- ohos:orientation="horizontal"
- ohos:bottom_margin="12vp">
- <Text
- ohos:height="match_content"
- ohos:width="80vp"
- ohos:text="商品名称:"
- ohos:text_size="14fp"
- ohos:text_color="#FF666666"/>
- <Text
- ohos:id="$+id:detail_goods_name"
- ohos:height="match_content"
- ohos:width="0vp"
- ohos:weight="1"
- ohos:text="--"
- ohos:text_size="14fp"
- ohos:text_color="#FF000000"/>
- </DirectionalLayout>
- <!-- 业务类型 -->
- <DirectionalLayout
- ohos:height="match_content"
- ohos:width="match_parent"
- ohos:orientation="horizontal"
- ohos:bottom_margin="12vp">
- <Text
- ohos:height="match_content"
- ohos:width="80vp"
- ohos:text="业务类型:"
- ohos:text_size="14fp"
- ohos:text_color="#FF666666"/>
- <Text
- ohos:id="$+id:detail_biz_type"
- ohos:height="match_content"
- ohos:width="0vp"
- ohos:weight="1"
- ohos:text="--"
- ohos:text_size="14fp"
- ohos:text_color="#FF000000"/>
- </DirectionalLayout>
- <!-- 车场名称 -->
- <DirectionalLayout
- ohos:height="match_content"
- ohos:width="match_parent"
- ohos:orientation="horizontal"
- ohos:bottom_margin="12vp">
- <Text
- ohos:height="match_content"
- ohos:width="80vp"
- ohos:text="车场名称:"
- ohos:text_size="14fp"
- ohos:text_color="#FF666666"/>
- <Text
- ohos:id="$+id:detail_park_name"
- ohos:height="match_content"
- ohos:width="0vp"
- ohos:weight="1"
- ohos:text="--"
- ohos:text_size="14fp"
- ohos:text_color="#FF000000"/>
- </DirectionalLayout>
- <!-- 支付时间 -->
- <DirectionalLayout
- ohos:height="match_content"
- ohos:width="match_parent"
- ohos:orientation="horizontal"
- ohos:bottom_margin="12vp">
- <Text
- ohos:height="match_content"
- ohos:width="80vp"
- ohos:text="支付时间:"
- ohos:text_size="14fp"
- ohos:text_color="#FF666666"/>
- <Text
- ohos:id="$+id:detail_pay_time"
- ohos:height="match_content"
- ohos:width="0vp"
- ohos:weight="1"
- ohos:text="--"
- ohos:text_size="14fp"
- ohos:text_color="#FF000000"/>
- </DirectionalLayout>
- <!-- 金额 -->
- <DirectionalLayout
- ohos:height="match_content"
- ohos:width="match_parent"
- ohos:orientation="horizontal"
- ohos:bottom_margin="12vp">
- <Text
- ohos:height="match_content"
- ohos:width="80vp"
- ohos:text="支付金额:"
- ohos:text_size="14fp"
- ohos:text_color="#FF666666"/>
- <Text
- ohos:id="$+id:detail_amount"
- ohos:height="match_content"
- ohos:width="0vp"
- ohos:weight="1"
- ohos:text="¥0.00"
- ohos:text_size="16fp"
- ohos:text_color="#FA6332"
- ohos:text_weight="600"/>
- </DirectionalLayout>
- </DirectionalLayout>
|