Ver Fonte

feat: pc详情页采购清单字段调整

cuiyalong há 9 meses atrás
pai
commit
6da52fc92d

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

@@ -312,10 +312,6 @@
             <i class="l-d-item-label">开标日期:</i>
             {{ dateFromNow(article.bidOpenTime * 1000) }}
           </span>
-          <div v-if="article.bidOpenTime">
-            <i class="l-d-item-label">交付地点:</i>
-            交付地点
-          </div>
         </p>
         <div
           class="l-d-item"

+ 4 - 4
apps/bigmember_pc/src/views/article-content/components/ContentSummary.vue

@@ -243,19 +243,19 @@ function doOpenItem(item, type = '') {
         <el-table-column
           header-align="center"
           label="标的名称"
-          prop="itemname"
+          prop="itemName"
         >
           <template slot-scope="scope">
-            {{ scope.row.itemname || '-' }}
+            {{ scope.row.itemName || '-' }}
           </template>
         </el-table-column>
         <el-table-column
           header-align="center"
           label="品牌"
-          prop="brandname"
+          prop="brandName"
         >
           <template slot-scope="scope">
-            {{ scope.row.brandname || '-' }}
+            {{ scope.row.brandName || '-' }}
           </template>
         </el-table-column>
         <el-table-column

+ 2 - 2
apps/bigmember_pc/src/views/search/sun/components/search-bid-header.vue

@@ -77,7 +77,7 @@ const showNewPublish = computed(() => {
 
 function onClearSearchHistory() {
   if (!searchHistoryList.value || searchHistoryList.value.length === 0) return
-  clearHistoryQuery({ type: 1 })
+  clearHistoryQuery({ type: 6 })
 }
 </script>
 
@@ -86,7 +86,7 @@ function onClearSearchHistory() {
     <search-header-card
       v-model="inputKeywordsState.input"
       :tabs="searchTabs"
-      placeholder="请输入项目名称等关键词,例如:医疗设备"
+      placeholder="请输入产品或业务名称关键词,例如:钢板"
       @change-tab="onChangeTab"
       @search="doSearch"
       :show-wx-qr="!cooperateCode && !inBIPropertyIframe && !isBidField"

+ 2 - 2
data/data-models/modules/article/transform/summary2.js

@@ -249,7 +249,7 @@ class SummaryModel extends BaseModel {
     const pArea = baseInfo?.area || ''
     const pCity = baseInfo?.city || ''
     const pDistrict = baseInfo?.district|| ''
-    const projectArea = `${pArea}${pCity}${pDistrict}` || "交付地点交付地点交付地点交付地点"
+    const projectArea = `${pArea}${pCity}${pDistrict}` || ''
     list.push(
       new SummaryItem('jfArea', '项目地区', projectArea)
     )
@@ -258,7 +258,7 @@ class SummaryModel extends BaseModel {
     const jArea = summary?.deliverArea || ''
     const jCity = summary?.deliverCity || ''
     const jDistrict = summary?.deliverDistrict|| ''
-    const jfArea = `${jArea}${jCity}${jDistrict}` || "交付地点交付地点交付地点交付地点"
+    const jfArea = `${jArea}${jCity}${jDistrict}` || ''
     list.push(
       new SummaryItem('jfArea', '交付地点', jfArea)
     )