1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586 |
- <template>
- <view>
- <view class="search">
- <u-search placeholder="输入姓名搜索" v-model="param.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" v-for="(item, index) in item.items" :key="index">
- <text class="icon" v-if="item.state == 0"></text>
- <text class="icon ok" v-else></text>
- <text>{{ item.name }}</text>
- </view>
- </view>
- </view>
- </view>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- param: {},
- list: []
- };
- },
- onLoad(e) {
- this.param.orderId = e.id
- this.getData();
- },
- methods: {
- getData() {
-
- this.http.request({
- url: '/level-one-server/app/TbOrder/selectPeopleConfirmByOrderId',
- data: this.param,
- success: res => {
- this.list = res.data.data
- this.list.map(item => {
- item.items = [
- { name: '订单确认', state: item.progressApply },
- { name: '进境申报', state: item.importApply },
- ]
- })
- console.log(this.list)
- }
- });
- },
- detail(item) {
- uni.navigateTo({ url: '/pages/market/one/leader/detail?id=' + item.id });
- }
- }
- };
- </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>
|