|
|
@ -850,13 +850,6 @@ export default { |
|
|
|
getDetail(this.$route.query.id).then(res => { |
|
|
|
getDetail(this.$route.query.id).then(res => { |
|
|
|
console.log(res); |
|
|
|
console.log(res); |
|
|
|
this.tab1_form = res.data.data; |
|
|
|
this.tab1_form = res.data.data; |
|
|
|
const charactersPerRow = 20; |
|
|
|
|
|
|
|
let securityMeasuresDisclosureLen = res.data.data.securityMeasuresDisclosure.length; |
|
|
|
|
|
|
|
let securityMeasuresDisclosureLenRows = Math.ceil(securityMeasuresDisclosureLen / charactersPerRow); |
|
|
|
|
|
|
|
this.tab1_option.column[14].maxRows = securityMeasuresDisclosureLenRows; |
|
|
|
|
|
|
|
let riskControlEvaluationLen = res.data.data.riskControlEvaluation.length; |
|
|
|
|
|
|
|
let riskControlEvaluationLenRows = Math.ceil(riskControlEvaluationLen / charactersPerRow); |
|
|
|
|
|
|
|
this.tab1_option.column[15].maxRows = riskControlEvaluationLenRows; |
|
|
|
|
|
|
|
switch (this.tab1_form.reviewStatus){ |
|
|
|
switch (this.tab1_form.reviewStatus){ |
|
|
|
case 1: |
|
|
|
case 1: |
|
|
|
this.form = "审核中"; |
|
|
|
this.form = "审核中"; |
|
|
@ -870,6 +863,13 @@ export default { |
|
|
|
default: |
|
|
|
default: |
|
|
|
this.form =" "; |
|
|
|
this.form =" "; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
const charactersPerRow = 20; |
|
|
|
|
|
|
|
let securityMeasuresDisclosureLen = res.data.data.securityMeasuresDisclosure.length; |
|
|
|
|
|
|
|
let securityMeasuresDisclosureLenRows = Math.ceil(securityMeasuresDisclosureLen / charactersPerRow); |
|
|
|
|
|
|
|
this.tab1_option.column[14].maxRows = securityMeasuresDisclosureLenRows; |
|
|
|
|
|
|
|
let riskControlEvaluationLen = res.data.data.riskControlEvaluation.length; |
|
|
|
|
|
|
|
let riskControlEvaluationLenRows = Math.ceil(riskControlEvaluationLen / charactersPerRow); |
|
|
|
|
|
|
|
this.tab1_option.column[15].maxRows = riskControlEvaluationLenRows; |
|
|
|
}); |
|
|
|
}); |
|
|
|
}, |
|
|
|
}, |
|
|
|
auditing() { |
|
|
|
auditing() { |
|
|
|