|
@@ -179,9 +179,9 @@ export default {
|
|
|
search() {
|
|
|
if (!this.searchText) return
|
|
|
this.appSeatchList.slice(0, this.appSeatchList.length)
|
|
|
- this.isShow = false
|
|
|
this.$axios.$post('/public/v1/market/clientSearchSuggestApp', { pageSize: 100, pageNum: 1, appName: this.searchText }).then((res) => {
|
|
|
this.appSeatchList = res.data.list
|
|
|
+ this.isShow = false
|
|
|
this.appSeatchList.forEach(element => {
|
|
|
element.img = fileKeyToUrl(element.imageId)
|
|
|
});
|
|
@@ -285,7 +285,8 @@ export default {
|
|
|
font-style: normal;
|
|
|
background: #2c2c2d;
|
|
|
border-radius: 14px;
|
|
|
- padding: 11px 0;
|
|
|
+ padding: 11px;
|
|
|
+ box-sizing: border-box;
|
|
|
}
|
|
|
}
|
|
|
|
|
@@ -415,6 +416,8 @@ export default {
|
|
|
& > div {
|
|
|
color: #0a132b;
|
|
|
background: #ffffff;
|
|
|
+ word-break: break-all;
|
|
|
+ overflow-wrap: break-word;
|
|
|
}
|
|
|
}
|
|
|
|