标准/译文获取申请 回显字段
This commit is contained in:
+11
-3
@@ -49,7 +49,7 @@
|
||||
<el-table-column
|
||||
show-overflow-tooltip
|
||||
label="类型"
|
||||
prop="type"
|
||||
prop="typeShow"
|
||||
align="center"
|
||||
min-width="100"
|
||||
/>
|
||||
@@ -59,7 +59,11 @@
|
||||
width="150"
|
||||
align="center"
|
||||
prop="standNum"
|
||||
/>
|
||||
>
|
||||
<template slot-scope="scope">
|
||||
{{ scope.row.standLb }}{{ scope.row.standName }}{{ scope.row.standYear }}
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column
|
||||
show-overflow-tooltip
|
||||
label="标准名称"
|
||||
@@ -94,7 +98,11 @@
|
||||
prop="status"
|
||||
align="center"
|
||||
min-width="100"
|
||||
/>
|
||||
>
|
||||
<template slot-scope="scope">
|
||||
{{ scope.row.status === 'refuse' ? '驳回' : scope.row.status === 'pendingApproval' ? '待审批' : scope.row.status === 'pass' ? '通过' : '草稿' }}
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column label="操作" align="center" width="200" fixed="right">
|
||||
<template slot-scope="scope">
|
||||
<div class="table-operate-btn" @click="toView(scope.row)">查看</div>
|
||||
|
||||
Reference in New Issue
Block a user