update 企标稽查计划

This commit is contained in:
danshihao
2023-11-22 13:33:33 +08:00
parent 12631c2eec
commit 12a8210534
2 changed files with 6 additions and 7 deletions
@@ -17,6 +17,7 @@
:dataSource="dataSource"
:can-drag="true"
rowKey="id"
:loading="loading"
:pagination="false"
:row-selection="{ selectedRowKeys: selectedRowKeys, onChange: onSelectChange }"
:scroll="{x: '100%'}"
@@ -15,10 +15,8 @@
:dataSource="dataSource"
:can-drag="true"
rowKey="id"
:row-selection="{ selectedRowKeys: selectedRowKeys, onChange: onSelectChange }"
:pagination="ipagination"
:scroll="{x: '100%'}"
@change="tableOnChange">
:pagination="false"
:scroll="{x: '100%'}">
</j-table>
</a-spin>
</j-modal>
@@ -26,10 +24,8 @@
<script>
import JTable from '@comp/jero/JTable'
import { JeroListMixin } from '@/mixins/JeroListMixin'
export default {
name: 'ShowOpinionModal',
mixins: [JeroListMixin],
components: { JTable },
data () {
return {
@@ -47,7 +43,7 @@ export default {
title: this.$t('workCenter.esInspectionPlan.solicitOpinionObject'),
align: 'center',
width: 180,
dataIndex: 'solicitOpinionObject',
dataIndex: 'createByDictText',
scopedSlots: { customRender: 'text' }
},
{ // 意见
@@ -64,6 +60,7 @@ export default {
show (record) {
this.model = Object.assign({}, record)
this.visible = true
this.dataSource = record.processEsInspectPlanOpinionList || []
},
// 确定
handleOk () {
@@ -75,6 +72,7 @@ export default {
},
close () {
this.$emit('close')
this.dataSource = []
this.visible = false
},
tableOnChange (pagination, filters, sorter) {