|
@@ -65,12 +65,17 @@ const leftServiceList = [
|
|
|
const serviceKey = "name";
|
|
|
const renderContent = (h, { node, data, store }) => {
|
|
|
if (data.children == null || data.children.length === 0) {
|
|
|
- return h("div", { class: "custom-tree-node" }, [
|
|
|
+ return h("div", { class: "custom-tree-node custom-tree-node-div" }, [
|
|
|
h(
|
|
|
"span",
|
|
|
{ class: "node-label ch-label", title: data[serviceKey] },
|
|
|
data[serviceKey]
|
|
|
),
|
|
|
+ h("div", { class: "imgbox" }, [
|
|
|
+ h("div", { class: "img1", onclick: () => {} }, ""),
|
|
|
+ h("div", { class: "img2", onclick: () => {} }, ""),
|
|
|
+ h("div", { class: "img3", onclick: () => {} }, ""),
|
|
|
+ ]),
|
|
|
]);
|
|
|
}
|
|
|
let className = "custom-tree-node";
|
|
@@ -175,4 +180,35 @@ const handleNodeClick = () => {};
|
|
|
font-style: normal;
|
|
|
text-transform: none;
|
|
|
}
|
|
|
+.custom-tree-node-div {
|
|
|
+ display: flex;
|
|
|
+ justify-content: space-between;
|
|
|
+ width: 100%;
|
|
|
+ .imgbox {
|
|
|
+ display: flex;
|
|
|
+ .img1 {
|
|
|
+ width: 23px;
|
|
|
+ height: 20px;
|
|
|
+ background-image: url("../../../../../assets/img/phone-icon.png");
|
|
|
+ background-size: 100% 100%;
|
|
|
+ cursor: pointer;
|
|
|
+ }
|
|
|
+ .img2 {
|
|
|
+ width: 23px;
|
|
|
+ height: 20px;
|
|
|
+ background-image: url("../../../../../assets/img/shengyin-icon.png");
|
|
|
+ background-size: 100% 100%;
|
|
|
+ margin-left: 5px;
|
|
|
+ cursor: pointer;
|
|
|
+ }
|
|
|
+ .img3 {
|
|
|
+ width: 23px;
|
|
|
+ height: 20px;
|
|
|
+ background-image: url("../../../../../assets/img/video-icon.png");
|
|
|
+ background-size: 100% 100%;
|
|
|
+ margin-left: 5px;
|
|
|
+ cursor: pointer;
|
|
|
+ }
|
|
|
+ }
|
|
|
+}
|
|
|
</style>
|