blob: c8215a39579f2eb1a86156ee06b91ec1e4c64af8 [file] [log] [blame]
<!--
~ Licensed to the Apache Software Foundation (ASF) under one or more
~ contributor license agreements. See the NOTICE file distributed with
~ this work for additional information regarding copyright ownership.
~ The ASF licenses this file to You under the Apache License, Version 2.0
~ (the "License"); you may not use this file except in compliance with
~ the License. You may obtain a copy of the License at
~
~ http://www.apache.org/licenses/LICENSE-2.0
~
~ Unless required by applicable law or agreed to in writing, software
~ distributed under the License is distributed on an "AS IS" BASIS,
~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
~ See the License for the specific language governing permissions and
~ limitations under the License.
-->
<template>
<a-card>
<a-row>
<a-descriptions title="基础信息" />
<a-col :span="12">
<a-descriptions title="" layout="vertical" :column="1">
<a-descriptions-item label="规则名" :labelStyle="{ fontWeight: 'bold', width: '100px' }">
shop-user/StandardRouter
</a-descriptions-item>
<a-descriptions-item
label="作用对象"
:labelStyle="{ fontWeight: 'bold', width: '100px' }"
>
shop-user
</a-descriptions-item>
</a-descriptions>
</a-col>
<a-col :span="12">
<a-descriptions title="" layout="vertical" :column="1">
<a-descriptions-item
label="创建时间"
:labelStyle="{ fontWeight: 'bold', width: '100px' }"
>
2024/2/19/ 11:38:21
</a-descriptions-item>
</a-descriptions>
</a-col>
</a-row>
</a-card>
<a-card>
<a-descriptions title="路由列表" />
<a-card title="路由【1】">
<a-space size="middle" direction="vertical">
<span>名称:未指定</span>
<a-space size="small">
<span>服务生效范围:</span>
<a-space>
<a-space-compact direction="horizontal">
<a-button type="primary">exact</a-button>
<a-button type="primary">org.apache.dubbo.samples.UserService</a-button>
</a-space-compact>
</a-space>
</a-space>
<a-space size="middle">
<span>路由:</span>
<a-card style="min-width: 400px">
<a-space direction="vertical" size="middle">
<span>名称:未指定</span>
<a-space size="middle">
<span>匹配条件:</span>
</a-space>
</a-space>
</a-card>
</a-space>
</a-space>
</a-card>
</a-card>
</template>
<script setup lang="ts">
</script>
<style scoped lang="less">
.description-item-content {
margin-left: 20px;
width: 90%;
}
</style>