1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- <view class="container">
- <view class="header">
- <text class="address">Welcome to My App</text>
- <text class="detail color-grey">Welcome to My App</text>
- </view>
- <view class="content">
- <text class="shop-name with-line">This is a simple demo page.</text>
- <view class="item with-line">
- <view class="item-detail">
- <image class="pic" src="./images/3.png" alt="" srcset="" />
- <view class="bug-detail">
- <text class="name">理工麻辣烫</text>
- <text class="num color-grey ">*2</text>
- </view>
- </view>
- <view class="item-price">
- <text class="price-new color-red">$20+40积分</text>
- <text class="price-old color-grey">$50</text>
- </view>
- </view>
- <view class="package with-line">
- <text class="name color-grey">包装费</text>
- <text class="num color-red">$2</text>
- </view>
- <view class="pay with-line">
- <text class="name color-grey">付款费</text>
- <text class="num color-red">$2</text>
- </view>
- </view>
- <view class="data">
- <view class="data-detail">
- <text class="name">备注</text>
- <text class="num color-red">$2</text>
- </view>
- </view>
- <view class="order-other">
- <view class="other-detail">
- <text class="name">订单编号:</text>
- <text class="num color-grey">111111111</text>
- </view>
-
- </view>
- </view>
|