[update] 法规符合性评估流程
This commit is contained in:
+26
-3
@@ -5,13 +5,15 @@
|
|||||||
<j-expand-table
|
<j-expand-table
|
||||||
:can-drag="true"
|
:can-drag="true"
|
||||||
:scroll="{x: '100%'}"
|
:scroll="{x: '100%'}"
|
||||||
ref="table"
|
ref="expandTable"
|
||||||
rowKey="standardNumber"
|
rowKey="standardNumber"
|
||||||
:columns="columns"
|
:columns="columns"
|
||||||
:dataSource="dataSource"
|
:dataSource="dataSource"
|
||||||
formIsDepend="result"
|
formIsDepend="result"
|
||||||
:extraForm="extraForm"
|
:extraForm="extraForm"
|
||||||
:loading="loading">
|
:pagination="ipagination"
|
||||||
|
:loading="loading"
|
||||||
|
@change="handleTableChange">
|
||||||
|
|
||||||
<template slot="result" slot-scope="{text, record}">
|
<template slot="result" slot-scope="{text, record}">
|
||||||
<j-dict-select-tag
|
<j-dict-select-tag
|
||||||
@@ -43,6 +45,18 @@ export default {
|
|||||||
data () {
|
data () {
|
||||||
return {
|
return {
|
||||||
loading: false,
|
loading: false,
|
||||||
|
/* 分页参数 */
|
||||||
|
ipagination: {
|
||||||
|
current: 1,
|
||||||
|
pageSize: 10,
|
||||||
|
pageSizeOptions: ['10', '30', '50', '100', '150', '200'],
|
||||||
|
showTotal: (total, range) => {
|
||||||
|
return range[0] + '-' + range[1] + ' ' + this.$t('total') + ' ' + total + ' ' + this.$t('strip')
|
||||||
|
},
|
||||||
|
showQuickJumper: true,
|
||||||
|
showSizeChanger: true,
|
||||||
|
total: 0
|
||||||
|
},
|
||||||
columns: [
|
columns: [
|
||||||
{ // 条款号
|
{ // 条款号
|
||||||
title: this.$t('clauseNo'),
|
title: this.$t('clauseNo'),
|
||||||
@@ -259,8 +273,17 @@ export default {
|
|||||||
// 外层获取数据要过校验,返回false表示没有通过校验
|
// 外层获取数据要过校验,返回false表示没有通过校验
|
||||||
async getDataValidate () {
|
async getDataValidate () {
|
||||||
let data = {}
|
let data = {}
|
||||||
data.detailInfoList = JSON.parse(JSON.stringify(this.dataSource))
|
const expandTableValid = this.$refs.expandTable.submit()
|
||||||
|
if (!expandTableValid) {
|
||||||
|
this.$message.warning(this.$t('pleaseCompleteTableInfo'))
|
||||||
|
data = false
|
||||||
|
} else {
|
||||||
|
data.detailInfoList = JSON.parse(JSON.stringify(this.dataSource))
|
||||||
|
}
|
||||||
return data
|
return data
|
||||||
|
},
|
||||||
|
handleTableChange (pagination) {
|
||||||
|
this.ipagination = pagination
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
+1
-1
@@ -99,7 +99,7 @@ export default {
|
|||||||
title: this.$t('workCenter.regulatoryComplianceCheckProcess.appraiser'),
|
title: this.$t('workCenter.regulatoryComplianceCheckProcess.appraiser'),
|
||||||
align: 'center',
|
align: 'center',
|
||||||
width: 180,
|
width: 180,
|
||||||
dataIndex: 'appraiser_dictText',
|
dataIndex: 'assessor_dictText',
|
||||||
scopedSlots: { customRender: 'text' }
|
scopedSlots: { customRender: 'text' }
|
||||||
},
|
},
|
||||||
{ // 评估结果
|
{ // 评估结果
|
||||||
|
|||||||
+1
-1
@@ -167,7 +167,7 @@ export default {
|
|||||||
title: this.$t('workCenter.regulatoryComplianceCheckProcess.appraiser'),
|
title: this.$t('workCenter.regulatoryComplianceCheckProcess.appraiser'),
|
||||||
align: 'center',
|
align: 'center',
|
||||||
width: 180,
|
width: 180,
|
||||||
dataIndex: 'appraiser_dictText',
|
dataIndex: 'assessor_dictText',
|
||||||
scopedSlots: { customRender: 'text' }
|
scopedSlots: { customRender: 'text' }
|
||||||
},
|
},
|
||||||
{ // 评估结果
|
{ // 评估结果
|
||||||
|
|||||||
+19
-3
@@ -16,8 +16,9 @@
|
|||||||
rowKey="standardNumber"
|
rowKey="standardNumber"
|
||||||
:columns="columns"
|
:columns="columns"
|
||||||
:dataSource="dataSource"
|
:dataSource="dataSource"
|
||||||
:pagination="false"
|
:pagination="ipagination"
|
||||||
:loading="loading">
|
:loading="loading"
|
||||||
|
@change="handleTableChange">
|
||||||
|
|
||||||
<!-- 佐证材料 -->
|
<!-- 佐证材料 -->
|
||||||
<template v-slot:material="{text, record}">
|
<template v-slot:material="{text, record}">
|
||||||
@@ -51,6 +52,18 @@ export default {
|
|||||||
data () {
|
data () {
|
||||||
return {
|
return {
|
||||||
loading: false,
|
loading: false,
|
||||||
|
/* 分页参数 */
|
||||||
|
ipagination: {
|
||||||
|
current: 1,
|
||||||
|
pageSize: 10,
|
||||||
|
pageSizeOptions: ['10', '30', '50', '100', '150', '200'],
|
||||||
|
showTotal: (total, range) => {
|
||||||
|
return range[0] + '-' + range[1] + ' ' + this.$t('total') + ' ' + total + ' ' + this.$t('strip')
|
||||||
|
},
|
||||||
|
showQuickJumper: true,
|
||||||
|
showSizeChanger: true,
|
||||||
|
total: 0
|
||||||
|
},
|
||||||
columns: [
|
columns: [
|
||||||
{
|
{
|
||||||
title: this.$t('serialNumber'),
|
title: this.$t('serialNumber'),
|
||||||
@@ -101,7 +114,7 @@ export default {
|
|||||||
title: this.$t('workCenter.regulatoryComplianceCheckProcess.appraiser'),
|
title: this.$t('workCenter.regulatoryComplianceCheckProcess.appraiser'),
|
||||||
align: 'center',
|
align: 'center',
|
||||||
width: 180,
|
width: 180,
|
||||||
dataIndex: 'appraiser_dictText',
|
dataIndex: 'assessor_dictText',
|
||||||
scopedSlots: { customRender: 'text' }
|
scopedSlots: { customRender: 'text' }
|
||||||
},
|
},
|
||||||
{ // 评估结果
|
{ // 评估结果
|
||||||
@@ -194,6 +207,9 @@ export default {
|
|||||||
data.detailInfoList = JSON.parse(JSON.stringify(this.dataSource))
|
data.detailInfoList = JSON.parse(JSON.stringify(this.dataSource))
|
||||||
return data
|
return data
|
||||||
},
|
},
|
||||||
|
handleTableChange (pagination) {
|
||||||
|
this.ipagination = pagination
|
||||||
|
},
|
||||||
handleExportXls (fileName, fileSuffix = '.xls') {
|
handleExportXls (fileName, fileSuffix = '.xls') {
|
||||||
if (!fileName || typeof fileName !== 'string') {
|
if (!fileName || typeof fileName !== 'string') {
|
||||||
fileName = this.$t('exportFile')
|
fileName = this.$t('exportFile')
|
||||||
|
|||||||
Reference in New Issue
Block a user