Merge branch 'master' of https://e.coding.net/ctcdevteam/cma_search
This commit is contained in:
commit
4817fb0eb0
|
@ -22,6 +22,11 @@
|
|||
<el-table-column label="材料名称">
|
||||
<template slot-scope="scope">{{ scope.row.content_name }}</template>
|
||||
</el-table-column>
|
||||
<el-table-column
|
||||
label="材料详情"
|
||||
>
|
||||
<template slot-scope="scope" >{{ scope.row.content_desc }}</template>
|
||||
</el-table-column>
|
||||
<el-table-column label="报送要求/备注">
|
||||
<template slot-scope="scope">{{ scope.row.note }}</template>
|
||||
</el-table-column>
|
||||
|
|
|
@ -126,6 +126,11 @@
|
|||
>
|
||||
<template slot-scope="scope" v-if="scope.row.content_name">{{ scope.row.content_name }}</template>
|
||||
</el-table-column>
|
||||
<el-table-column
|
||||
label="材料详情"
|
||||
>
|
||||
<template slot-scope="scope" v-if="scope.row.content_desc">{{ scope.row.content_desc }}</template>
|
||||
</el-table-column>
|
||||
<el-table-column label="报送要求/备注">
|
||||
<template slot-scope="scope" v-if="scope.row.note">{{ scope.row.note }}</template>
|
||||
</el-table-column>
|
||||
|
|
|
@ -227,6 +227,11 @@
|
|||
<el-table-column label="材料">
|
||||
<template slot-scope="scope">{{ scope.row.content_name }}</template>
|
||||
</el-table-column>
|
||||
<el-table-column
|
||||
label="材料详情"
|
||||
>
|
||||
<template slot-scope="scope">{{ scope.row.content_desc }}</template>
|
||||
</el-table-column>
|
||||
<el-table-column label="状态">
|
||||
<template slot-scope="scope">
|
||||
<el-tag type="danger" v-if="scope.row.state == '待报送'">{{
|
||||
|
|
Loading…
Reference in New Issue