Commit a5950582 authored by liwei's avatar liwei

修改了发起用户和目标用户的显示

parent b53f537b
......@@ -138,12 +138,18 @@
</el-table-column>
<el-table-column label="发起用户" prop="userNickName" :show-overflow-tooltip="true">
<template slot-scope="scope">
<span v-if="scope.row.actionType !== '11' && scope.row.actionType !== '12'">
{{ scope.row.userNickName || '' }}{{ scope.row.userCode ? '(' + scope.row.userCode + ')' : '' }}
</span>
<span v-else>-</span>
</template>
</el-table-column>
<el-table-column label="目标用户" prop="userNickName" :show-overflow-tooltip="true">
<template slot-scope="scope">
<span v-if="scope.row.actionType !== '10'">
{{ scope.row.targetNickName || '' }}{{ scope.row.targetCode ? '(' + scope.row.targetCode + ')' : '' }}
</span>
<span v-else>-</span>
</template>
</el-table-column>
<el-table-column label="备注" prop="remarks" :show-overflow-tooltip="true">
......
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 to comment