| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302 |
- <template>
- <div>
- <ul class="seek-list">
- <li v-for="(item, index) in purchaseManList">
- <div class="top">
- <span v-if="item.inquiry.enterprise && item.inquiry.enterprise.enName">{{[item.inquiry.enterprise.enName, user.logged] | enterpriseFilter}}</span>
- <span v-else>{{[item.userName, user.logged] | userNameFilter}}</span>
- </div>
- <div>
- <div class="fl">
- <div>
- 类目(产品名称):
- <span>{{item.prodTitle || '-'}}</span>
- </div>
- <div>
- 型号:
- <span>{{item.cmpCode || '-'}}</span>
- </div>
- <div>
- 品牌:
- <span>{{item.inbrand || '-'}}</span>
- </div>
- <div>
- 规格:
- <span>{{item.spec || '-'}}</span>
- </div>
- <div>
- 采购数量:
- <span>{{item.needquantity || '-'}}</span>
- </div>
- <div>
- 截止日期:
- <span class="date">{{item.endDate | date}}</span>
- </div>
- </div>
- <div class="fr">
- <p v-if="item.remainingTime > 0">剩余 :
- <span v-if="getDay(item.remainingTime) > 0" v-text="getDay(item.remainingTime)"></span>
- <i v-if="getDay(item.remainingTime) > 0"> 天 </i>
- <span v-if="getDay(item.remainingTime) <= 0" v-text="getHours(item.remainingTime)"></span>
- <i v-if="getDay(item.remainingTime) <= 0"> 小时</i>
- </p>
- <p class="over-deadline" v-else>已截止</p>
- <!--<a v-if="!userType && item.quoted == 1">已报价</a>-->
- <a v-if="!userType && item.remainingTime > 0 && (!item.quoted || item.quoted != 1) && (user.logged && ((item.inquiry.enterprise && user.data.enterprise && (item.inquiry.enterprise.uu === user.data.enterprise.uu)) || (!user.data.enterprise.uu && item.userUU == user.data.userUU && !item.inquiry.enterprise)))" class="self-publish" @click="onRemind('此为贵公司的求购')">我要报价</a>
- <a v-if="!(userType == 'saler' && seekType && seekType != 'wait') && (item.remainingTime > 0 && (!item.quoted || item.quoted != 1) && !(user.logged && ((item.inquiry.enterprise && user.data.enterprise && (item.inquiry.enterprise.uu === user.data.enterprise.uu)) || (!user.data.enterprise.uu && item.userUU == user.data.userUU && !item.inquiry.enterprise))))" @click="goSayPrice(item.id, index)">我要报价</a>
- <a v-if="((!userType || userType == 'buyer') && (seekType && seekType != 'wait')) || (userType == 'saler' && seekType && seekType != 'wait') || item.quoted == 1" @click="goSayPriceInfo(item.quteId || item.id, item.agreed, index)">查看报价</a>
- </div>
- </div>
- </li>
- </ul>
- <div class="none-state" v-if="!purchaseManList || !purchaseManList.length && !isDataChange">
- <img src="/images/mobile/@2x/car@2x.png">
- <p v-text="'抱歉,暂无求购信息'"></p>
- </div>
- <login-box @onLoginBoxClose="showLoginBox = false" v-if="showLoginBox"></login-box>
- <say-price :showSayPriceBox="showSayPriceBox" @cancelSayPriceAction="onSayPriceCancel"></say-price>
- <say-price-info v-if="showSayPriceInfoBox" :agreed="agreed" @cancelSayPriceInfoAction="onSayPriceInfoCancel"></say-price-info>
- <remind-box :title="remindText" :timeoutCount="timeoutCount"></remind-box>
- </div>
- </template>
- <script>
- import { LoginBox, RemindBox } from '~components/mobile/common'
- import { SayPrice, SayPriceInfo } from '~components/mobile/applyPurchase'
- export default {
- components: {
- LoginBox,
- SayPrice,
- RemindBox,
- SayPriceInfo
- },
- data() {
- return {
- showLoginBox: false,
- showSayPriceBox: false,
- showSayPriceInfoBox: false,
- activeIndex: -1,
- remindText: '',
- timeoutCount: 0,
- agreed: 0
- }
- },
- props: ['userType', 'seekType', 'purchaseManList', 'isDataChange'],
- filters: {
- date: function(date) {
- if (date) {
- const d = new Date(Number(date))
- const year = d.getFullYear()
- const monthTemp = d.getMonth() + 1
- const month = monthTemp < 10 ? '0' + monthTemp : '' + monthTemp
- const day =
- d.getDate() < 10 ? '0' + d.getDate() : '' + d.getDate() + ' '
- return year + '-' + month + '-' + day
- } else {
- return '-'
- }
- },
- enterpriseFilter([str, logged]) {
- if (logged) {
- return str
- } else {
- return str && str.length > 4
- ? str.substring(0, 2) +
- '**' +
- str.substring(str.length - 2, str.length)
- : str || '-'
- }
- },
- userNameFilter([str, logged]) {
- if (logged) {
- return str
- } else {
- return str ? str.substring(0, 1) + '**' : '-'
- }
- }
- },
- computed: {
- // purchaseManList () {
- // return this.$store.state.applyPurchase.purchaseManList.purchaseManList.data
- // },
- user() {
- return this.$store.state.option.user
- }
- },
- methods: {
- getDay: function(timeStamp) {
- return Math.floor(timeStamp / (1000 * 60 * 60 * 24))
- },
- getHours: function(timeStamp) {
- return Math.floor((timeStamp / (1000 * 60 * 60)) % 24)
- },
- goSayPrice: function(id, index) {
- if (this.user.logged) {
- if (this.user.data.enterprise.uu) {
- if (
- this.user.data.enterprise.isVendor &&
- this.user.data.enterprise.isVendor !== '1690'
- ) {
- this.$store.dispatch('applyPurchase/loadPurchaseManDetail', {
- itemId: id,
- enuu: this.$store.state.option.user.data.enterprise
- ? this.$store.state.option.user.data.enterprise.uu
- : null
- })
- this.showSayPriceBox = true
- this.activeIndex = index
- } else {
- this.onRemind('抱歉,您需开通卖家功能才可报价')
- }
- } else {
- this.onRemind('个人账户暂不可报价')
- }
- } else {
- this.showLoginBox = true
- }
- },
- goSayPriceInfo: function(id, agreed, index) {
- this.userType === 'buyer'
- ? this.$store.dispatch('applyPurchase/loadBuyerInquiryDetail', {
- id: id
- })
- : this.$store.dispatch('applyPurchase/loadVendorInquiryDetail', {
- id: id
- })
- this.agreed = agreed
- this.showSayPriceInfoBox = true
- this.activeIndex = index
- // '/mobile/applyPurchase/list/' + (userType ? (item.quteId || item.id) + '?type=' + userType : (item.quteId || item.id)) + (userType ? '&' : '?') + 'status=' + item.agreed
- },
- onSayPriceCancel: function(flag, quteId) {
- if (flag) {
- this.purchaseManList[this.activeIndex].quoted = 1
- this.purchaseManList[this.activeIndex].quteId = quteId
- this.onRemind('报价成功')
- }
- this.showSayPriceBox = false
- },
- onSayPriceInfoCancel: function(flag) {
- if (flag) {
- this.purchaseManList[this.activeIndex].agreed = 1
- this.onRemind('采纳成功')
- }
- this.showSayPriceInfoBox = false
- },
- onRemind: function(str) {
- this.remindText = str
- this.timeoutCount++
- }
- }
- }
- </script>
- <style lang="scss" scoped>
- .seek-list {
- width: 7.26rem;
- margin: 0.13rem auto 0;
- li {
- border: 1px solid #e0e0e4;
- height: 4.2rem;
- margin-bottom: 0.2rem;
- div.top {
- font-size: 0.32rem;
- color: #3a3a3a;
- background: #f8f7fa;
- height: 0.92rem;
- line-height: 0.92rem;
- span {
- display: block;
- width: 6.9rem;
- border-bottom: 1px dashed #9f9f9f;
- margin: 0 auto;
- }
- }
- > div {
- font-size: 0.3rem;
- // display: inline-block;
- &::after {
- clear: both;
- visibility: hidden;
- zoom: 1;
- display: block;
- content: ' ';
- }
- .fl {
- color: #666;
- width: 4.8rem;
- height: 2.62rem;
- margin: 0.27rem 0 0.29rem 0.18rem;
- line-height: 0.46rem;
- border-right: 1px dashed #9f9f9f;
- > div {
- overflow: hidden;
- text-overflow: ellipsis;
- white-space: nowrap;
- span {
- color: #333;
- &.date {
- color: #e6353d;
- }
- }
- }
- }
- .fr {
- width: 2.2rem;
- padding: 0.9rem 0 0 0;
- p {
- font-size: 0.28rem;
- text-align: center;
- &.over-deadline {
- text-align: center;
- padding-right: 0.2rem;
- }
- span {
- font-size: 0.35rem;
- color: #ff3208;
- }
- i {
- font-style: normal;
- }
- }
- a {
- display: block;
- width: 1.64rem;
- height: 0.58rem;
- line-height: 0.58rem;
- text-align: center;
- font-size: 0.32rem;
- color: #e62f36;
- border: 1px solid #ea494f;
- margin: 0.34rem auto 0;
- border-radius: 0.06rem;
- &.self-publish {
- background: rgb(204, 203, 203);
- color: #fff;
- border-color: #fff;
- }
- }
- }
- }
- }
- }
- .none-state {
- text-align: center;
- margin-top: 1.1rem;
- img {
- width: 4.08rem;
- height: 2.62rem;
- }
- p {
- font-size: 0.32rem;
- color: #999;
- margin: 1.19rem 0 0 0;
- }
- }
- </style>
|