1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- <template>
- <view class="container">
- <u-navbar leftIconColor="#fff" titleStyle="color:#fff;fontSize:36rpx;" :autoBack="true" bgColor="#2C6FF3"
- :placeholder="true" title="交易日志"></u-navbar>
- <scroll-view scroll-y="true" scroll-with-animation="true"
- lower-threshold="100" @scrolltolower="loadMore">
- <view class="" v-for="(item,index) in logList" :key="item.id">
- <view class="flex">
- <view class="" style="min-width: 200rpx;color: gray;">{{ item.activityTime.substring(5)}}</view>
- <view class="">{{item.msg}}</view>
- </view>
- </view>
- </scroll-view>
- </view>
- </template>
- <script>
- import {
- byId,
- orderLogs,
- refundDetail
- } from "@/api/order/order.js"
- export default {
- data() {
- return {
- activityId: null,
- logList:[]
- }
- },
- onLoad(o) {
- this.activityId = o.id;
- this.queryLogs()
- },
- methods: {
- queryLogs(){
- orderLogs({
- activityId:this.activityId
- }).then(res => {
- this.logList = res.data;
- })
- }
- },
- }
- </script>
- <style scoped lang="scss">
- .container {
- padding: 24rpx;
- line-height: 50rpx;
- .text {
- color: #2C6FF3;
- }
- }
- </style>
|