edit
This commit is contained in:
parent
cafd3771dd
commit
a5f06d0cdf
|
@ -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">
|
||||
|
|
|
@ -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">
|
||||
|
|
Loading…
Reference in New Issue