This commit is contained in:
熊丽君
2022-01-05 15:11:04 +08:00
parent be53c4afc9
commit b263304da1
2 changed files with 5 additions and 1 deletions

View File

@ -13,7 +13,7 @@
{{ item.title }} {{ item.title }}
</div> </div>
</div> </div>
<div class="_r"> <div class="_r" v-loading="loading">
<!-- 公司简介---后期可能是接收富文本内容 --> <!-- 公司简介---后期可能是接收富文本内容 -->
<h3>公司简介</h3> <h3>公司简介</h3>
<p> <p>
@ -63,6 +63,7 @@ function getList() {
} }
function handleActive(id) { function handleActive(id) {
kindId.value = id; kindId.value = id;
getList();
} }
getList(); getList();
</script> </script>

View File

@ -123,6 +123,9 @@ function getDataList() {
{ id: 1, title: "服务标题", tag: "标签1" }, { id: 1, title: "服务标题", tag: "标签1" },
{ id: 2, title: "服务标题2", tag: "标签2" }, { id: 2, title: "服务标题2", tag: "标签2" },
{ id: 3, title: "服务标题3", tag: "标签3" }, { id: 3, title: "服务标题3", tag: "标签3" },
{ id: 4, title: "服务标题4", tag: "标签4" },
{ id: 5, title: "服务标题5", tag: "标签5" },
{ id: 6, title: "服务标题6", tag: "标签6" },
]; ];
loading.value = false; loading.value = false;
}, 500); }, 500);