Commit 397357cb by lizhi

优化

parent 521c0373
......@@ -36,7 +36,17 @@
}}</template>
</el-table-column>
<el-table-column label="客户状态" align="center">
<template slot-scope="scope">{{ scope.row.userStatus }}</template>
<template slot-scope="scope">{{
scope.row.userStatus == 0
? "未报名"
: scope.row.userStatus == 1
? "在读学员"
: scope.row.userStatus == 2
? "退费学员"
: scope.row.userStatus == 3
? "结课学员"
: ""
}}</template>
</el-table-column>
<el-table-column label="渠道" align="center">
<template slot-scope="scope">
......
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