Browse Source

count show

lyn7568 6 years ago
parent
commit
450547f90b
3 changed files with 12 additions and 5 deletions
  1. 8 1
      src/pages/company/show.vue
  2. 2 2
      src/pages/expert/show.vue
  3. 2 2
      src/pages/org/show.vue

+ 8 - 1
src/pages/company/show.vue

@ -51,7 +51,7 @@
51 51
              </div>
52 52
            </div>
53 53
          </el-tab-pane>
54
          <el-tab-pane :label="'产品 ' + (total>0 ? total : '')" name="second">
54
          <el-tab-pane :label="'产品 ' + (productCount || '')" name="second">
55 55
            <div v-show="!ifDefault" v-if="platProducts.length">
56 56
              <baseProduct v-for="item in platProducts" :key="item.index" :itemSingle="item"></baseProduct>
57 57
              <Loading v-show="loadingModalShow" :loadingComplete="loadingComplete" :isLoading="isLoading" v-on:upup="searchLower"></Loading>
@ -143,6 +143,7 @@
143 143
        elurl: '',
144 144
        pageSize: 10,
145 145
        pageNo: 1,
146
        productCount: 0,
146 147
        total: 0,
147 148
        keywordObj: [],
148 149
        numRanger: [],
@ -250,6 +251,12 @@
250 251
            const obj = res.data.data
251 252
            if (obj.length > 0) {
252 253
              that.isFormSearch = true;
254
              if (res.data.total > 0 && res.data.total < 99) {
255
                that.productCount = res.data.total;
256
              }
257
              if (res.data.total > 99) {
258
              that.productCount = '99+';
259
              }
253 260
              that.total = res.data.total;
254 261
              that.platProducts = that.platProducts.concat(obj);
255 262
              if (obj.length < that.pageSize) {

+ 2 - 2
src/pages/expert/show.vue

@ -84,14 +84,14 @@
84 84
              </div>
85 85
            </div>
86 86
          </el-tab-pane>
87
          <el-tab-pane :label="'服务 ' + (serCount>0 ? serCount : '')" name="second">
87
          <el-tab-pane :label="'服务 ' + (serCount || '')" name="second">
88 88
            <div v-show="!ifDefault" v-if="platServices.length">
89 89
              <baseService v-for="item in platServices" :key="item.index" :itemSingle="item"></baseService>
90 90
              <Loading v-show="loadingModalShow" :loadingComplete="loadingComplete" :isLoading="isLoading" v-on:upup="searchLower"></Loading>
91 91
            </div>
92 92
            <defaultPage v-show="ifDefault"></defaultPage>
93 93
          </el-tab-pane>
94
          <el-tab-pane :label="'专利 ' + (patCount>0 ? patCount : '')" name="third">
94
          <el-tab-pane :label="'专利 ' + (patCount || '')" name="third">
95 95
            <div v-show="!ifDefault2" v-if="platPatents.length">
96 96
              <baseResult v-for="item in platPatents" :key="item.index" :itemSingle="item"></baseResult>
97 97
              <Loading v-show="loadingModalShow2" :loadingComplete="loadingComplete2" :isLoading="isLoading2" v-on:upup="searchLower2"></Loading>

+ 2 - 2
src/pages/org/show.vue

@ -64,14 +64,14 @@
64 64
              </div>
65 65
            </div>
66 66
          </el-tab-pane>
67
          <el-tab-pane :label="'服务 ' + (serCount>0 ? serCount : '')" name="second">
67
          <el-tab-pane :label="'服务 ' + (serCount || '')" name="second">
68 68
            <div v-if="!ifDefault && platServices.length">
69 69
              <baseService v-for="item in platServices" :key="item.id" :itemSingle="item"></baseService>
70 70
              <Loading v-show="loadingModalShow" :loadingComplete="loadingComplete" :isLoading="isLoading" v-on:upup="searchLower"></Loading>
71 71
            </div>
72 72
            <defaultPage v-else></defaultPage>
73 73
          </el-tab-pane>
74
          <el-tab-pane :label="'资源 ' + (resCount>0 ? resCount : '')" name="third">
74
          <el-tab-pane :label="'资源 ' + (resCount || '')" name="third">
75 75
            <div v-if="!ifDefault2 && platResources.length">
76 76
              <baseResource v-for="item in platResources" :key="item.index" :itemSingle="item"></baseResource>
77 77
              <Loading v-show="loadingModalShow2" :loadingComplete="loadingComplete2" :isLoading="isLoading2" v-on:upup="searchLower2"></Loading>