对接问题知识库

This commit is contained in:
qq787203167
2022-08-10 11:57:58 +08:00
parent df7a984572
commit 9e51c6f9a3
5 changed files with 158 additions and 108 deletions
@@ -26,16 +26,19 @@
<div style="width: 100%" v-for="(item1,index) in 14" class="content-box-top">
<div v-for="(item2,index2) in 16" style="width: 340px;display: inline-block" class="content-box-left">
<div class="content-box-box-top" v-if="index == 0">
<img src="../../../../assets/mobileHome.png" class="content-box-box-img" alt="">
<span class="content-box-box-text">
<img class="content-box-box-img" style="display: inline-block;width: auto" v-if="index2 == 0">
<img src="../../../../assets/mobileHome.png" v-else class="content-box-box-img" alt="">
<span v-if="index2 == 0" class="content-box-box-text"></span>
<span v-else class="content-box-box-text">
中国
</span>
</span>
</div>
<div class="content-box-box" v-else>
<img src="../../../../assets/mobileHome.png" class="content-box-box-img" alt="">
<span class="content-box-box-text">
中国
</span>
</span>
</div>
</div>
</div>
@@ -63,7 +66,9 @@
data() {
return {
clientWidth: '',
isTrue: false
isTrue: false,
dataList: [],
list: '/problemKnowledgeBase/countryCardManageReleaseEO/queryCountryCardManageReleaseByApplyMarkets'
}
},
mounted() {
@@ -72,6 +77,7 @@
this.clientWidth = 340 * 14 + 'px'
this.isTrue = true
})
this.queryCountry()
},
methods: {
displayInformationClick() {
@@ -80,8 +86,19 @@
newlyAddedClick() {
this.$refs.countryCardViewAddRef.add()
},
countryCardViewAddForm() {
countryCardViewAddForm(val) {
},
queryCountry() {
let applyMarkets = this.$route.query.applyMarket
let query = {
applyMarkets: applyMarkets
}
postAction(this.list, query).then((res) => {
if (res.success) {
}
})
}
}
}