Commit 13a82a89 by Kyle_Li

会员详情退订状态修改

parent ef22be69
......@@ -70,7 +70,7 @@
</p>
<p><span class="label-span">常驻城市</span> <span class="ml15 color555">{{ memberbaseinfo.memberMainStoreArea | fomatText }}</span></p>
<p><span class="label-span">手机号码</span> <span class="ml15 color555">{{ memberbaseinfo.phoneNumber | fomatText }}</span></p>
<p><span class="label-span">退订状态</span> <span class="ml15 color555">{{ memberbaseinfo.unsubscribe == 1 ? '退订': memberbaseinfo.unsubscribe == 0 ? '未退订': '--' }}</span></p>
<p><span class="label-span">退订状态</span> <span class="ml15 color555">{{ memberbaseinfo.unsubscribe == 1 ? '退订' : '--' }}</span></p>
<p><span class="label-span">服务门店</span>
<span>
<el-tooltip v-if="memberbaseinfo.mainStoreName">
......@@ -380,7 +380,7 @@
<el-table-column prop="mobile" label="手机号码"></el-table-column>
<el-table-column prop="unsubscribe" label="退订状态">
<template slot-scope="scope">
{{ scope.row.unsubscribe === 0 ? '否' : '是'}}
{{ scope.row.unsubscribe === 1 ? '是' : '否'}}
</template>
</el-table-column>
</el-table>
......
......@@ -70,7 +70,7 @@
</p>
<p><span class="label-span">常驻城市</span> <span class="ml15 color555">{{ memberbaseinfo.memberMainStoreArea | fomatText }}</span></p>
<p><span class="label-span">手机号码</span> <span class="ml15 color555">{{ memberbaseinfo.phoneNumber | fomatText }}</span></p>
<p><span class="label-span">退订状态</span> <span class="ml15 color555">{{ memberbaseinfo.unsubscribe == 1 ? '退订': memberbaseinfo.unsubscribe == 0 ? '未退订': '--' }}</span></p>
<p><span class="label-span">退订状态</span> <span class="ml15 color555">{{ memberbaseinfo.unsubscribe == 1 ? '退订' : '--' }}</span></p>
<p>
<span class="label-span">服务门店</span>
<span>
......@@ -381,7 +381,7 @@
<el-table-column prop="mobile" label="手机号码"></el-table-column>
<el-table-column prop="unsubscribe" label="退订状态">
<template slot-scope="scope">
{{ scope.row.unsubscribe === 0 ? '否' : '是'}}
{{ scope.row.unsubscribe === 1 ? '是' : '否'}}
</template>
</el-table-column>
</el-table>
......
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