diff --git a/framework/sdk-parent/frontend/src/components/template/CustomFiledComponent.vue b/framework/sdk-parent/frontend/src/components/template/CustomFiledComponent.vue
index 1c3c43c97d..ee0590a263 100644
--- a/framework/sdk-parent/frontend/src/components/template/CustomFiledComponent.vue
+++ b/framework/sdk-parent/frontend/src/components/template/CustomFiledComponent.vue
@@ -1,29 +1,32 @@
-
+
-
- {{ $t("custom_field.remote_search_tip") }}
-
+
+ {{ $t("custom_field.remote_search_tip") }}
+
+ :value="item.value"
+ >
@@ -32,9 +35,10 @@
@click.native="clickPane"
expand-trigger="hover"
@change="handleChange"
- :props="{label: 'text'}"
+ :props="{ label: 'text' }"
:options="data.options"
- v-model="data[prop]">
+ v-model="data[prop]"
+ >
+ v-model="data[prop]"
+ >
-
+ v-model="data[prop]"
+ >
+
{{ getTranslateOption(item) }}
@@ -67,10 +75,11 @@
@click.native="clickPane"
v-model="data[prop]"
:disabled="disabled"
- v-for="(item,index) in data.options ? data.options : []"
+ v-for="(item, index) in data.options ? data.options : []"
:key="index"
@change="handleChange"
- :label="item.value">
+ :label="item.value"
+ >
{{ getTranslateOption(item) }}
@@ -79,88 +88,107 @@
@click.native="clickPane"
v-model="data[prop]"
:disabled="disabled"
- @change="handleChange"/>
+ @change="handleChange"
+ />
+ v-model="data[prop]"
+ :precision="2"
+ :step="0.1"
+ />
-
+
-
-
-
+
+
+
-
+
-
+
-
-
-
+
+
-
@@ -305,16 +354,19 @@ export default {
width: 100%;
}
-.custom-with :deep( .el-input__inner) {
+.custom-with :deep(.el-input__inner) {
height: 32px;
}
-:deep( .el-input--suffix .el-input__inner) {
+:deep(.el-input--suffix .el-input__inner) {
height: 32px;
}
.input-search-tip {
+ position: relative;
+ z-index: 9;
+ background-color: white;
padding-left: 15px;
- color: #C0C4CC;
+ color: #c0c4cc;
}