|
|
@@ -16,8 +16,13 @@
|
|
|
<div style="margin-top: 20px;border: 1px solid #c9c9c9;" >
|
|
|
<code-mirror-tsx style="width: 100%;" body-type="sql" :number-of-rows="20" />
|
|
|
</div>
|
|
|
+ <div class="execute-info" >
|
|
|
+ <div class="title" >执行信息</div>
|
|
|
+ <div class="execute-content" >
|
|
|
+ <a-empty></a-empty>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
</a-card>
|
|
|
-
|
|
|
</a-col>
|
|
|
</a-row>
|
|
|
</a-card>
|
|
|
@@ -28,4 +33,22 @@ import { h } from 'vue'
|
|
|
import { RightCircleOutlined } from '@ant-design/icons-vue'
|
|
|
</script>
|
|
|
<style lang='less' scoped >
|
|
|
+
|
|
|
+.execute-info {
|
|
|
+ margin-top: 10px;
|
|
|
+ .title {
|
|
|
+ font-size: 20px;
|
|
|
+ font-weight: 700;
|
|
|
+ width: 100%;
|
|
|
+ height: 50px;
|
|
|
+ background-color: #f5f5f5;
|
|
|
+ line-height: 50px;
|
|
|
+ padding-left: 20px;
|
|
|
+ border: 1px solid #f5f5f5;
|
|
|
+ }
|
|
|
+ .execute-content {
|
|
|
+ margin-top: 20px;
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
</style>
|