123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365 |
- <template>
- <view class="content">
- <u-navbar title=" " @leftClick="leftClick" :placeholder="true" :autoBack="true">
- <view slot="center" class="hflex nav">
- <view class="nav_item" :class="nav_index == 1 ? 'nav_active' : ''" @click="changeNav(nav_index)">采购订单</view>
- <view class="nav_item" :class="nav_index == 2 ? 'nav_active' : ''" @click="changeNav(nav_index)">接单需求</view>
- </view>
- </u-navbar>
- <view class="" v-if="nav_index == 1">
- <view class="tabs">
- <u-tabs :list="tabs" :scrollable="false" :activeStyle="{color: '#506DFF'}" lineColor="#506DFF" @click="changeTabs"></u-tabs>
- </view>
- <view class="box1">
- <view class="box1_top hflex acenter">
- <view class="top_item" :class="sort_index == 1 ? 'top_active' : ''" @click="changeSort(sort_index)">按照距离</view>
- <view class="top_item" :class="sort_index == 2 ? 'top_active' : ''" @click="changeSort(sort_index)">价格高低</view>
- </view>
- <block v-for="(item,index) in pageList" :key="index">
- <view class="order_box">
- <view class="order_top hflex acenter">
- <image src="/static/images/comment/order_type1.png" v-if="item.tab == 1" class="order_img"></image>
- <image src="/static/images/comment/order_type2.png" v-if="item.tab == 2" class="order_img"></image>
- <image src="/static/images/comment/order_type3.png" v-if="item.tab == 3" class="order_img"></image>
- <image src="/static/images/comment/order_type4.png" v-if="item.tab == 4" class="order_img"></image>
- <view class="order_title">{{item.real_name}}</view>
- </view>
- <view class="">
- <block v-for="(item2,inx) in item.items" :key="inx">
- <view class="order_item">
- <view class="item_name">{{item2.name}}</view>
- <view class="hflex acenter " v-if="item.tab !== 4">
- <view class="text_style1 padR-20" >规格:{{item2.spec}}</view>
- <view class="text_style1">数量:{{item2.number}}桶 </view>
- </view>
- <view class="hflex acenter " v-else>
- <view class="text_style1 padR-20" >数量/吨位:{{item2.weight}}吨</view>
- </view>
- </view>
- </block>
- </view>
- <view class="hflex acenter jbetween order_bottom">
- <view class="text_style1">发布于{{item.create_time}}</view>
- <view class="more" @click="toDetail(item.id)">查看更多 》</view>
- </view>
- </view>
- </block>
- </view>
-
- </view>
- <view class="box2" v-if="nav_index == 2">
- <view class="search">
- <u-input v-model="serach_value" type="text" border="none" placeholder="大家都在搜" shape="circle"
- prefixIcon="search" prefixIconStyle="font-size: 22px;color: #909399">
- </u-input>
- </view>
- <block v-for="(item,index) in pageList2" :key="index">
- <view class="box hflex" @click="toDetail2(item.id)">
- <image :src="item.avatar" mode="aspectFill" class="item_avatar"></image>
- <view class="vflex" style="margin-left: 20rpx;">
- <view class="item_name">{{item.name}}</view>
- <view class="hflex acenter cell">
- <u-icon name="phone-fill" color="#b8b8b8" size="14"></u-icon>
- <view class="text_style1" style="padding-left: 16rpx;">{{item.phone}}</view>
- </view>
- <view class="hflex astart cell">
- <u-icon name="map-fill" color="#b8b8b8" size="14"></u-icon>
- <view class="text_style1" style="padding-left: 16rpx;">{{item.address}}</view>
- </view>
- </view>
- </view>
- </block>
- <view class="add">
- <image src="/static/images/comment/add.png" class="add_img" @click="release"></image>
- </view>
- </view>
- </view>
- </template>
- <script>
- import $api from '@/static/js/api.js'
- var that = ''
- export default {
- data() {
- return {
- nav_index: 1,
- tabs: [
- {
- index: 0,
- name: '采购订单',
- },
- {
- index: 1,
- name: '生产订单',
- },
- {
- index: 2,
- name: '外协订单',
- },
- {
- index: 3,
- name: '海运订单',
- }
- ],
- sort_index: 1,
- pageList: [
-
- ],
- pageList2: [
- {
- id: 1,
- avatar: '/static/images/mine/avatar1.jpg',
- name: '张美华',
- phone: '189235767865',
- address: '山东省济南市历下区历元大街188号解放军家 属院东省济南市'
- }
- ],
- page: 1,
- limit: 10,
- tab_active: 0,
- }
- },
- onLoad() {
- that = this
- that.getList()
- },
- methods: {
- // 返回
- leftClick() {
- console.log('返回');
- $api.jump(-1)
- },
- getList() {
- $api.req({
- url: '/data/api.auth.Purchase/list',
- data: {
- page: that.page,
- limit: that.limit,
- tab: Number(that.tab_active) + 1,
- sort: that.sort_index,
- sort_dir: 'asc',
- longitude: uni.getStorageSync('userLocation').split(',')[0],
- latitude: uni.getStorageSync('userLocation').split(',')[1]
- }
- }, function(res) {
- if(res.code == 1) {
- that.pageList = res.data.data
- }
- })
- },
- // 切换导航栏
- changeNav(index) {
- if (index == 1) {
- that.nav_index = 2
- } else {
- that.nav_index = 1
- }
- },
- // 切换tabs
- changeTabs(e) {
- console.log(e);
- that.tab_active = e.index
- that.pageList = []
- that.getList()
- },
- // 切换排序
- changeSort(index) {
- if (index == 1) {
- that.sort_index = 2
- } else {
- that.sort_index = 1
- }
- that.pageList = []
- that.getList()
- },
- // 查看订单详情
- toDetail(id) {
- $api.jump('/page_index/pages/purchase/orderDetail?id=' + id + '&tab=' + that.tab_active)
- },
- // 发布
- release() {
- $api.jump('/page_index/pages/purchase/release')
- },
- // 查看接单详情
- toDetail2(id) {
- $api.jump('/page_index/pages/purchase/receivingDetail?id=' + id)
- },
- },
- }
- </script>
- <style lang="scss" scoped>
- .content::v-deep {
- background: #F4F4F4;
- .nav {
- width: 350rpx;
- height: 60rpx;
- background: #F4F4F4;
- border-radius: 30rpx;
- font-size: 28rpx;
- font-weight: 400;
- color: #020202;
- .nav_item {
- width: 50%;
- height: 60rpx;
- background: #F4F4F4;
- border-radius: 15px;
- text-align: center;
- line-height: 60rpx;
- }
- .nav_active {
- background: #506DFF;
- color: #FFFFFF;
- }
- }
- .tabs {
- width: 100%;
- background-color: #fff;
- height: 80rpx;
- }
- .box1 {
- width: 100%;
- margin-top: 20rpx;
- background: linear-gradient(180deg, #FFFFFF 0%, #F4F4F4 100%);
- border-radius: 40rpx 40rpx 0px 0px;
- box-sizing: border-box;
- padding: 28rpx 30rpx 72rpx;
- .box1_top {
- width: 100%;
- margin-bottom: 8rpx;
- .top_item {
- width: 152rpx;
- height: 52rpx;
- background: #EDEDED;
- border-radius: 26rpx;
- margin-right: 28rpx;
- font-size: 26rpx;
- font-weight: 400;
- color: #666666;
- text-align: center;
- line-height: 52rpx;
- }
- .top_active {
- color: #516EFE;
- background: #EDF2FE;
- border-radius: 26rpx;
- border: 1px solid #506DFF;
- }
- }
- .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;
- }
- .box2 {
- width: 100%;
- box-sizing: border-box;
- padding: 0 30rpx;
- .search {
- width: 100%;
- margin: 20rpx 0 4rpx;
- .u-input {
- background-color: #fff !important;
- padding: 20rpx 30rpx !important;
- }
- }
- .box {
- background: #FFFFFF;
- box-sizing: border-box;
- padding: 24rpx 20rpx;
- border-radius: 20rpx;
- margin: 20rpx 0;
- .item_avatar {
- width: 84rpx;
- height: 84rpx;
- border-radius: 50%;
- }
- .cell {
- margin-top: 20rpx;
- }
- .item_name {
- font-size: 30rpx;
- font-weight: 500;
- color: #222222;
- }
- }
- .add {
- position: fixed;
- right: 30rpx;
- bottom: 186rpx;
- z-index: 99;
- .add_img {
- width: 96rpx;
- height: 96rpx;
- }
- }
- }
- }
- </style>
|