123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- <template>
- <view class="content" >
- <view v-for="(item, index) in data" :key="index" >
- <view class="cu-timeline">
- <view class="cu-time">{{item.gmtUpdate}}</view>
- <view class="cu-item cur cuIcon-noticefill">
- <view class="content bg-green shadow-blur">
- <view >{{item.gmtUpdateTime}}</view> {{item.dynamic}}
- </view>
- </view>
- </view>
- </view>
- </view>
- </template>
- <script>
- export default {
-
- data() {
- return {
- data: {
- }
- };
- },
- onLoad(option) {
- const that = this
- uni.showLoading({
- title: '正在查询',
- mask:true
- })
- that.$api.request('trade', 'getDynamicInfo', {
- orderNo : option.orderNo
- }, failres => {
- uni.hideLoading()
- that.$api.msg(failres.errmsg);
-
- }).then(res => {
- uni.hideLoading()
- that.data = res.data
- })
- },
- methods: {
-
- }
- };
- </script>
- <style>
- .content {
- }
- </style>
|