|
|
@@ -16,12 +16,11 @@
|
|
|
<span class=" sp1 mt-5">{{ item.projectNumber }}<span class="grey font-14 ml-5">个</span></span>
|
|
|
</div>
|
|
|
</div>
|
|
|
- <base-button class="ml-20 mt-20" icon="Edit" title="项目导入"
|
|
|
- @click="showImport = true"/>
|
|
|
<div v-if='permissions.permissions?.projectAdd' class='flex flex-center flex-justify-start'>
|
|
|
<base-button class="ml-20 mt-20" icon="Plus" title="新增"
|
|
|
@click="showAdd = true"/>
|
|
|
-
|
|
|
+ <base-button class="ml-20 mt-20" icon="Edit" title="项目导入"
|
|
|
+ @click="showImport = true"/>
|
|
|
</div>
|
|
|
</div>
|
|
|
<avue-crud ref="crud"
|
|
|
@@ -182,13 +181,12 @@ export default {
|
|
|
label: '项目名称',
|
|
|
prop: 'name',
|
|
|
addDisplay: false,
|
|
|
- editDisplay: false,
|
|
|
- width: 400
|
|
|
+ editDisplay: false
|
|
|
},
|
|
|
{
|
|
|
label: '项目总投资(万元)',
|
|
|
prop: 'totalAmount',
|
|
|
- width: 120,
|
|
|
+ width: 180,
|
|
|
type: 'number',
|
|
|
precision: 2,
|
|
|
formatter: (val, value, label) => {
|
|
|
@@ -197,8 +195,7 @@ export default {
|
|
|
},
|
|
|
{
|
|
|
label: '所属机构',
|
|
|
- prop: 'implementingAgency',
|
|
|
- width: 240
|
|
|
+ prop: 'implementingAgency'
|
|
|
},
|
|
|
{
|
|
|
label: '项目类型',
|
|
|
@@ -220,7 +217,7 @@ export default {
|
|
|
label: '发债时间',
|
|
|
prop: 'issueDate',
|
|
|
type: 'month',
|
|
|
- width: 100,
|
|
|
+ width: 120,
|
|
|
format: 'YYYY-MM',
|
|
|
valueFormat: 'YYYY-MM'
|
|
|
},
|