|
@@ -25,6 +25,13 @@
|
|
<el-select v-model="listQuery.departmentId" filterable placeholder="接单部门" style=" width: 200px;margin-left: 10px;float: left;">
|
|
<el-select v-model="listQuery.departmentId" filterable placeholder="接单部门" style=" width: 200px;margin-left: 10px;float: left;">
|
|
<el-option v-for="(d, id) in allotDepartment" :label="d.name" :value="d.id"></el-option>
|
|
<el-option v-for="(d, id) in allotDepartment" :label="d.name" :value="d.id"></el-option>
|
|
</el-select>
|
|
</el-select>
|
|
|
|
+ <el-select v-model="listQuery.productionType" filterable placeholder="产品类型" style=" width: 200px;margin-left: 10px;float: left;">
|
|
|
|
+ <el-option label="意见书" value="STATEMENT"></el-option>
|
|
|
|
+ <el-option label="评估报告" value="REPORT"></el-option>
|
|
|
|
+ <el-option label="咨询报告" value="CONSULT"></el-option>
|
|
|
|
+ <el-option label="意见函" value="LETTER"></el-option>
|
|
|
|
+ <el-option label="订单" value="ORDER"></el-option>
|
|
|
|
+ </el-select>
|
|
<el-date-picker
|
|
<el-date-picker
|
|
style="margin-left: 20px;float: left;"
|
|
style="margin-left: 20px;float: left;"
|
|
v-model="selectDate"
|
|
v-model="selectDate"
|
|
@@ -67,6 +74,16 @@
|
|
<span>{{ row.name }}</span>
|
|
<span>{{ row.name }}</span>
|
|
</template>
|
|
</template>
|
|
</el-table-column>
|
|
</el-table-column>
|
|
|
|
+ <el-table-column label="产品类型" align="center" width="120" show-overflow-tooltip>
|
|
|
|
+ <template slot-scope="{row}">
|
|
|
|
+ <span v-if="row.statementNo">意见书</span>
|
|
|
|
+ <span v-if="row.statementNo && row.reportType">、</span>
|
|
|
|
+ <span v-if="row.reportType == 'REPORT'">评估报告</span>
|
|
|
|
+ <span v-if="row.reportType == 'CONSULT'">咨询报告</span>
|
|
|
|
+ <span v-if="row.reportType == 'LETTER'">意见函</span>
|
|
|
|
+ <span v-if="!row.statementNo && !row.reportType">订单</span>
|
|
|
|
+ </template>
|
|
|
|
+ </el-table-column>
|
|
<el-table-column label="业务类型" align="center" width="100">
|
|
<el-table-column label="业务类型" align="center" width="100">
|
|
<template slot-scope="{row}">
|
|
<template slot-scope="{row}">
|
|
<span>{{ row.assetsBusinessGener }}</span>
|
|
<span>{{ row.assetsBusinessGener }}</span>
|