| 123456789101112131415161718192021222324252627282930313233343536373839 |
- <template>
- <view class="content" @click="onOrder">
- <trans class="title" _t="查看已完成订单"></trans>
- <view class="img_box">
- <image class="img" src="/static/play_black.png" />
- </view>
- </view>
- </template>
- <script setup>
- const onOrder = () => {
- }
- </script>
- <style lang="less" scoped>
- @import url('@/style.less');
- .content {
- padding: 30rpx 18rpx;
- background-color: var(--bor-color1);
- border-radius: 20rpx 0 0 20rpx;
- .title {
- writing-mode: tb;
- color: var(--text);
- .size(28rpx);
- letter-spacing: 20rpx;
- }
- .img {
- height: 38rpx;
- width: 38rpx;
- }
- }
- </style>
|