diff --git a/src/assets/imgs/shop_img_hqlc_chanpin.png b/src/assets/imgs/shop_img_hqlc_chanpin.png new file mode 100644 index 0000000000000000000000000000000000000000..5f0aeb9ef00790e5cf78bdb4483171f8ab02ab72 Binary files /dev/null and b/src/assets/imgs/shop_img_hqlc_chanpin.png differ diff --git a/src/components/process-card.vue b/src/components/process-card.vue index 1bcac677bf93ad66141ac5896b7a151cf4191987..451c959ba8b0d1024a73ef9b9ce3b78d781bbd64 100644 --- a/src/components/process-card.vue +++ b/src/components/process-card.vue @@ -34,7 +34,7 @@ export default { }, created() { - if(this.data.length<=1&&this.data[this.data.length-1].result=='审批通过'){ + if(this.data.length<=1&&this.data[this.data.length-1]&&this.data[this.data.length-1].result=='审批通过'){ this.data.push({ title: "二级审批", result: "审批中", diff --git a/src/components/service-list/commodity-cell-new.vue b/src/components/service-list/commodity-cell-new.vue index 8933102b3c9907e9c547301c2607b1dde21be6b3..325f01702f446daff171eccec7cad630ebb19916 100644 --- a/src/components/service-list/commodity-cell-new.vue +++ b/src/components/service-list/commodity-cell-new.vue @@ -57,6 +57,7 @@ 服务类型: @@ -68,9 +69,9 @@ - 服务领域: + {{ cellData.data_service_type1 != 36 ? '服务领域:' : '产品领域:' }} {{ cellData.sectors_name }} - 产品标签: ({ helper: helper }), computed: { - getTags() { - let str = ""; - this.cellData.tags.forEach((item) => { - str += item + " "; - }); - return str; - }, + }, watch: {}, methods: { @@ -129,6 +123,14 @@ export default { this.$router.push(this.url + "/" + parame); } }, + getTags(arr) { + if (arr && arr.length != 0) { + let str = arr.join(" / "); + return str; + } else { + return ""; + } + }, }, mounted() {}, }; @@ -278,8 +280,13 @@ export default { overflow: hidden; } .card_tag { + display: inline-block; color: #515fe7; - margin-right: 8px; + margin-right: 16px; + border: solid 1px #b4c0f5; + background-color: #eeeffd; + border-radius: 4px; + padding: 2px 6px; }