This commit is contained in:
faiz 2024-04-26 15:18:34 +08:00
parent cafd3771dd
commit a5f06d0cdf
2 changed files with 19 additions and 0 deletions

View File

@ -112,6 +112,20 @@
</el-form-item>
</el-col>
</el-row>
<el-row>
<el-col :span="12">
<el-form-item label="是否店长店:" prop="is_store_mgr">
<el-switch
v-model="merData.is_store_mgr"
:active-value="1"
:inactive-value="0"
:width="50"
active-text="是"
inactive-text="否"
/>
</el-form-item>
</el-col>
</el-row>
<el-row>
<el-col :span="12">
<el-form-item label="排序:" prop="sort">

View File

@ -143,6 +143,11 @@
<span>{{scope.row.is_soldier == 1 ? '是' : '否'}}</span>
</template>
</el-table-column>
<el-table-column prop="is_soldier" label="是否店长店" min-width="90">
<template slot-scope="scope">
<span>{{scope.row.is_store_mgr == 1 ? '是' : '否'}}</span>
</template>
</el-table-column>
<el-table-column prop="ext.idcard.name" label="法人姓名" min-width="150" />
<el-table-column prop="status" label="推荐" min-width="100">
<template slot-scope="scope">