<template> <view> <view class="search"> <u-search placeholder="输入姓名搜索" v-model="goodsName" bgColor="white" @search="refresh()" :animation="true" actionText="取消" @clear="refresh()"></u-search> <view class="clear"></view> </view> <view class="list"> <view class="item" v-for="(item, index) in list" :key="index"> <view class="flex"> <view class="f name" style="flex: 0.5">{{ item.peopleName }}</view> <view class="f"> <text class="icon" v-if="item.orderStatus == 0"></text> <text class="icon ok" v-else></text> <text>订单确认</text> </view> <view class="f"> <text class="icon" v-if="item.entryStatus == 0"></text> <text class="icon ok" v-else></text> <text>进境申报</text> </view> <view class="f"> <text class="icon" v-if="item.importStatus == 0"></text> <text class="icon ok" v-else></text> <text>进口申报</text> </view> </view> </view> </view> </view> </template> <script> export default { data() { return { goodsName: '', list: [] }; }, onLoad(e) { console.log("订单Id", e.orderId, "组Id", e.groupId) if (e.orderId && e.groupId) { this.http.request({ url: '/level-one-server/app/TbOrder/getPeopleState', data: { orderId: e.orderId, groupId: e.groupId}, success: res => { this.list = res.data.data; console.log('list', this.list); } }); } }, methods: { getData() { } } }; </script> <style lang="scss"> page { background-color: $pg; } .list { padding: 15px; .item { padding: 15px 10px 15px 10px; background-color: white; border-radius: 5px; margin-bottom: 10px; color: $font-c; .f { padding: 2px; font-size: 14px; .icon { color: #c3c5c7; } .ok { color: $main-color; } } .name { font-weight: bold; } } } </style>