|
@@ -44,12 +44,14 @@
|
|
|
</el-table-column>
|
|
|
<el-table-column label="意见书号" align="center" width="250">
|
|
|
<template slot-scope="{row}">
|
|
|
- <span @contextmenu.prevent="$doCopy(row.statementNo)">{{ row.statementNo == null ? '-' : row.statementNo }}</span>
|
|
|
+ <span @contextmenu.prevent="$doCopy(row.statementNo)">{{ row.statementNo == null ? '-' :
|
|
|
+ row.statementNo }}</span>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
<el-table-column label="报告号" align="center" width="250">
|
|
|
<template slot-scope="{row}">
|
|
|
- <span @contextmenu.prevent="$doCopy(row.reportNo)">{{ row.reportNo == null ? '-' : row.reportNo }}</span>
|
|
|
+ <span @contextmenu.prevent="$doCopy(row.reportNo)">{{ row.reportNo == null ? '-' : row.reportNo
|
|
|
+ }}</span>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
<el-table-column label="项目名称" align="center" width="250">
|
|
@@ -105,22 +107,27 @@
|
|
|
<el-table-column label="操作" align="center" width="120" fixed="right">
|
|
|
<template slot-scope="{row}">
|
|
|
<el-button type="text" @click="orderDetail(row)">任务处理</el-button>
|
|
|
+ <el-button type="text" @click="transfer(row.recordId)">转交</el-button>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
</parentTable>
|
|
|
</y-page-list-layout>
|
|
|
+ <TransferDialog :transferDialogVisible="visible" @parentFalse="parentFalse()" @getPage="selectPage()"
|
|
|
+ :recordId="recordId"></TransferDialog>
|
|
|
</div>
|
|
|
</template>
|
|
|
|
|
|
<script>
|
|
|
import YPageListLayout from '@/components/YPageListLayout'
|
|
|
import Breadcrumb from '@/components/Breadcrumb'
|
|
|
+import TransferDialog from '@/components/TaskTransferDialog'
|
|
|
|
|
|
export default {
|
|
|
name: 'AssetsToDoList',
|
|
|
components: {
|
|
|
Breadcrumb,
|
|
|
YPageListLayout,
|
|
|
+ TransferDialog
|
|
|
},
|
|
|
data() {
|
|
|
return {
|
|
@@ -171,7 +178,9 @@ export default {
|
|
|
value: '其他资产评估',
|
|
|
label: '其他资产评估'
|
|
|
}
|
|
|
- ]
|
|
|
+ ],
|
|
|
+ visible: false,
|
|
|
+ recordId: null
|
|
|
}
|
|
|
},
|
|
|
created() {
|
|
@@ -287,6 +296,13 @@ export default {
|
|
|
}
|
|
|
})
|
|
|
}
|
|
|
+ },
|
|
|
+ parentFalse() {
|
|
|
+ this.visible = false;
|
|
|
+ },
|
|
|
+ transfer(recordId) {
|
|
|
+ this.visible = true;
|
|
|
+ this.recordId = recordId;
|
|
|
}
|
|
|
}
|
|
|
}
|