This commit is contained in:
yong.huang 2023-07-19 17:40:14 +08:00
parent b04fae0c73
commit 2269f1b52f
6 changed files with 97 additions and 91 deletions

View File

@ -39,7 +39,7 @@ kombu = "==4.4.0"
# common setting # common setting
Flask-APScheduler = "==1.12.4" Flask-APScheduler = "==1.12.4"
timeout-decorator = "==0.5.0" timeout-decorator = "==0.5.0"
numpy = "==1.18.5" numpy = "==1.21.5"
pandas = "==1.3.2" pandas = "==1.3.2"
WTForms = "==3.0.0" WTForms = "==3.0.0"
email-validator = "==1.3.1" email-validator = "==1.3.1"

View File

@ -47,7 +47,7 @@ meld3==2.0.1
mistune==3.0.1 mistune==3.0.1
more-itertools==5.0.0 more-itertools==5.0.0
msgpack-python==0.5.6 msgpack-python==0.5.6
numpy==1.18.5 numpy==1.21.5
pandas==1.3.2 pandas==1.3.2
Pillow==8.3.2 Pillow==8.3.2
pkgutil_resolve_name==1.3.10 pkgutil_resolve_name==1.3.10

View File

@ -33,11 +33,13 @@
/> />
</a-form-item> </a-form-item>
</a-col> </a-col>
<a-col :span="12" <a-col
:span="12"
><a-form-item :label-col="formItemLayout.labelCol" :wrapper-col="formItemLayout.wrapperCol" label="别名"> ><a-form-item :label-col="formItemLayout.labelCol" :wrapper-col="formItemLayout.wrapperCol" label="别名">
<a-input name="alias" v-decorator="['alias', { rules: [] }]" /> </a-form-item <a-input name="alias" v-decorator="['alias', { rules: [] }]" /> </a-form-item
></a-col> ></a-col>
<a-col :span="12" <a-col
:span="12"
><a-form-item :label-col="formItemLayout.labelCol" :wrapper-col="formItemLayout.wrapperCol" label="数据类型"> ><a-form-item :label-col="formItemLayout.labelCol" :wrapper-col="formItemLayout.wrapperCol" label="数据类型">
<a-select <a-select
:disabled="true" :disabled="true"
@ -161,7 +163,8 @@
:wrapper-col="horizontalFormItemLayout.wrapperCol" :wrapper-col="horizontalFormItemLayout.wrapperCol"
> >
<template slot="label"> <template slot="label">
<span style="position: relative; white-space: pre" <span
style="position: relative; white-space: pre"
>{{ `索引` }} >{{ `索引` }}
<a-tooltip title="字段可被用于检索,加速查询"> <a-tooltip title="字段可被用于检索,加速查询">
<a-icon <a-icon
@ -192,7 +195,8 @@
:wrapper-col="horizontalFormItemLayout.wrapperCol" :wrapper-col="horizontalFormItemLayout.wrapperCol"
> >
<template slot="label"> <template slot="label">
<span style="position: relative; white-space: pre" <span
style="position: relative; white-space: pre"
>{{ `显示` }} >{{ `显示` }}
<a-tooltip title="CI实例表格默认展示该字段"> <a-tooltip title="CI实例表格默认展示该字段">
<a-icon <a-icon
@ -237,7 +241,8 @@
:wrapper-col="horizontalFormItemLayout.wrapperCol" :wrapper-col="horizontalFormItemLayout.wrapperCol"
> >
<template slot="label"> <template slot="label">
<span style="position: relative; white-space: pre" <span
style="position: relative; white-space: pre"
>{{ `多值` }} >{{ `多值` }}
<a-tooltip title="字段的值是1个或者多个接口返回的值的类型是list"> <a-tooltip title="字段的值是1个或者多个接口返回的值的类型是list">
<a-icon <a-icon
@ -302,7 +307,8 @@
<a-col :span="24" v-if="currentValueType !== '6'"> <a-col :span="24" v-if="currentValueType !== '6'">
<a-form-item :label-col="{ span: 4 }" :wrapper-col="{ span: 20 }"> <a-form-item :label-col="{ span: 4 }" :wrapper-col="{ span: 20 }">
<template slot="label"> <template slot="label">
<span style="position: relative; white-space: pre" <span
style="position: relative; white-space: pre"
>{{ `计算属性` }} >{{ `计算属性` }}
<a-tooltip <a-tooltip
:title="`该属性的值是通过模型的其它属性构建的表达式或者执行一段代码的方式计算而来,属性的引用方法为: {{ 属性名 }}`" :title="`该属性的值是通过模型的其它属性构建的表达式或者执行一段代码的方式计算而来,属性的引用方法为: {{ 属性名 }}`"