12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- <template>
- <view class="container">
- <cu-custom bgColor="bg-gradual-pink" :isBack="true">
- <block slot="backText">返回</block>
- <block slot="content">历史委托单</block>
- </cu-custom>
- <uni-list border-full>
- <uni-list-item title="列表文字" note="列表描述信息" rightText="右侧文字" />
- <uni-list-item title="列表文字" note="列表描述信息" rightText="下载报告" />
- </uni-list>
-
- </view>
- </template>
- <script>
- export default {
- components: {},
- data() {
- return {
- }
- }
- }
-
-
- </script>
- <style>
-
- .chat-custom-right {
- flex: 1;
- /* #ifndef APP-NVUE */
- display: flex;
- /* #endif */
- flex-direction: column;
- justify-content: space-between;
- align-items: flex-end;
- }
-
- .chat-custom-text {
- font-size: 12px;
- color: #999;
- }
- </style>
|