|
@ -3,7 +3,7 @@ |
|
|
|
|
|
|
|
|
<PromptText text='平台针对不同品牌产品,已做了风险提醒义务,请安全规避销售。平台仅保障货品正版,针对有风险的产品,请具备安全销售方案后再开展销售。' :type="3" /> |
|
|
<PromptText text='平台针对不同品牌产品,已做了风险提醒义务,请安全规避销售。平台仅保障货品正版,针对有风险的产品,请具备安全销售方案后再开展销售。' :type="3" /> |
|
|
|
|
|
|
|
|
<div class="supply-list" v-for="(vers, classify_id) in classifyId2Vers" :key="classify_id"> |
|
|
<div class="supply-list" v-for="(vers, classify_id) in classifyId2Vers" :key="classify_id" :id="'section_'+classify_id"> |
|
|
<div class="classify-title mr-20">{{ classifyId2Name[classify_id] }}</div> |
|
|
<div class="classify-title mr-20">{{ classifyId2Name[classify_id] }}</div> |
|
|
<div class="classify"> |
|
|
<div class="classify"> |
|
|
<div class="ver-anchor-point flex" v-for="verid in vers" :key="verid"> |
|
|
<div class="ver-anchor-point flex" v-for="verid in vers" :key="verid"> |
|
@ -91,6 +91,14 @@ export default { |
|
|
store.commit('SET_PAGETITLE', '基本设置'); |
|
|
store.commit('SET_PAGETITLE', '基本设置'); |
|
|
|
|
|
|
|
|
this.getSupplyServiceList(); |
|
|
this.getSupplyServiceList(); |
|
|
|
|
|
if (this.$route.hash) { |
|
|
|
|
|
setTimeout(() => { |
|
|
|
|
|
const el = document.querySelector(this.$route.hash) |
|
|
|
|
|
if (el) { |
|
|
|
|
|
el.scrollIntoView({ behavior: 'smooth', block: 'start' }) |
|
|
|
|
|
} |
|
|
|
|
|
}, 500) |
|
|
|
|
|
} |
|
|
}, |
|
|
}, |
|
|
methods: { |
|
|
methods: { |
|
|
scrollToAnchor(ver) { |
|
|
scrollToAnchor(ver) { |
|
|