Commit 2e167907 authored by huangjie's avatar huangjie

Merge branch 'zuhuduan' of http://192.168.60.201/root/dsk-operate-sys into zuhuduan

parents 7381fd08 727c0b53
...@@ -190,4 +190,12 @@ public class BusinessOpportunityRadarController { ...@@ -190,4 +190,12 @@ public class BusinessOpportunityRadarController {
ExcelUtils<ImportantProjectExportVo> util = new ExcelUtils<>(ImportantProjectExportVo.class); ExcelUtils<ImportantProjectExportVo> util = new ExcelUtils<>(ImportantProjectExportVo.class);
util.exportExcel(response, list, "重点项目", "重点项目导出明细", true); util.exportExcel(response, list, "重点项目", "重点项目导出明细", true);
} }
/*
* 公招市场
*/
@RequestMapping("/bxproPage")
public AjaxResult bxproPage(@RequestBody JSONObject object) {
return opportunityRadarService.bxproPage(object);
}
} }
...@@ -160,4 +160,9 @@ public class BusinessOpportunityRadarService { ...@@ -160,4 +160,9 @@ public class BusinessOpportunityRadarService {
return result; return result;
} }
public AjaxResult bxproPage(JSONObject object) {
Map<String, Object> map = dskOpenApiUtil.requestBody("/nationzj/subscription/bxproPage", object);
return BeanUtil.toBean(map, AjaxResult.class);
}
} }
...@@ -167,6 +167,7 @@ ...@@ -167,6 +167,7 @@
getYears(){ getYears(){
getYears({}).then(res => { getYears({}).then(res => {
this.yearOptions=res.data.reverse(); this.yearOptions=res.data.reverse();
this.queryParams.year=this.yearOptions[0].year
}) })
}, },
//地区 //地区
......
...@@ -31,8 +31,12 @@ ...@@ -31,8 +31,12 @@
<template slot-scope="scope">{{ scope.$index + 1 }}</template> <template slot-scope="scope">{{ scope.$index + 1 }}</template>
</el-table-column> </el-table-column>
<el-table-column prop="type" label="供应方式" :formatter="formatStatus"/> <el-table-column prop="type" label="供应方式" :formatter="formatStatus"/>
<el-table-column prop="count" label="土地交易项目 (个)" align="right" :formatter="formatStatus" sortable/> <el-table-column prop="count" label="土地交易项目" align="right" :formatter="formatStatus" sortable>
<el-table-column prop="rate" label="占比(%)" align="right" :formatter="formatStatus" width="100"/> <template slot-scope="scope">{{ scope.row.count }}</template>
</el-table-column>
<el-table-column prop="rate" label="占比" align="right" :formatter="formatStatus" width="90">
<template slot-scope="scope">{{ scope.row.rate }}%</template>
</el-table-column>
</el-table> </el-table>
</div> </div>
</div> </div>
...@@ -70,8 +74,12 @@ ...@@ -70,8 +74,12 @@
<template slot-scope="scope">{{ scope.$index + 1 }}</template> <template slot-scope="scope">{{ scope.$index + 1 }}</template>
</el-table-column> </el-table-column>
<el-table-column prop="type" label="供应方式" :formatter="formatStatus"/> <el-table-column prop="type" label="供应方式" :formatter="formatStatus"/>
<el-table-column prop="count" label="土地交易项目 (个)" align="right" :formatter="formatStatus" sortable/> <el-table-column prop="count" label="土地交易项目" align="right" :formatter="formatStatus" sortable>
<el-table-column prop="rate" label="占比(%)" align="right" :formatter="formatStatus" width="100"/> <template slot-scope="scope">{{ scope.row.count }}</template>
</el-table-column>
<el-table-column prop="rate" label="占比" align="right" :formatter="formatStatus" width="90">
<template slot-scope="scope">{{ scope.row.rate }}%</template>
</el-table-column>
</el-table> </el-table>
</div> </div>
</div> </div>
...@@ -112,8 +120,12 @@ ...@@ -112,8 +120,12 @@
<template slot-scope="scope">{{ scope.$index + 1 }}</template> <template slot-scope="scope">{{ scope.$index + 1 }}</template>
</el-table-column> </el-table-column>
<el-table-column prop="province" label="地区" :formatter="formatStatus"/> <el-table-column prop="province" label="地区" :formatter="formatStatus"/>
<el-table-column prop="count" label="土地交易项目 (个)" align="right" :formatter="formatStatus" sortable/> <el-table-column prop="count" label="土地交易项目" align="right" :formatter="formatStatus" sortable>
<el-table-column prop="rate" label="占比(%)" align="right" :formatter="formatStatus" width="100"/> <template slot-scope="scope">{{ scope.row.count }}</template>
</el-table-column>
<el-table-column prop="rate" label="占比" align="right" :formatter="formatStatus" width="90">
<template slot-scope="scope">{{ scope.row.rate }}%</template>
</el-table-column>
</el-table> </el-table>
</div> </div>
</div> </div>
...@@ -147,8 +159,12 @@ ...@@ -147,8 +159,12 @@
<template slot-scope="scope">{{ scope.$index + 1 }}</template> <template slot-scope="scope">{{ scope.$index + 1 }}</template>
</el-table-column> </el-table-column>
<el-table-column prop="type" label="年份" :formatter="formatStatus"/> <el-table-column prop="type" label="年份" :formatter="formatStatus"/>
<el-table-column prop="count" label="土地交易项目 (个)" align="right" :formatter="formatStatus" sortable/> <el-table-column prop="count" label="土地交易项目" align="right" :formatter="formatStatus" sortable>
<el-table-column prop="rate" label="占比(%)" align="right" :formatter="formatStatus" width="100"/> <template slot-scope="scope">{{ scope.row.count }}</template>
</el-table-column>
<el-table-column prop="rate" label="占比" align="right" :formatter="formatStatus" width="90">
<template slot-scope="scope">{{ scope.row.rate }}%</template>
</el-table-column>
</el-table> </el-table>
</div> </div>
</div> </div>
...@@ -789,6 +805,9 @@ export default { ...@@ -789,6 +805,9 @@ export default {
width: 33%; width: 33%;
float: right; float: right;
::v-deep .el-table{ ::v-deep .el-table{
.caret-wrapper{
width: 13px;
}
.sort-caret.ascending{ .sort-caret.ascending{
border-bottom-color: rgba(0,129,255,0.5); border-bottom-color: rgba(0,129,255,0.5);
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment