瀏覽代碼

fix:数据导出限制条数处理、列表详情数据显示修改

zhangsiya 1 年之前
父節點
當前提交
98a06cea19

+ 2 - 2
apps/bigmember_pc/src/components/article-item/ArticleItem.vue

@@ -365,14 +365,14 @@ export default {
     calcBudget() {
       // 先展示中标金额
       if (this.article.bidAmount) {
-        if(isNaN(this.article.bidAmount) && this.article.bidAmount.indexOf('免费注册') > -1) {
+        if(isNaN(this.article.bidAmount) && this.article.bidAmount.indexOf('登录') > -1) {
           return this.article.bidAmount
         } else {
           return moneyUnit(this.article.bidAmount)
         }
       } else if (this.article.budget) {
         // 无中标金额展示预算金额
-        if(isNaN(this.article.budget) && this.article.budget.indexOf('免费注册') > -1) {
+        if(isNaN(this.article.budget) && this.article.budget.indexOf('登录') > -1) {
           return this.article.budget
         } else {
           return moneyUnit(this.article.budget)

+ 0 - 2
apps/bigmember_pc/src/views/search/bidding/constant/search-filters.js

@@ -117,8 +117,6 @@ function createSearchBidBaseSchema(conf = {}) {
   const showVip = conf.showVip || false
   const infoType = conf.infoType
   const inInjectBI = conf.inInjectBI || false
-  console.log(888888)
-  console.log(inInjectBI)
 
   // 发布时间
   const publishTimeExpandFree = {

+ 1 - 1
apps/bigmember_pc/src/views/search/bidding/index.vue

@@ -185,7 +185,7 @@ const articleRef = ref({
             </div>
           </empty>
         </template>
-        <template #list-after v-if="!isInApp && activeItemStyleType !== 'T' && isLogin">
+        <template #list-after v-if="isInApp && activeItemStyleType !== 'T' && isLogin">
           <div class="p-16px text-right over-run-tips" v-if="isFree && listState.total >= 500">
             为您展示前500条,
             <span class="highlight-text" @click="onFreeTaste">点击免费查看更多信息</span>

+ 2 - 2
apps/bigmember_pc/src/views/search/bidding/model/modules/data-export-actions.js

@@ -42,9 +42,9 @@ export function dataExportActionsModel () {
       let countBool = false
       // 限制2000条提示弹窗
       if(selectCheckboxCount > 0) {
-        countBool = selectCheckboxCount >= 2000
+        countBool = selectCheckboxCount >= 20000
       } else {
-        countBool = listState.total >= 2000
+        countBool = listState.total >= 20000
       }
       if (isPrompt && countBool) {
         showDataExportDialog.value = isPrompt