Commit 87ec9314 authored by xiongjinke's avatar xiongjinke

修改

parent 7d43e1cd
......@@ -62,7 +62,7 @@
</template>
</el-table>
</div>
<div class="pagination-box" v-if="paging">
<div class="pagination-box" v-if="paging && tableDataTotal>queryParams.pageSize">
<el-pagination background :current-page="queryParams.pageNum" :page-size="queryParams.pageSize" :total="tableDataTotal" layout="prev, pager, next, jumper" @current-change="handleCurrentChange" @size-change="handleSizeChange" />
</div>
</div>
......
......@@ -32,6 +32,9 @@
{{ scope.row.projectName }}
</span>
</template>
<template slot="investmentAmount" slot-scope="scope">
{{ numbers(scope.row.investmentAmount) }}
</template>
</tables>
</template>
......@@ -155,13 +158,13 @@ export default {
forData: [
{label: '项目名称', prop: 'projectName', slot: true},
{label: '项目阶段', prop: 'projectStage', width: '120'},
{label: '投资金额(万元)', prop: 'investmentAmount', width: '140'},
{label: '投资金额(万元)', prop: 'investmentAmount', width: '140', slot: true},
{label: '项目状态', prop: 'status', width: '90'}
],
formData: [
{ type: 1, fieldName: 'projectStage', value: '', placeholder: '项目阶段', options: []},
{ type: 1, fieldName: 'status', value: '', placeholder: '项目状态', options: []},
{ type: 3, fieldName: 'projectName', value: '', placeholder: '输入项目名称关键字搜索'},
{ type: 3, fieldName: 'projectName', width:'200', value: '', placeholder: '输入项目名称关键字搜索'},
],
stageOptions:[],
statusOptions:[],
......@@ -363,6 +366,10 @@ export default {
closeDetail(){
this.isDetailId = false
this.detailId = ''
},
// 转科学计算
numbers(v){
return new Number(v);
}
}
......
......@@ -74,7 +74,7 @@
</template>
</div>
</div>
<div class="item">
<div class="item" v-if="false">
<span class="wrap_label">开发区类别</span>
<div class="item_ckquery">
<span :class="{color_text:queryParams.developmentZone.length == 0}" @click="changeBeCurrent('','developmentZone')">全部</span>
......@@ -427,7 +427,7 @@ export default {
box-shadow: 0px 4px 10px 0px rgba(0,0,0,0.1);
border-radius: 4px;
width: 880px;
height: 337px;
//height: 337px;
padding: 16px;
position: absolute;
top: 25px;
......
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