123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264 |
- <template>
- <view class="content">
- <view class="tabs hflex acenter jbetween">
- <block v-for="(item,index) in tabs" :key="index">
- <view class="tabs_item" :class="active == item.id? 'active': ''" @click="changeTabs(item.id)">{{item.text}}</view>
- </block>
- </view>
- <view class="">
- <view v-if="active == 1">
- <block v-for="(item,index) in pageList" :key="index">
- <view class="order_box" @click="toDetail(item.index)">
- <view class="order_top hflex acenter">
- <image src="/static/images/comment/order_type1.png" v-if="item.type == 0" class="order_img"></image>
- <image src="/static/images/comment/order_type2.png" v-if="item.type == 1" class="order_img"></image>
- <image src="/static/images/comment/order_type3.png" v-if="item.type == 2" class="order_img"></image>
- <image src="/static/images/comment/order_type4.png" v-if="item.type == 3" class="order_img"></image>
- <view class="order_title">{{item.name}}</view>
- </view>
- <view class="">
- <u-read-more closeText="展开更多" :shadowStyle="shadowStyle" ref="uReadMore" :toggle="true" openText="收起" showHeight="150" backgroundImage="none">
- <block v-for="(item2,inx) in item.order" :key="inx" @load="load">
- <view class="order_item">
- <view class="item_name">{{item2.name}}</view>
- <view class="hflex acenter ">
- <view class="text_style1 padR-20" >规格:{{item2.norm}}</view>
- <view class="text_style1">数量:{{item2.num}}</view>
- </view>
- </view>
- </block>
- </u-read-more>
- </view>
- <view class="hflex acenter jbetween order_bottom">
- <view class="text_style1">发布时间</view>
- <view class="text_style1">{{item.date}}</view>
- </view>
- </view>
- </block>
- </view>
- <view v-if="active == 2" style="background-color: #fff;min-height: calc(100vh - 80rpx);">
- <block v-for="(item,index) in pageList1" :key="index">
- <view class="item_box hflex acenter jbetween">
- <view class="img_box">
- <image :src="item.img" class="img"></image>
- </view>
- <view class="vflex img_right">
- <view class="hflex acenter jbetween">
- <view class="item_name">{{item.name}}</view>
- <view class="item_type">{{item.cc}}</view>
- </view>
- <view class="text_style1">{{item.zhcc}} | {{item.cz}} | {{item.jxg}}</view>
- <view class="text_style1">{{item.juli}} | {{item.addr}}</view>
- </view>
- </view>
- </block>
- </view>
- </view>
- </view>
- </template>
- <script>
- import $api from '@/static/js/api.js'
- var that = ''
- export default {
- data() {
- return {
- tabs: [
- {
- id: 1,
- text: '采购订单'
- },
- {
- id: 2,
- text: '船厂'
- },
-
- ],
- active: 1,
- pageList: [
-
- ],
-
- shadowStyle: {
- backgroundImage: "none",
- },
- }
- },
- onLoad() {
- that = this
- that.getList()
- },
- methods: {
- getList() {
- $api.req({
- url: '/data/api.auth.Center/mycollection',
- method: 'POST',
- data: {
- type: that.active + 2
- }
- }, function(res) {
- if(res.code == 1) {
- that.pageList = res.data.data
- }
- })
- },
- // 切换tabs
- changeTabs(id) {
- that.active = id
- that.getList()
- },
- load() {
- this.$refs.uReadMore.init();
- },
- },
- }
- </script>
- <style lang="scss" scoped>
- .content {
- background: #F4F4F4;
- .tabs {
- width: 100%;
- background-color: #fff;
- box-sizing: border-box;
- padding: 14rpx 30rpx;
- // margin: 14rpx 0 46rpx;
- .tabs_item {
- width: 45%;
- text-align: center;
- font-size: 32rpx;
- color: #222;
- font-weight: 400;
- }
- .active {
- font-weight: 500;
- position: relative;
- }
- .active::after {
- position: absolute;
- content: "";
- width: 48rpx;
- height: 8rpx;
- background-color: #506Dff;
- border-radius: 4rpx;
- bottom: -14rpx;
- left: 42%;
- }
- }
- .box {
- width: 100%;
- background-color: #fff;
- box-sizing: border-box;
- padding: 14rpx 30rpx;
- margin: 20rpx 0 0;
- }
- .order_box {
- width: 100%;
- margin: 20rpx 0 ;
- background: #FFFFFF;
- border-radius: 10px;
- box-sizing: border-box;
- padding: 28rpx 20rpx;
- .order_top {
- width: 100%;
-
- /* .order_type {
- width: 108rpx;
- height: 36rpx;
- text-align: center;
- line-height: 36rpx;
- font-size: 20rpx;
- color: #fff;
- margin-right: 5rpx;
- border-radius: 4rpx;
- }
- .type1 {
- background-color: #506dff;
- } */
- .order_img {
- width: 108rpx;
- height: 36rpx;
- margin-right: 5rpx;
- }
- .order_title {
- font-size: 32rpx;
- font-weight: 500;
- color: #222222;
- }
- }
- .order_item {
- width: 100%;
- padding: 20rpx 0;
- border-bottom: 1rpx solid #F4F4F4;
- }
- .item_name {
- font-size: 28rpx;
- font-weight: 400;
- color: #222222;
- padding: 20rpx 0;
- }
-
- .order_bottom {
- width: 100%;
- padding: 20rpx 0 0;
- .more {
- // width: 140rpx;
- // height: 48rpx;
- box-sizing: border-box;
- padding: 10rpx 20rpx;
- border-radius: 24rpx;
- border: 1px solid #979797;
- font-size: 20rpx;
- font-weight: 400;
- color: #888888;
- }
- }
- .padR-20 {
- padding-right: 20rpx;
- }
-
- }
- .text_style1 {
- font-size: 24rpx;
- font-weight: 400;
- color: #888888;
- }
- .item_box {
- width: 690rpx;
- margin: 0 auto;
- padding: 28rpx 0;
- border-bottom: 1rpx solid #F4F4F4;
- .img_box {
- width: 136rpx;
- height: 136rpx;
- .img {
- width: 136rpx;
- height: 136rpx;
- border-radius: 8rpx;
- }
- }
- .img_right {
- width: calc(100% - 136rpx);
- padding-left: 20rpx;
- .item_name {
- font-size: 30rpx;
- font-weight: 500;
- color: #333333;
- line-height: 42rpx;
- }
- .item_type {
- background: #506DFF;
- border-radius: 2px;
- box-sizing: border-box;
- padding: 8rpx 10rpx;
- font-size: 20rpx;
- font-weight: 400;
- color: #FFFFFF;
- }
- }
- }
- .item_box:nth-last-child(1) {
- border: none;
- }
- }
- </style>
|