|
@@ -256,6 +256,7 @@
|
|
show-summary
|
|
show-summary
|
|
:summary-method="getSummaries"
|
|
:summary-method="getSummaries"
|
|
max-height="550"
|
|
max-height="550"
|
|
|
|
+ style="font-size: 12px;"
|
|
@selection-change="handleSelectionChange"
|
|
@selection-change="handleSelectionChange"
|
|
:key="isUpdate"
|
|
:key="isUpdate"
|
|
>
|
|
>
|
|
@@ -291,7 +292,7 @@
|
|
<el-table-column show-overflow-tooltip label="人工调整数" align="center" prop="artificialAdjust" width="100px"/>
|
|
<el-table-column show-overflow-tooltip label="人工调整数" align="center" prop="artificialAdjust" width="100px"/>
|
|
<el-table-column show-overflow-tooltip label="修改原因" align="center" prop="modifyReason" width="150px">
|
|
<el-table-column show-overflow-tooltip label="修改原因" align="center" prop="modifyReason" width="150px">
|
|
<template slot-scope="scope">
|
|
<template slot-scope="scope">
|
|
- <el-input :disabled="scope.row.status !== '1'|| lineDisable" v-model="scope.row.modifyReason"/>
|
|
|
|
|
|
+ <el-input :disabled="scope.row.status !== '1'|| lineDisable || scope.row.artificialAdjust == '0'" v-model="scope.row.modifyReason"/>
|
|
</template>
|
|
</template>
|
|
</el-table-column>
|
|
</el-table-column>
|
|
<el-table-column show-overflow-tooltip label="建议采购量" align="center" prop="suggestionPurchase" width="100px"/>
|
|
<el-table-column show-overflow-tooltip label="建议采购量" align="center" prop="suggestionPurchase" width="100px"/>
|
|
@@ -349,8 +350,8 @@
|
|
background
|
|
background
|
|
@size-change="handleSizeChange"
|
|
@size-change="handleSizeChange"
|
|
@current-change="handleCurrentChange"
|
|
@current-change="handleCurrentChange"
|
|
- :current-page="1"
|
|
|
|
- :page-sizes="[5, 10, 15, 20]"
|
|
|
|
|
|
+ :current-page="queryParams.pageNum"
|
|
|
|
+ :page-sizes="[10, 15, 20]"
|
|
:page-size="100"
|
|
:page-size="100"
|
|
layout="total, sizes, prev, pager, next, jumper"
|
|
layout="total, sizes, prev, pager, next, jumper"
|
|
:total=total>
|
|
:total=total>
|
|
@@ -463,7 +464,7 @@ export default {
|
|
demandDate: '',
|
|
demandDate: '',
|
|
approverFinishTime: '',
|
|
approverFinishTime: '',
|
|
pageNum: 1,
|
|
pageNum: 1,
|
|
- pageSize: 5
|
|
|
|
|
|
+ pageSize: 10
|
|
},
|
|
},
|
|
personOptions: [],
|
|
personOptions: [],
|
|
classOptions: [],
|
|
classOptions: [],
|
|
@@ -557,7 +558,7 @@ export default {
|
|
demandDate: '',
|
|
demandDate: '',
|
|
approverFinishTime: '',
|
|
approverFinishTime: '',
|
|
pageNum: 1,
|
|
pageNum: 1,
|
|
- pageSize: 5
|
|
|
|
|
|
+ pageSize: 10
|
|
}
|
|
}
|
|
this.getList(this.queryParams)
|
|
this.getList(this.queryParams)
|
|
},
|
|
},
|
|
@@ -603,6 +604,7 @@ export default {
|
|
},
|
|
},
|
|
cancelEdit() {
|
|
cancelEdit() {
|
|
this.lineDisable = true
|
|
this.lineDisable = true
|
|
|
|
+ this.getList(this.queryParams)
|
|
},
|
|
},
|
|
saveList() {
|
|
saveList() {
|
|
editSummaryList(this.tableList).then(res => {
|
|
editSummaryList(this.tableList).then(res => {
|