|
@@ -581,7 +581,7 @@ onMounted(async () => {
|
|
|
</el-table-column>
|
|
</el-table-column>
|
|
|
|
|
|
|
|
<el-table-column
|
|
<el-table-column
|
|
|
- min-width="120"
|
|
|
|
|
|
|
+ min-width="100"
|
|
|
v-for="item in currentTableColumns"
|
|
v-for="item in currentTableColumns"
|
|
|
:key="item.identifier"
|
|
:key="item.identifier"
|
|
|
:prop="item.identifier">
|
|
:prop="item.identifier">
|
|
@@ -592,7 +592,12 @@ onMounted(async () => {
|
|
|
</span>
|
|
</span>
|
|
|
</template>
|
|
</template>
|
|
|
<template #default="scope">
|
|
<template #default="scope">
|
|
|
- <el-input type="number" v-model="scope.row[item.identifier]" placeholder="请输入" />
|
|
|
|
|
|
|
+ <!-- <el-input type="number" v-model="scope.row[item.identifier]" placeholder="请输入" /> -->
|
|
|
|
|
+ <el-input-number
|
|
|
|
|
+ style="width: 150px"
|
|
|
|
|
+ v-model="scope.row[item.identifier]"
|
|
|
|
|
+ :min="0"
|
|
|
|
|
+ placeholder="请输入" />
|
|
|
</template>
|
|
</template>
|
|
|
</el-table-column>
|
|
</el-table-column>
|
|
|
|
|
|