feature/task1.0.0__0514__ch
向文可 2 years ago
parent ee8cb375f6
commit 05515965a4

@ -18,10 +18,17 @@
<el-input v-model="state.condition.name" />
</el-form-item>
<el-form-item label="商品分类" prop="categoryId">
<el-select
<el-cascader
v-model="state.condition.categoryId"
:config="{ label: 'name', value: 'id' }"
:opts="opts.category"
:options="opts.category"
:props="{
checkStrictly: true,
expandTrigger: 'hover',
label: 'name',
value: 'id',
children: 'childList',
emitPath: false,
}"
/>
</el-form-item>
</el-form>

@ -29,8 +29,8 @@
>
<template #search>
<el-form inline>
<el-form-item label="服务单号" prop="orderNo">
<el-input v-model="state.condition.orderNo" />
<el-form-item label="服务单号" prop="refundNo">
<el-input v-model="state.condition.refundNo" />
</el-form-item>
<el-form-item label="售后类型" prop="refundType">
<el-select v-model="state.condition.refundType" :opts="opts.type" />
@ -72,7 +72,7 @@
/* 查询订单 */
const state = reactive({
condition: {
orderNo: null,
refundNo: null,
userPhone: null,
orderSource: null,
refundStatus: [0],
@ -97,7 +97,7 @@
);
const handleReset = () => {
state.condition = {
orderNo: null,
refundNo: null,
userPhone: null,
orderSource: null,
refundStatus: [0],

Loading…
Cancel
Save