|
|
@@ -296,15 +296,25 @@ function goBack() {
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
|
|
|
- <el-table-column label="长度" width="90">
|
|
|
+ <el-table-column label="长度" width="130">
|
|
|
<template #default="scope">
|
|
|
- <el-input v-model="scope.row.attrLength" />
|
|
|
+ <el-input-number
|
|
|
+ v-model="scope.row.attrLength" style="width:100px"
|
|
|
+ :min="0"
|
|
|
+ controls-position="right"
|
|
|
+ size="large"
|
|
|
+ />
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
|
|
|
- <el-table-column label="小数位数" width="90">
|
|
|
+ <el-table-column label="小数位数" width="130">
|
|
|
<template #default="scope">
|
|
|
- <el-input v-model="scope.row.attrDecimals" />
|
|
|
+ <el-input-number
|
|
|
+ v-model="scope.row.attrDecimals" style="width:100px"
|
|
|
+ :min="1"
|
|
|
+ controls-position="right"
|
|
|
+ size="large"
|
|
|
+ />
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
|