Commit e4316404 authored by 康振飞's avatar 康振飞

订单管理-高级搜索按钮bug处理

parent 133297af
<template>
<div>
<div class="heigh_search">
<div style="display:inline-flex;">
<Input search enter-button placeholder="订单编号、产品编码..." @on-search="easySearch" v-model="value" />&nbsp;&nbsp;
<Button @click="open" type="text"><Icon type="md-search" />高级</Button>
<Input class="mr5" search enter-button placeholder="订单编号、产品编码..." @on-search="easySearch" v-model="value" />
<!-- <Input v-model="value" placeholder="关键字" style="width:300px;" :clearable='true'>
<Button @click="easySearch" icon="ios-search-outline" slot="append" style="width:40px;background-color:#249E91;color:#FFF;"></Button>
</Input> -->
</div>
<Button @click="open" class="mt_btn" type="primary">高级搜索</Button>
<!-- 右侧按钮 -->
<slot name="button"></slot>
<!-- 弹出高级搜索框 -->
<Modal v-model="modalShow" title="高级搜索" :mask-closable="false" width="800">
<Form :model="orderSearchForm" ref="orderSearchForm" :label-width="100" inline>
<slot name="search"></slot>
</Form>
</Form>
<div slot="footer" >
<Button @click="close" style="margin-left:20px;">取消</Button>
<!-- <Button @click="formReset" style="margin-left:20px;">重置</Button> -->
<Button @click="complexSearch" type="primary" style="margin-left:10px;">查询</Button>
<Button @click="complexSearch" type="success" style="margin-left:10px;">查询</Button>
<!-- <Checkbox v-model="saveLog" label="保存此次搜索" style="margin-left:20px;">保存此次搜索</Checkbox> -->
</div>
</Modal>
......@@ -50,9 +50,13 @@ export default {
this.close();
},
formReset(){
this.$emit('formReset');
}
}
}
</script>
<style scoped>
.heigh_search .mt_btn{
margin: -23px 0 0 0;
}
</style>
......@@ -99,14 +99,14 @@
<!-- {{peploeId}} @on-change="setpepoleid" @on-change="setpepoleids"-->
<Row :gutter="15">
<Col span="8" class="dispatch_card02" v-for="(item,index) in listMan" :key="index">
<!-- <Tooltip :content="item.userName"> -->
<CheckboxGroup class="man_body">
<Checkbox v-model="item.checked" border class='checkUser'>
<!-- <Tooltip :content="item.userName" placement="top-start"> -->
<span class="svg_name" :title='item.userName'>{{item.userName}}</span>
<!-- <span class="svg">{{item.id}}</span> -->
<!-- </Tooltip> -->
</Checkbox>
</CheckboxGroup>
<!-- </Tooltip> -->
</Col>
</Row>
</div>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment