Commit bd17924e by Mr. Lan

fix bug.

parent f1bc7067
...@@ -26,7 +26,11 @@ ...@@ -26,7 +26,11 @@
<span>{{ scope.row.state[0].label }}</span> <span>{{ scope.row.state[0].label }}</span>
</template> </template>
</el-table-column> </el-table-column>
<el-table-column label="当前处理人" prop="principals" :show-overflow-tooltip="true" /> <el-table-column label="当前处理人" :show-overflow-tooltip="true">
<template slot-scope="scope">
<span v-if="scope.row.is_end===0">{{ scope.row.principals }}</span>
</template>
</el-table-column>
<el-table-column label="是否结束" :show-overflow-tooltip="true" width="80" align="center"> <el-table-column label="是否结束" :show-overflow-tooltip="true" width="80" align="center">
<template slot-scope="scope"> <template slot-scope="scope">
<el-tag v-if="scope.row.is_end===0" size="mini" type="success"></el-tag> <el-tag v-if="scope.row.is_end===0" size="mini" type="success"></el-tag>
......
...@@ -26,7 +26,11 @@ ...@@ -26,7 +26,11 @@
<span>{{ scope.row.state[0].label }}</span> <span>{{ scope.row.state[0].label }}</span>
</template> </template>
</el-table-column> </el-table-column>
<el-table-column label="当前处理人" prop="principals" :show-overflow-tooltip="true" /> <el-table-column label="当前处理人" :show-overflow-tooltip="true">
<template slot-scope="scope">
<span v-if="scope.row.is_end===0">{{ scope.row.principals }}</span>
</template>
</el-table-column>
<el-table-column label="是否结束" :show-overflow-tooltip="true" width="80" align="center"> <el-table-column label="是否结束" :show-overflow-tooltip="true" width="80" align="center">
<template slot-scope="scope"> <template slot-scope="scope">
<el-tag v-if="scope.row.is_end===0" size="mini" type="success"></el-tag> <el-tag v-if="scope.row.is_end===0" size="mini" type="success"></el-tag>
......
...@@ -26,7 +26,11 @@ ...@@ -26,7 +26,11 @@
<span>{{ scope.row.state[0].label }}</span> <span>{{ scope.row.state[0].label }}</span>
</template> </template>
</el-table-column> </el-table-column>
<el-table-column label="当前处理人" prop="principals" :show-overflow-tooltip="true" /> <el-table-column label="当前处理人" :show-overflow-tooltip="true">
<template slot-scope="scope">
<span v-if="scope.row.is_end===0">{{ scope.row.principals }}</span>
</template>
</el-table-column>
<el-table-column label="是否结束" :show-overflow-tooltip="true" width="80" align="center"> <el-table-column label="是否结束" :show-overflow-tooltip="true" width="80" align="center">
<template slot-scope="scope"> <template slot-scope="scope">
<el-tag v-if="scope.row.is_end===0" size="mini" type="success"></el-tag> <el-tag v-if="scope.row.is_end===0" size="mini" type="success"></el-tag>
......
...@@ -26,7 +26,11 @@ ...@@ -26,7 +26,11 @@
<span>{{ scope.row.state[0].label }}</span> <span>{{ scope.row.state[0].label }}</span>
</template> </template>
</el-table-column> </el-table-column>
<el-table-column label="当前处理人" prop="principals" :show-overflow-tooltip="true" /> <el-table-column label="当前处理人" :show-overflow-tooltip="true">
<template slot-scope="scope">
<span v-if="scope.row.is_end===0">{{ scope.row.principals }}</span>
</template>
</el-table-column>
<el-table-column label="是否结束" :show-overflow-tooltip="true" width="80" align="center"> <el-table-column label="是否结束" :show-overflow-tooltip="true" width="80" align="center">
<template slot-scope="scope"> <template slot-scope="scope">
<el-tag v-if="scope.row.is_end===0" size="mini" type="success"></el-tag> <el-tag v-if="scope.row.is_end===0" size="mini" type="success"></el-tag>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment