替换淘宝镜像,限制客户端ID太长显示宽度.

This commit is contained in:
许晓东
2023-02-09 22:23:34 +08:00
parent 5e9304efc2
commit 07c6714fd9
4 changed files with 9 additions and 2 deletions

View File

@@ -219,7 +219,8 @@
<goal>npm</goal> <goal>npm</goal>
</goals> </goals>
<configuration> <configuration>
<arguments>install --registry=https://registry.npmjs.org/</arguments> <!-- <arguments>install &#45;&#45;registry=https://registry.npmjs.org/</arguments>-->
<arguments>install --registry=https://registry.npm.taobao.org</arguments>
</configuration> </configuration>
</execution> </execution>
<execution> <execution>

View File

@@ -272,6 +272,7 @@ const columns = [
dataIndex: "clientId", dataIndex: "clientId",
key: "clientId", key: "clientId",
scopedSlots: { customRender: "clientId" }, scopedSlots: { customRender: "clientId" },
width: 400,
}, },
{ {
title: "日志位点", title: "日志位点",

View File

@@ -2,7 +2,7 @@
<a-modal <a-modal
title="消费端成员" title="消费端成员"
:visible="show" :visible="show"
:width="1500" :width="1300"
:mask="false" :mask="false"
:destroyOnClose="true" :destroyOnClose="true"
:footer="null" :footer="null"
@@ -96,16 +96,19 @@ const columns = [
title: "成员ID", title: "成员ID",
dataIndex: "memberId", dataIndex: "memberId",
key: "memberId", key: "memberId",
width: 300,
}, },
{ {
title: "客户端ID", title: "客户端ID",
dataIndex: "clientId", dataIndex: "clientId",
key: "clientId", key: "clientId",
width: 300,
}, },
{ {
title: "实例ID", title: "实例ID",
dataIndex: "groupInstanceId", dataIndex: "groupInstanceId",
key: "groupInstanceId", key: "groupInstanceId",
width: 150,
}, },
{ {
title: "主机", title: "主机",
@@ -117,6 +120,7 @@ const columns = [
dataIndex: "partitions", dataIndex: "partitions",
key: "partitions", key: "partitions",
scopedSlots: { customRender: "partitions" }, scopedSlots: { customRender: "partitions" },
width: 300,
}, },
]; ];
</script> </script>

View File

@@ -161,6 +161,7 @@ const columns = [
dataIndex: "clientId", dataIndex: "clientId",
key: "clientId", key: "clientId",
scopedSlots: { customRender: "clientId" }, scopedSlots: { customRender: "clientId" },
width: 400,
}, },
{ {
title: "日志位点", title: "日志位点",