结算状态

master
lion 3 days ago
parent 0254789b3a
commit fe5b694ac1

@ -258,6 +258,19 @@
</Option>
</Select>
</div>
<div>
<span style="padding: 0 6px; word-break: keep-all">结算状态</span>
<Select
v-model="select.is_end"
clearable
placeholder="请选择"
style="width: 100px"
>
<Option :value="0">未结清</Option>
<Option :value="1">已结清</Option>
</Select>
</div>
</div>
</xy-selectors>
@ -1335,7 +1348,8 @@ export default {
start_plan_price: undefined,
end_plan_price: undefined,
is_myself: 0,
is_simple: 0
is_simple: 0,
is_end: ""
},
selectCopy: {
keyword: "",
@ -1354,7 +1368,8 @@ export default {
start_plan_price: undefined,
end_plan_price: undefined,
is_myself: 0,
is_simple: 0
is_simple: 0,
is_end: ""
},
type: [
{
@ -2482,8 +2497,9 @@ export default {
} else if (key === 'page_size') {
url += '&page_size=9999';
} else {
if (this.select[key]) {
url += "&" + key + "=" + this.select[key];
const v = this.select[key];
if (v != null && v !== '') {
url += "&" + key + "=" + v;
}
}
});

Loading…
Cancel
Save