新增任务提交
This commit is contained in:
parent
33205f116c
commit
bc41409366
@ -11,21 +11,15 @@
|
|||||||
<view class="" style="display: flex">
|
<view class="" style="display: flex">
|
||||||
<view>任务状态 :</view>
|
<view>任务状态 :</view>
|
||||||
<view class="text" style="color: #ff7c32">
|
<view class="text" style="color: #ff7c32">
|
||||||
<text v-if="datas.status == 3" style="color: #488f00"
|
<text v-if="datas.status == 3" style="color: #488f00">已完成</text>
|
||||||
>已完成</text
|
<text v-else-if="datas.status == 5" style="color: #ccc">已关闭</text>
|
||||||
>
|
<block v-else-if="
|
||||||
<text v-else-if="datas.status == 5" style="color: #ccc"
|
|
||||||
>已关闭</text
|
|
||||||
>
|
|
||||||
<block
|
|
||||||
v-else-if="
|
|
||||||
datas.type == 31 ||
|
datas.type == 31 ||
|
||||||
datas.type == 32 ||
|
datas.type == 32 ||
|
||||||
datas.type == 33 ||
|
datas.type == 33 ||
|
||||||
datas.type == 34 ||
|
datas.type == 34 ||
|
||||||
datas.type == 35
|
datas.type == 35
|
||||||
"
|
">
|
||||||
>
|
|
||||||
<block v-if="datas.extend && datas.extend.informationg">
|
<block v-if="datas.extend && datas.extend.informationg">
|
||||||
{{
|
{{
|
||||||
(datas.extend.informationg.update
|
(datas.extend.informationg.update
|
||||||
@ -37,13 +31,11 @@
|
|||||||
: 0)
|
: 0)
|
||||||
}}
|
}}
|
||||||
</block>
|
</block>
|
||||||
<block
|
<block v-else-if="
|
||||||
v-else-if="
|
|
||||||
datas.extend &&
|
datas.extend &&
|
||||||
datas.extend.transaction &&
|
datas.extend.transaction &&
|
||||||
datas.extend.transaction.arr
|
datas.extend.transaction.arr
|
||||||
"
|
">
|
||||||
>
|
|
||||||
{{
|
{{
|
||||||
(datas.extend.transaction.arr.transaction_pool
|
(datas.extend.transaction.arr.transaction_pool
|
||||||
? datas.extend.transaction.arr.transaction_pool
|
? datas.extend.transaction.arr.transaction_pool
|
||||||
@ -57,57 +49,34 @@
|
|||||||
<!-- <text style="color: #488F00;margin-left: 26rpx;">{{(datas.extend.transaction.arr.transaction_pool?datas.extend.transaction.arr.transaction_pool:1)+'元'}}</text> -->
|
<!-- <text style="color: #488F00;margin-left: 26rpx;">{{(datas.extend.transaction.arr.transaction_pool?datas.extend.transaction.arr.transaction_pool:1)+'元'}}</text> -->
|
||||||
</block>
|
</block>
|
||||||
<block v-else-if="datas.extend && datas.extend.update">
|
<block v-else-if="datas.extend && datas.extend.update">
|
||||||
<text
|
<text v-if="
|
||||||
v-if="
|
|
||||||
(datas.extend.update.transfer &&
|
(datas.extend.update.transfer &&
|
||||||
datas.extend.update.transfer.lnglat[0]) ||
|
datas.extend.update.transfer.lnglat[0]) ||
|
||||||
datas.status == 3
|
datas.status == 3
|
||||||
"
|
" style="color: #488f00">抵达终点</text>
|
||||||
style="color: #488f00"
|
<text v-else-if="
|
||||||
>抵达终点</text
|
|
||||||
>
|
|
||||||
<text
|
|
||||||
v-else-if="
|
|
||||||
datas.extend.update.terminus &&
|
datas.extend.update.terminus &&
|
||||||
datas.extend.update.terminus.lnglat[0]
|
datas.extend.update.terminus.lnglat[0]
|
||||||
"
|
">抵达中转点</text>
|
||||||
>抵达中转点</text
|
|
||||||
>
|
|
||||||
<text v-else>进行中</text>
|
<text v-else>进行中</text>
|
||||||
</block>
|
</block>
|
||||||
<block v-else>进行中</block>
|
<block v-else>进行中</block>
|
||||||
</block>
|
</block>
|
||||||
</view>
|
</view>
|
||||||
</view>
|
</view>
|
||||||
<view
|
<view style="
|
||||||
style="
|
|
||||||
display: flex;
|
display: flex;
|
||||||
justify-content: space-between;
|
justify-content: space-between;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
"
|
">
|
||||||
>
|
|
||||||
<view>
|
<view>
|
||||||
<text>完成时间 :</text>
|
<text>完成时间 :</text>
|
||||||
<text>{{ datas.end_time }}</text>
|
<text>{{ datas.end_time }}</text>
|
||||||
</view>
|
</view>
|
||||||
<text
|
<text v-if="datas.status == 2 || datas.status == 1" style="background-color: #ff7c32"
|
||||||
v-if="datas.status == 2 || datas.status == 1"
|
class="status">进行中</text>
|
||||||
style="background-color: #ff7c32"
|
<text v-if="datas.status == 3" style="background-color: #488f00" class="status">已完成</text>
|
||||||
class="status"
|
<text v-if="datas.status == 5" style="background-color: #ccc" class="status">已关闭</text>
|
||||||
>进行中</text
|
|
||||||
>
|
|
||||||
<text
|
|
||||||
v-if="datas.status == 3"
|
|
||||||
style="background-color: #488f00"
|
|
||||||
class="status"
|
|
||||||
>已完成</text
|
|
||||||
>
|
|
||||||
<text
|
|
||||||
v-if="datas.status == 5"
|
|
||||||
style="background-color: #ccc"
|
|
||||||
class="status"
|
|
||||||
>已关闭</text
|
|
||||||
>
|
|
||||||
</view>
|
</view>
|
||||||
<view class="">
|
<view class="">
|
||||||
<text>任务金额 :</text>
|
<text>任务金额 :</text>
|
||||||
@ -169,238 +138,252 @@
|
|||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
import {
|
import {
|
||||||
Toast
|
Toast
|
||||||
} from '../../libs/uniApi';
|
} from '../../libs/uniApi';
|
||||||
export default {
|
export default {
|
||||||
name: "task",
|
name: "task",
|
||||||
props: {
|
props: {
|
||||||
datas: {
|
datas: {
|
||||||
type: Object,
|
type: Object,
|
||||||
default: function () {
|
default: function() {
|
||||||
return {}
|
return {}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
|
||||||
},
|
|
||||||
data () {
|
|
||||||
return {
|
|
||||||
|
|
||||||
};
|
|
||||||
},
|
|
||||||
created () {
|
|
||||||
try {
|
|
||||||
|
|
||||||
} catch (e) {
|
|
||||||
//TODO handle the exception
|
|
||||||
}
|
|
||||||
},
|
|
||||||
computed: {
|
|
||||||
total_price () {
|
|
||||||
return this.datas?.extend?.transaction?.arr?.transaction_pool ? this.datas.extend.transaction.arr.total_price += +this.datas.extend.transaction.arr.transaction_pool : this.datas.extend.transaction.arr.total_price
|
|
||||||
}
|
|
||||||
},
|
|
||||||
methods: {
|
|
||||||
navTo (url) {
|
|
||||||
if (url) {
|
|
||||||
uni.showLoading({
|
|
||||||
title: '加载中',
|
|
||||||
mask: true
|
|
||||||
});
|
|
||||||
uni.navigateTo({
|
|
||||||
url: url,
|
|
||||||
success () {
|
|
||||||
uni.hideLoading()
|
|
||||||
}
|
|
||||||
})
|
|
||||||
} else Toast('暂未开放')
|
|
||||||
},
|
},
|
||||||
clickTask () {
|
data() {
|
||||||
// console.log('点击', this.$props.datas);
|
return {
|
||||||
// if ((this.$props.datas.type != 31) && this.$props.datas.status !== 2 && this.$props.datas.status !== 1) {
|
|
||||||
// return this.$props.datas.status == 3 ? Toast('任务已完成!') : Toast('任务已结束!');
|
};
|
||||||
// }
|
},
|
||||||
if (this.$props.datas.type == 31) {
|
created() {
|
||||||
// this.navTo('/subpkg/fileTask/fileTask?id=' + JSON.stringify(this.$props.datas?.extend?.informationg?.arr))
|
try {
|
||||||
if (this.$store.state.app.userInfo.admin_id) this.navTo(`/subpkg/captain/captain?task_id=${this.$props.datas?.id}`);
|
|
||||||
else this.navTo(`/subpkg/archives/archives?task_id=${this.$props.datas?.id}`);
|
} catch (e) {
|
||||||
} else if (this.$props.datas.type == 32) {
|
//TODO handle the exception
|
||||||
// this.navTo('/subpkg/fileTask/fileTask?id=' + JSON.stringify(this.$props.datas?.extend?.informationg?.arr))
|
}
|
||||||
this.navTo(`/subpkg/property/vehicle?task_id=${this.$props.datas?.id}`)
|
},
|
||||||
} else if (this.$props.datas.type == 33) {
|
methods: {
|
||||||
this.navTo(`/subpkg/blockTransaction/blockTransaction?task_id=${this.$props.datas?.id}`)
|
navTo(url) {
|
||||||
} else if (this.$props.datas.type == 34) {
|
if(this.isTimeInRange()) return Toast('任务正在结算中')
|
||||||
this.navTo(`/subpkg/otherTask/otherTask?task_id=${this.$props.datas?.id}`)
|
if (url) {
|
||||||
} else if (this.$props.datas.type == 35) {
|
uni.showLoading({
|
||||||
this.navTo(`/subpkg/buyShare/buyShare?task_id=${this.$props.datas?.id}`)
|
title: '加载中',
|
||||||
|
mask: true
|
||||||
|
});
|
||||||
|
uni.navigateTo({
|
||||||
|
url: url,
|
||||||
|
success() {
|
||||||
|
uni.hideLoading()
|
||||||
|
}
|
||||||
|
})
|
||||||
|
} else Toast('暂未开放')
|
||||||
|
},
|
||||||
|
clickTask() {
|
||||||
|
// console.log('点击', this.$props.datas);
|
||||||
|
// if ((this.$props.datas.type != 31) && this.$props.datas.status !== 2 && this.$props.datas.status !== 1) {
|
||||||
|
// return this.$props.datas.status == 3 ? Toast('任务已完成!') : Toast('任务已结束!');
|
||||||
|
// }
|
||||||
|
if (this.$props.datas.type == 31) {
|
||||||
|
// this.navTo('/subpkg/fileTask/fileTask?id=' + JSON.stringify(this.$props.datas?.extend?.informationg?.arr))
|
||||||
|
if (this.$store.state.app.userInfo.admin_id) this.navTo(
|
||||||
|
`/subpkg/captain/captain?task_id=${this.$props.datas?.id}`);
|
||||||
|
else this.navTo(`/subpkg/archives/archives?task_id=${this.$props.datas?.id}`);
|
||||||
|
} else if (this.$props.datas.type == 32) {
|
||||||
|
// this.navTo('/subpkg/fileTask/fileTask?id=' + JSON.stringify(this.$props.datas?.extend?.informationg?.arr))
|
||||||
|
this.navTo(`/subpkg/property/vehicle?task_id=${this.$props.datas?.id}`)
|
||||||
|
} else if (this.$props.datas.type == 33) {
|
||||||
|
this.navTo(`/subpkg/blockTransaction/blockTransaction?task_id=${this.$props.datas?.id}`)
|
||||||
|
} else if (this.$props.datas.type == 34) {
|
||||||
|
this.navTo(`/subpkg/otherTask/otherTask?task_id=${this.$props.datas?.id}`)
|
||||||
|
} else if (this.$props.datas.type == 35) {
|
||||||
|
this.navTo(`/subpkg/buyShare/buyShare?task_id=${this.$props.datas?.id}`)
|
||||||
|
} else this.navTo('');
|
||||||
|
},
|
||||||
|
isTimeInRange() {
|
||||||
|
const now = new Date();
|
||||||
|
const startTime = new Date(now.getTime());
|
||||||
|
const endTime = new Date(now.getTime());
|
||||||
|
|
||||||
|
// 设置开始时间为当天的 22:55:00
|
||||||
|
startTime.setHours(22);
|
||||||
|
startTime.setMinutes(55);
|
||||||
|
startTime.setSeconds(0);
|
||||||
|
|
||||||
|
// 设置结束时间为当天的 23:59:59
|
||||||
|
endTime.setHours(23);
|
||||||
|
endTime.setMinutes(59);
|
||||||
|
endTime.setSeconds(59);
|
||||||
|
|
||||||
|
// 判断当前时间是否在时间范围内
|
||||||
|
return now >= startTime && now <= endTime;
|
||||||
}
|
}
|
||||||
else this.navTo('');
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style lang="scss">
|
<style lang="scss">
|
||||||
.c_task_item {
|
.c_task_item {
|
||||||
margin: 0 auto;
|
|
||||||
// margin-bottom: 28rpx;
|
|
||||||
width: 694rpx;
|
|
||||||
// background: #FFFFFF;
|
|
||||||
border-radius: 14rpx 14rpx 14rpx 14rpx;
|
|
||||||
opacity: 1;
|
|
||||||
font-size: 25rpx;
|
|
||||||
font-weight: 400;
|
|
||||||
color: #999999;
|
|
||||||
line-height: 39rpx;
|
|
||||||
|
|
||||||
.text {
|
|
||||||
font-size: 28rpx;
|
|
||||||
font-weight: 400;
|
|
||||||
color: #333333;
|
|
||||||
line-height: 39rpx;
|
|
||||||
margin-left: 18rpx;
|
|
||||||
}
|
|
||||||
|
|
||||||
.top {
|
|
||||||
display: flex;
|
|
||||||
justify-content: space-between;
|
|
||||||
padding: 28rpx;
|
|
||||||
border-bottom: 1rpx solid #f5f5f5ff;
|
|
||||||
|
|
||||||
.left {
|
|
||||||
display: flex;
|
|
||||||
justify-content: left;
|
|
||||||
align-items: center;
|
|
||||||
}
|
|
||||||
|
|
||||||
.right {
|
|
||||||
.icon {
|
|
||||||
width: 43rpx;
|
|
||||||
height: 43rpx;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
.bottom {
|
|
||||||
padding: 28rpx;
|
|
||||||
display: flex;
|
|
||||||
|
|
||||||
.b_left {
|
|
||||||
width: 103.39rpx;
|
|
||||||
height: 94.63rpx;
|
|
||||||
margin-right: 18rpx;
|
|
||||||
}
|
|
||||||
|
|
||||||
.b_right {
|
|
||||||
flex: 1;
|
|
||||||
display: flex;
|
|
||||||
justify-content: space-around;
|
|
||||||
flex-direction: column;
|
|
||||||
|
|
||||||
.item {
|
|
||||||
display: flex;
|
|
||||||
justify-content: space-between;
|
|
||||||
// margin: 18rpx 28rpx 0 28rpx;
|
|
||||||
|
|
||||||
// &:last-child {
|
|
||||||
// padding-bottom: 18rpx;
|
|
||||||
// }
|
|
||||||
|
|
||||||
.left {
|
|
||||||
display: flex;
|
|
||||||
}
|
|
||||||
|
|
||||||
.right {
|
|
||||||
font-size: 32rpx;
|
|
||||||
font-weight: 400;
|
|
||||||
color: #3274f9;
|
|
||||||
line-height: 39rpx;
|
|
||||||
|
|
||||||
.price {
|
|
||||||
font-size: 25rpx;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
.personnel_list {
|
|
||||||
// padding: 28rpx 0;
|
|
||||||
padding-bottom: 28rpx;
|
|
||||||
|
|
||||||
.cards {
|
|
||||||
margin: 0 auto;
|
margin: 0 auto;
|
||||||
// margin-bottom: 28rpx;
|
// margin-bottom: 28rpx;
|
||||||
width: 694rpx;
|
width: 694rpx;
|
||||||
background: #ffffff;
|
// background: #FFFFFF;
|
||||||
border-radius: 30rpx;
|
border-radius: 14rpx 14rpx 14rpx 14rpx;
|
||||||
opacity: 1;
|
opacity: 1;
|
||||||
overflow: hidden;
|
font-size: 25rpx;
|
||||||
// box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
|
font-weight: 400;
|
||||||
|
color: #999999;
|
||||||
|
line-height: 39rpx;
|
||||||
|
|
||||||
.cards_head {
|
.text {
|
||||||
padding: 28rpx;
|
font-size: 28rpx;
|
||||||
background-color: $theme-oa-color;
|
font-weight: 400;
|
||||||
color: white;
|
color: #333333;
|
||||||
height: 100rpx;
|
line-height: 39rpx;
|
||||||
display: flex;
|
margin-left: 18rpx;
|
||||||
justify-content: space-between;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.cards_content {
|
.top {
|
||||||
padding: 28rpx;
|
|
||||||
display: flex;
|
display: flex;
|
||||||
justify-content: space-between;
|
justify-content: space-between;
|
||||||
|
padding: 28rpx;
|
||||||
|
border-bottom: 1rpx solid #f5f5f5ff;
|
||||||
|
|
||||||
.left {
|
.left {
|
||||||
text-align: center;
|
display: flex;
|
||||||
// padding: 15rpx 25rpx;
|
justify-content: left;
|
||||||
padding-top: 20rpx;
|
align-items: center;
|
||||||
|
|
||||||
width: 160rpx;
|
|
||||||
background-color: $theme-oa-color;
|
|
||||||
color: white;
|
|
||||||
border-radius: 40rpx;
|
|
||||||
|
|
||||||
.cir {
|
|
||||||
width: 120rpx;
|
|
||||||
height: 120rpx;
|
|
||||||
background-color: #ffffff;
|
|
||||||
margin-left: 25rpx;
|
|
||||||
border-radius: 120rpx;
|
|
||||||
position: relative;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.right {
|
.right {
|
||||||
display: flex;
|
.icon {
|
||||||
flex-direction: column;
|
width: 43rpx;
|
||||||
justify-content: space-between;
|
height: 43rpx;
|
||||||
|
|
||||||
view {
|
|
||||||
text:nth-child(2) {
|
|
||||||
margin-left: 20rpx;
|
|
||||||
}
|
|
||||||
|
|
||||||
.status {
|
|
||||||
display: inline-block;
|
|
||||||
float: right;
|
|
||||||
color: white;
|
|
||||||
text-align: center;
|
|
||||||
padding: 10rpx 30rpx;
|
|
||||||
border-radius: 30rpx;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.u_avatar {
|
.bottom {
|
||||||
position: absolute;
|
padding: 28rpx;
|
||||||
top: 50%;
|
display: flex;
|
||||||
left: 50%;
|
|
||||||
|
|
||||||
transform: translate(-50%, -50%);
|
.b_left {
|
||||||
|
width: 103.39rpx;
|
||||||
|
height: 94.63rpx;
|
||||||
|
margin-right: 18rpx;
|
||||||
|
}
|
||||||
|
|
||||||
|
.b_right {
|
||||||
|
flex: 1;
|
||||||
|
display: flex;
|
||||||
|
justify-content: space-around;
|
||||||
|
flex-direction: column;
|
||||||
|
|
||||||
|
.item {
|
||||||
|
display: flex;
|
||||||
|
justify-content: space-between;
|
||||||
|
// margin: 18rpx 28rpx 0 28rpx;
|
||||||
|
|
||||||
|
// &:last-child {
|
||||||
|
// padding-bottom: 18rpx;
|
||||||
|
// }
|
||||||
|
|
||||||
|
.left {
|
||||||
|
display: flex;
|
||||||
|
}
|
||||||
|
|
||||||
|
.right {
|
||||||
|
font-size: 32rpx;
|
||||||
|
font-weight: 400;
|
||||||
|
color: #3274f9;
|
||||||
|
line-height: 39rpx;
|
||||||
|
|
||||||
|
.price {
|
||||||
|
font-size: 25rpx;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.personnel_list {
|
||||||
|
// padding: 28rpx 0;
|
||||||
|
padding-bottom: 28rpx;
|
||||||
|
|
||||||
|
.cards {
|
||||||
|
margin: 0 auto;
|
||||||
|
// margin-bottom: 28rpx;
|
||||||
|
width: 694rpx;
|
||||||
|
background: #ffffff;
|
||||||
|
border-radius: 30rpx;
|
||||||
|
opacity: 1;
|
||||||
|
overflow: hidden;
|
||||||
|
// box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
|
||||||
|
|
||||||
|
.cards_head {
|
||||||
|
padding: 28rpx;
|
||||||
|
background-color: $theme-oa-color;
|
||||||
|
color: white;
|
||||||
|
height: 100rpx;
|
||||||
|
display: flex;
|
||||||
|
justify-content: space-between;
|
||||||
|
}
|
||||||
|
|
||||||
|
.cards_content {
|
||||||
|
padding: 28rpx;
|
||||||
|
display: flex;
|
||||||
|
justify-content: space-between;
|
||||||
|
|
||||||
|
.left {
|
||||||
|
text-align: center;
|
||||||
|
// padding: 15rpx 25rpx;
|
||||||
|
padding-top: 20rpx;
|
||||||
|
|
||||||
|
width: 160rpx;
|
||||||
|
background-color: $theme-oa-color;
|
||||||
|
color: white;
|
||||||
|
border-radius: 40rpx;
|
||||||
|
|
||||||
|
.cir {
|
||||||
|
width: 120rpx;
|
||||||
|
height: 120rpx;
|
||||||
|
background-color: #ffffff;
|
||||||
|
margin-left: 25rpx;
|
||||||
|
border-radius: 120rpx;
|
||||||
|
position: relative;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.right {
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
justify-content: space-between;
|
||||||
|
|
||||||
|
view {
|
||||||
|
text:nth-child(2) {
|
||||||
|
margin-left: 20rpx;
|
||||||
|
}
|
||||||
|
|
||||||
|
.status {
|
||||||
|
display: inline-block;
|
||||||
|
float: right;
|
||||||
|
color: white;
|
||||||
|
text-align: center;
|
||||||
|
padding: 10rpx 30rpx;
|
||||||
|
border-radius: 30rpx;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.u_avatar {
|
||||||
|
position: absolute;
|
||||||
|
top: 50%;
|
||||||
|
left: 50%;
|
||||||
|
|
||||||
|
transform: translate(-50%, -50%);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
|
||||||
</style>
|
</style>
|
@ -51,9 +51,9 @@
|
|||||||
</view>
|
</view>
|
||||||
</view> -->
|
</view> -->
|
||||||
<view class="item" v-for="(item, index) in list" :key="item.id">
|
<view class="item" v-for="(item, index) in list" :key="item.id">
|
||||||
<view class="top"> 账单日期:{{ item.create_time }} </view>
|
<view class="top"> 账单日期: {{ item.create_time }} </view>
|
||||||
<view class="t_bottom">
|
<view class="t_bottom">
|
||||||
<view class="order">订单编号:{{ item.order_sn }}</view>
|
<view class="order">订单编号: {{ item.order_sn }}</view>
|
||||||
<view class="price">交易额: {{ item.total_price }}</view>
|
<view class="price">交易额: {{ item.total_price }}</view>
|
||||||
</view>
|
</view>
|
||||||
</view>
|
</view>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user