|
@@ -41,7 +41,11 @@
|
|
|
<el-table :data="props.row.children" border>
|
|
|
<el-table-column label="单位名称" prop="organizationName" />
|
|
|
<el-table-column label="业务属性" prop="binSectionName" />
|
|
|
- <el-table-column label="考评周期" prop="checkCycle" />
|
|
|
+ <el-table-column label="考评周期" prop="checkCycle">
|
|
|
+ <template #default="scope">
|
|
|
+ <span>{{scope.row.checkCycle === 'YDKP'?'月度考评':scope.row.checkCycle === 'JDKP'?'季度考评':'年度考评'}}</span>
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
<el-table-column label="利润金额" prop="profit" />
|
|
|
<el-table-column label="分数" prop="score" />
|
|
|
<el-table-column label="年" prop="year" />
|
|
@@ -61,7 +65,11 @@
|
|
|
</el-table-column>
|
|
|
<el-table-column label="单位名称" prop="organizationName" />
|
|
|
<el-table-column label="业务属性" prop="binSectionName" />
|
|
|
- <el-table-column label="考评周期" prop="checkCycle" />
|
|
|
+ <el-table-column label="考评周期" prop="checkCycle">
|
|
|
+ <template #default="scope">
|
|
|
+ <span>{{scope.row.checkCycle === 'YDKP'?'月度考评':scope.row.checkCycle === 'JDKP'?'季度考评':'年度考评'}}</span>
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
<el-table-column label="利润金额" prop="profit" />
|
|
|
<el-table-column label="分数" prop="score" />
|
|
|
<el-table-column label="年" prop="year" />
|
|
@@ -213,7 +221,7 @@ export default {
|
|
|
let params = {
|
|
|
pageNum: that.page.currentPage,
|
|
|
pageSize: that.page.pagesize,
|
|
|
- binSectionName: that.moduleStr,
|
|
|
+ binSection: that.moduleStr,
|
|
|
checkCycle: that.checkCycleStr
|
|
|
}
|
|
|
apiGetmultiplebrandtreeList(params).then(datas =>{
|