12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697 |
- <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>
|