123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623 |
- <template>
- <view class="content">
- <view class="navbar">
- <u-navbar title="招标" @leftClick="leftClick" bgColor="rgba(0,0,0,0)" :placeholder="true" :autoBack="true">
- </u-navbar>
- <view class="search">
- <u-input v-model="serach_value" type="text" :border="true" placeholder="热搜关键词" shape="circle"
- prefixIcon="search" prefixIconStyle="font-size: 22px;color: #909399" @confirm="search">
- <template slot="suffix">
- <view @click="search">搜索</view>
- </template>
- </u-input>
- </view>
- </view>
- <view class="box">
- <view class="hflex acenter jbetween">
- <view class="hflex acenter jbetween tabs">
- <block v-for="(item,index) in tabs" :key="index">
- <view class="tabs_item hflex acenter" @click="changeTab(item.index)" :class="tab_active == item.index ? 'tab_active' : ''">
- {{item.name}}
- <block v-if="index != 0">
- <u-icon name="arrow-down-fill" color="#666666" size="6" v-if="tab_active != item.index"></u-icon>
- <u-icon name="arrow-up-fill" color="#506DFF" size="6" v-if="tab_active == item.index"></u-icon>
- </block>
- </view>
- </block>
- </view>
- <view class="hflex acenter " @click="screen">
- <view class="tabs_item" :class="screen_show? 'tab_active' : ''">筛选</view>
- <image src="https://ship.shipcc.cn/common/screen.png" class="screen_icon" v-show="!screen_show"></image>
- <image src="https://ship.shipcc.cn/common/screen_active.png" class="screen_icon" v-show="screen_show"></image>
- </view>
- </view>
- <view class="drop" v-show="screen_show">
- <view class="drop_bg">
- <view class="drop_list">
- <view class="hflex acenter jbetween">
- <view class="drop_title">披露方式</view>
- <view class="hflex acenter" @click="expend('mode')">
- <view class="drop_right">{{mode?'':'展开'}}</view>
- <u-icon name="arrow-down-fill" color="#666666" size="6" v-if="!mode"></u-icon>
- <u-icon name="arrow-up-fill" color="#666666" size="6" v-else></u-icon>
- </view>
- </view>
- <view class="hflex acenter fwrap" :class="mode?'':'hide'">
- <block v-for="(item,index) in modeList" :key="index">
- <view class="drop_item" :class="mode_active == index?'drop_active':''" @click="selectMode(index)">{{item.name}}</view>
- </block>
- </view>
- </view>
- <view class="drop_list">
- <view class="hflex acenter jbetween">
- <view class="drop_title">转让底价</view>
- <view class="hflex acenter" @click="expend('price')">
- <view class="drop_right">{{price?'':'展开'}}</view>
- <u-icon name="arrow-down-fill" color="#666666" size="6" v-if="!price"></u-icon>
- <u-icon name="arrow-up-fill" color="#666666" size="6" v-else></u-icon>
- </view>
- </view>
- <view class="hflex acenter fwrap" :class="price?'':'hide'">
- <block v-for="(item,index) in priceList" :key="index">
- <view class="drop_item" :class="price_active == index?'drop_active':''" @click="selectPrice(index)">{{item.name}}</view>
- </block>
- </view>
- </view>
- <view class="drop_list">
- <view class="hflex acenter jbetween">
- <view class="drop_title">交易类型</view>
- <view class="hflex acenter" @click="expend('type')">
- <view class="drop_right">{{type?'':'展开'}}</view>
- <u-icon name="arrow-down-fill" color="#666666" size="6" v-if="!type"></u-icon>
- <u-icon name="arrow-up-fill" color="#666666" size="6" v-else></u-icon>
- </view>
- </view>
- <view class="hflex acenter fwrap" :class="type?'':'hide'">
- <block v-for="(item,index) in typeList" :key="index">
- <view class="drop_item" :class="type_active == index?'drop_active':''" @click="selectType(index)">{{item.name}}</view>
- </block>
- </view>
- </view>
- <view class="drop_list">
- <view class="hflex acenter jbetween">
- <view class="drop_title">所在地区</view>
- <view class="hflex acenter" @click="expend('region')">
- <view class="drop_right">{{region?'':'展开'}}</view>
- <u-icon name="arrow-down-fill" color="#666666" size="6" v-if="!region"></u-icon>
- <u-icon name="arrow-up-fill" color="#666666" size="6" v-else></u-icon>
- </view>
- </view>
- <scroll-view scroll-y="true" class="hflex acenter fwrap" style="height: 300rpx;" v-if="region">
- <view class="hflex acenter fwrap" :class="region?'':'hide'">
- <block v-for="(item,index) in regionList" :key="index">
- <view class="drop_item" :class="region_active == index?'drop_active':''" @click="selectRegion(index)">{{item.title}}</view>
- </block>
- </view>
- </scroll-view>
- <view class="hflex acenter fwrap" :class="region?'':'hide'" v-else>
- <block v-for="(item,index) in regionList" :key="index">
- <view class="drop_item" :class="region_active == index?'drop_active':''" @click="selectRegion(index)">{{item.title}}</view>
- </block>
- </view>
- </view>
- <view class="drop_list">
- <view class="hflex acenter jbetween">
- <view class="drop_title">披露截止时间</view>
- <view class="hflex acenter" @click="expend('time')">
- <view class="drop_right">{{time?'':'展开'}}</view>
- <u-icon name="arrow-down-fill" color="#666666" size="6" v-if="!time"></u-icon>
- <u-icon name="arrow-up-fill" color="#666666" size="6" v-else></u-icon>
- </view>
- </view>
- <view class="hflex acenter fwrap" :class="time?'':'hide'">
- <block v-for="(item,index) in timeList" :key="index">
- <view class="drop_item" :class="time_active == index?'drop_active':''" @click="selectTime(index)">{{item.name}}</view>
- </block>
- </view>
- </view>
- <view class="drop_bottom hflex acenter jbetween">
- <view class="left" @click="reset">清空</view>
- <view class="right" @click="confirm">确定</view>
- </view>
- </view>
- </view>
- <scroll-view class="list" :scroll-y="true" v-if="pageList.length>0" @scrolltolower="scrolltolower">
- <block v-for="(item,index) in pageList" :key="index">
- <view class="list_item" @click="toDetail(item.id)">
- <view class="top">
- <view v-if="item.status == 1" class="top_icon">已中标</view>
- <view v-if="item.status == 0" class="top_icon1">招标中</view>
- <view class="item_name">{{item.title}}</view>
- </view>
- <view class="hflex acenter cell">
- <image src="https://ship.shipcc.cn/common/company.png" class="item_icon"></image>
- <view class="text_style1">招标单位</view>
- <view class="text_style1">{{item.com_name}}</view>
- </view>
- <view class="hflex acenter cell">
- <u-icon name="clock-fill" color="#888888" size="14"></u-icon>
- <view class="text_style1">发布时间</view>
- <view class="text_style1">{{item.create_time}}</view>
- </view>
- </view>
- </block>
- </scroll-view>
- </view>
- <view class="" style="height: 100rpx"></view>
- </view>
- </template>
- <script>
- import $api from '@/static/js/api.js'
- var that = ''
- export default {
- data() {
- return {
- serach_value: '',
- tabs: [
- {
- index: 0,
- name: '默认',
- },
- {
- index: 1,
- name: '披露起始时间',
- },
- {
- index: 2,
- name: '披露截止时间',
- }
- ],
- tab_active: 0,
- screen_show: false,
- pageList: [
- ],
- type: false,
- type_active: -1,
- typeList: [
- ],
- mode: false,
- mode_active: -1,
- modeList: [
- {
- id: '',
- name: '全部',
- },
- {
- id: 0,
- name: '预披露',
- },
- {
- id: 1,
- name: '正式披露',
- }
- ],
- price: false,
- price_active: -1,
- priceList: [
- {
- amount_min: '',
- amount_max: '',
- name: '全部',
- },
- {
- amount_min: 0,
- amount_max: '100万',
- name: '100万以下',
- },
- {
- amount_min: '100万',
- amount_max: '500万',
- name: '100万-500万',
- }
- ],
- region: false,
- region_active: -1,
- regionList: [
-
- ],
- time: false,
- time_active: -1,
- timeList: [
- {
- day: '',
- name: '全部',
- },
- {
- day: 3,
- name: '三天内',
- },
- {
- day: 10,
- name: '十天内',
- }
- ],
- page: 1,
- limit: 15,
- total: 15,
- }
- },
- onLoad() {
- that = this
- that.getType()
- that.getCity()
- },
- onShow() {
-
- },
- methods: {
- // 返回
- leftClick() {
- $api.jump(-1)
- },
- search() {
- that.page = 1
- that.pageList = []
- that.getList()
- },
- getList() {
- $api.req({
- url: '/data/api.Bidding/index',
- data: {
- limit: that.limit,
- page: that.page,
- b_type: that.mode_active == -1?'':that.modeList[that.mode_active].id,
- amount_min: that.price_active == -1?'':that.priceList[that.price_active].amount_min,
- amount_max: that.price_active == -1?'':that.priceList[that.price_active].amount_max,
- type_id: that.type_active == -1?'':that.typeList[that.type_active].id,
- city: that.type_active == -1?'':that.regionList[that.region_active].id,
- day_type: 'day',
- day: that.time_active == -1? '' : that.timeList[that.time_active].day,
- o_f: that.tabs[that.tab_active].index,
- o_b: 'desc',
- keyword: that.serach_value
- }
- }, function(res) {
- if(res.code == 1) {
- if(that.page == 1) {
- that.pageList = res.data.data
- that.total = res.data.total
- } else {
- that.pageList = that.pageList.concat(res.data.data)
- }
- }
- })
- },
- getType() {
- $api.req({
- url: '/data/api.Bidding/types',
- }, function(res) {
- if(res.code == 1) {
- that.typeList = res.data
- that.getList()
- }
- })
- },
- getCity() {
- $api.req({
- url: '/data/api.Area/sort',
- data: {
- level: 2,
- hot: 1
- }
- }, function(res) {
- if(res.code == 1) {
- var list = res.data.areas
- for(var i=0;i<list.length;i++) {
- for(var j=0;j<list[i].child.length;j++) {
- that.regionList.push(list[i].child[j])
- }
- }
- var data ={
- id: 0,
- title: '全国'
- }
- that.regionList.unshift(data)
- // console.log(that.regionList);
- // that.regionList = res.data.areas
- // that.itemArr = res.data.areas
- }
- })
- },
- // 切换tabs
- changeTab(index) {
- that.tab_active = index
- that.page = 1
- that.pageList = []
- that.getList()
- },
- // 筛选
- screen() {
- that.screen_show = !that.screen_show
- },
- // 查看详情
- toDetail(id) {
- $api.jump('/page_index/pages/bidding/bidDetail?id=' + id)
- },
- expend(e) {
- if(e == 'type') {
- that.type = !that.type
- }
- if(e == 'mode') {
- that.mode = !that.mode
- }
- if(e == 'price') {
- that.price = !that.price
- }
- if(e == 'region') {
- that.region = !that.region
- }
- if(e == 'time') {
- that.time = !that.time
- }
- },
- selectMode(index) {
- that.mode_active = index
- },
- selectPrice(index) {
- that.price_active = index
- },
- selectType(index) {
- that.type_active = index
- /* if(that.type_active.length == 0) {
- that.type_active.push(index)
- } else {
- for(var i=0;i<that.type_active.length;i++) {
- if(that.type_active[i] == index) {
- that.type_active.splice(i,1)
- return
- }
- }
- that.type_active.push(index)
- } */
- },
- selectRegion(index) {
- that.region_active = index
- },
- selectTime(index) {
- that.time_active = index
- },
- reset() {
- that.mode_active = -1
- that.price_active = -1
- that.type_active = []
- that.region_active = -1
- that.time_active = -1
-
- },
- confirm() {
- that.page = 1,
- that.pageList = []
- that.screen_show = false
- that.getList()
- },
- scrolltolower() {
- if (Number(that.page) * Number(that.limit) >= Number(that.total)) {
- $api.info("没有更多了")
- } else {
- that.page++
- that.getList()
- }
- },
- },
- onReachBottom() {
-
-
- }
- }
- </script>
- <style lang="scss" scoped>
- .content::v-deep {
- max-height: 100vh;
- overflow: hidden;
- background-color: #e8eff5;
- .navbar {
-
- .search {
- // background: #fff;
- width: 100%;
- height: 88rpx;
- box-sizing: border-box;
- padding: 12rpx 30rpx;
- .u-input {
- background-color: #fff;
- height: 64rpx;
- padding: 0 0 0 18rpx !important;
- border: 1rpx solid #506Dff;
- margin-bottom: 12rpx;
- }
- .u-input__content__subfix-icon {
- width: 128rpx;
- height: 64rpx;
- background-color: #506Dff;
- border-radius: 32rpx;
- color: #fff;
- font-size: 28rpx;
- text-align: center;
- line-height: 64rpx;
- }
- }
- }
- .box {
- margin-top: 24rpx;
- width: 100%;
- min-height: calc(100vh - 216rpx);
- background: linear-gradient(180deg, #FFFFFF 0%, #F5F5F5 100%);
- border-radius: 40rpx 40rpx 0px 0px;
- box-sizing: border-box;
- padding: 30rpx;
- .tabs {
- width: 526rpx;
- }
- .tabs_item {
- font-size: 26rpx;
- font-weight: 400;
- color: #666666;
- line-height: 36rpx;
- padding-right: 8rpx;
- .u-icon{
- padding-left: 8rpx;
- }
- }
- .tab_active {
- color: #506DFF;
- }
- .screen_icon {
- width: 24rpx;
- height: 24rpx;
- }
- .drop {
- position: absolute;
- left: 0;
- top: 345rpx;
- width: 750rpx;
- z-index: 9;
- min-height: calc(100vh - 345rpx);
- background: rgba(0,0,0,0.5);
- backdrop-filter: blur(5px);
-
- .drop_bg {
- width: 100%;
- background-color: #fff;
- .drop_list {
- box-sizing: border-box;
- padding: 0 30rpx;
- .drop_title {
-
- margin: 24rpx 0 20rpx;
- font-size: 28rpx;
- font-weight: 400;
- color: #3D4249;
- line-height: 40rpx;
- }
- .drop_right {
- font-size: 20rpx;
- font-weight: 400;
- color: #555555;
- line-height: 28rpx;
- padding-right: 8rpx;
- }
- .hide {
- width: 100%;
- height: 80rpx;
- overflow: hidden;
- }
- .drop_item {
- width: 208rpx;
- height: 76rpx;
- background: #F4F8FB;
- border-radius: 4rpx;
- font-size: 28rpx;
- text-align: center;
- font-weight: 400;
- color: #555555;
- line-height: 76rpx;
- margin: 0 24rpx 20rpx 0;
- }
- .drop_item:nth-child(3n+3) {
- margin: 0 0 20rpx;
- }
- .drop_active {
- background: #E8F2FF;
- font-weight: 500;
- color: #506DFF;
- }
- }
-
- .drop_bottom {
- margin-top: 32rpx;
- width: 100%;
- height: 100rpx;
- background: #FFFFFF;
- box-shadow: 0px -1px 2px 0px rgba(0,0,0,0.05);
- .left {
- width: 50%;
- height: 100%;
- font-size: 36rpx;
- font-weight: 400;
- color: #BDBDBD;
- line-height: 100rpx;
- text-align: center;
- }
- .right {
- width: 50%;
- height: 100%;
- font-size: 36rpx;
- font-weight: 400;
- color: #FFFFFF;
- line-height: 100rpx;
- text-align: center;
- background: #506DFF;
- }
- }
- }
- }
- .list {
- height: calc(100vh - 23vh);
- margin-bottom: 60rpx;
- .list_item {
- margin: 20rpx auto 0;
- width: 690rpx;
- background: #FFFFFF;
- border-radius: 10px;
- box-sizing: border-box;
- padding: 20rpx;
- .cell {
- padding: 12rpx 0;
- }
- .top {
- vertical-align:middle;
- .item_name {
- // width: calc(100% - 74rpx);
- font-size: 30rpx;
- font-weight: 400;
- color: #222222;
- // float: right;
- line-height: 42rpx;
- }
- .top_icon {
- width: 64rpx;
- height: 28rpx;
- float: left;
- margin: 7rpx 10rpx 0 0;
- background: url('https://ship.shipcc.cn/common/green_bg.png') no-repeat;
- background-size: 100%;
- font-size: 16rpx;
- font-weight: normal;
- color: #FFFFFF;
- line-height: 28rpx;
- text-align: center;
- }
- .top_icon1 {
- width: 64rpx;
- height: 28rpx;
- float: left;
- margin: 7rpx 10rpx 0 0;
- background: url('https://ship.shipcc.cn/common/blue_bg.png') no-repeat;
- background-size: 100%;
- font-size: 16rpx;
- font-weight: normal;
- color: #FFFFFF;
- line-height: 28rpx;
- text-align: center;
- }
- }
-
- .text_style1 {
- font-size: 22rpx;
- font-weight: 400;
- color: #585F6A;
- line-height: 32rpx;
- padding-left: 12rpx;
- }
- .item_icon {
- width: 28rpx;
- height: 28rpx;
- }
- }
- }
- }
-
- }
- </style>
|