提交 a3ad96ec 编写于 作者: dmx_mac's avatar dmx_mac

feat:增加店铺状态查询

上级 efb37c08
此差异已折叠。
...@@ -65,6 +65,22 @@ ...@@ -65,6 +65,22 @@
</el-select> </el-select>
</el-form-item> </el-form-item>
</el-col> </el-col>
<el-col :span="6">
<el-form-item label="店铺状态">
<el-select
v-model="searchForm.certifyStatus"
placeholder="请选择"
size="small"
clearable>
<el-option
v-for="item in storeTypeList"
:key="item.value"
:label="item.label"
:value="item.value"
></el-option>
</el-select>
</el-form-item>
</el-col>
<el-col :span="6" style="text-align: right"> <el-col :span="6" style="text-align: right">
<el-button type="primary" size="small" @click="searchList">查询</el-button> <el-button type="primary" size="small" @click="searchList">查询</el-button>
<el-button type="default" size="small" @click="resetForm" style="margin-left:0;">重置</el-button> <el-button type="default" size="small" @click="resetForm" style="margin-left:0;">重置</el-button>
...@@ -253,7 +269,8 @@ ...@@ -253,7 +269,8 @@
id: null, id: null,
type: null, type: null,
commissionType: 0, commissionType: 0,
proxyCommissionType:0 proxyCommissionType:0,
certifyStatus:null
}, },
canAdd: false, canAdd: false,
totalRows: 0, totalRows: 0,
...@@ -285,6 +302,28 @@ ...@@ -285,6 +302,28 @@
value: 2, value: 2,
label: "固定分佣" label: "固定分佣"
}], }],
storeTypeList: [
{
value: 1,
label: "未认证"
},
{
value: 2,
label: "认证提交中"
},
{
value: 3,
label: "认证通过"
},
{
value: 4,
label: "审核失败"
},
{
value: 5,
label: "作废"
},
],
setPriceVisible: false, setPriceVisible: false,
setPriceForm:{ setPriceForm:{
// commissionType: 1, // commissionType: 1,
......
Markdown 格式
0% or
您添加了 0 到此讨论。请谨慎行事。
先完成此消息的编辑!
想要评论请 注册