Commit cc9a8637 authored by 李苏's avatar 李苏 💬

搜索范围调整

parent 7f25fbde
...@@ -7,13 +7,15 @@ ...@@ -7,13 +7,15 @@
<el-col :span="3" class="search-col"> <el-col :span="3" class="search-col">
<div class="search-item"> <div class="search-item">
<span class="search-span">公司:</span> <span class="search-span">公司:</span>
<RelSelect clearable style="width: 100%;" src='/jcsj/common/bm/queryGs' :match="{value:'id',label:'bmmc'}" v-model="queryParams.gsid"></RelSelect> <RelSelect clearable style="width: 100%;" src='/jcsj/common/bm/queryGs' :match="{value:'id',label:'bmmc'}"
v-model="queryParams.gsid"></RelSelect>
</div> </div>
</el-col> </el-col>
<el-col :span="4" class="search-col"> <el-col :span="4" class="search-col">
<div class="search-item"> <div class="search-item">
<span class="search-span">任务类型:</span> <span class="search-span">任务类型:</span>
<RelSelect style="width: 100%;" src='aqgl/rcgl/lzbg/init/pc' clearable :match="{value:'id',label:'name'}" v-model='queryParams.pc' ></RelSelect> <RelSelect style="width: 100%;" src='aqgl/rcgl/lzbg/init/pc' clearable :match="{value:'id',label:'name'}"
v-model='queryParams.pc'></RelSelect>
</div> </div>
</el-col> </el-col>
<el-col :span="4" class="search-col"> <el-col :span="4" class="search-col">
...@@ -25,19 +27,20 @@ ...@@ -25,19 +27,20 @@
<el-col :span="4" class="search-col"> <el-col :span="4" class="search-col">
<div class="search-item"> <div class="search-item">
<span class="search-span">开始日期:</span> <span class="search-span">开始日期:</span>
<el-date-picker value-format="timestamp" v-model='queryParams.ksrq' ></el-date-picker> <el-date-picker value-format="timestamp" v-model='queryParams.ksrq'></el-date-picker>
</div> </div>
</el-col> </el-col>
<el-col :span="4" class="search-col"> <el-col :span="4" class="search-col">
<div class="search-item"> <div class="search-item">
<span class="search-span">结束日期:</span> <span class="search-span">结束日期:</span>
<el-date-picker value-format="timestamp" v-model='queryParams.jsrq' ></el-date-picker> <el-date-picker value-format="timestamp" v-model='queryParams.jsrq'></el-date-picker>
</div> </div>
</el-col> </el-col>
<el-col :span="4" class="search-col"> <el-col :span="4" class="search-col">
<div class="search-item"> <div class="search-item">
<span class="search-span">状态:</span> <span class="search-span">状态:</span>
<RelSelect src='aqgl/rcgl/lzbg/init/zt' clearable :match="{value:'id',label:'name'}" v-model='queryParams.zt'></RelSelect> <RelSelect src='aqgl/rcgl/lzbg/init/zt' clearable :match="{value:'id',label:'name'}"
v-model='queryParams.zt'></RelSelect>
</div> </div>
</el-col> </el-col>
</el-row> </el-row>
...@@ -49,7 +52,7 @@ ...@@ -49,7 +52,7 @@
<AddButton ref="add" :app='app'></AddButton> <AddButton ref="add" :app='app'></AddButton>
<CopyButton ref="copy" :app='app'></CopyButton> <CopyButton ref="copy" :app='app'></CopyButton>
<EditButton ref="edit" :app='app'></EditButton> <EditButton ref="edit" :app='app'></EditButton>
<AttachFileButton :app='app' ></AttachFileButton> <AttachFileButton :app='app'></AttachFileButton>
<FieldButton :app='app'></FieldButton> <FieldButton :app='app'></FieldButton>
<ExcelButton :app='app'></ExcelButton> <ExcelButton :app='app'></ExcelButton>
<!-- 额外按钮--> <!-- 额外按钮-->
...@@ -101,24 +104,66 @@ ...@@ -101,24 +104,66 @@
/* 查询参数*/ /* 查询参数*/
queryParams: { queryParams: {
lzfl: '', lzfl: '',
pc:'', pc: '',
zt:'', zt: '',
flName:'', flName: '',
gsid: '', gsid: '',
ksrq:new Date().getTime() - 1000*60*60*24, ksrq: '',
jsrq:new Date().getTime() jsrq: ''
}, },
/* 表格标题对应参数*/ /* 表格标题对应参数*/
tableTitle: [ tableTitle: [{
{label: "履职分类", prop: "flName", fieldType: "ftString",width:192}, label: "履职分类",
{label: "履职内容", prop: "content", fieldType: "ftString",width:300}, prop: "flName",
{label: "履职人员", prop: "ryName", fieldType: "ftString",width:192}, fieldType: "ftString",
{label: "频次", prop: "pc", fieldType: "ftString",width:192}, width: 192
{label: "公司", prop: "gsName", fieldType: "ftString",width:192}, },
{label: "单据来源", prop: "lyName", fieldType: "ftString",width:148}, {
{label: "状态", prop: "ztName", fieldType: "ftString",width:88}, label: "履职内容",
{label: "维护人", prop: "whr", fieldType: "ftString"}, prop: "content",
{label: "维护时间", prop: "whsj", fieldType: "ftDateTime"} fieldType: "ftString",
width: 300
},
{
label: "履职人员",
prop: "ryName",
fieldType: "ftString",
width: 192
},
{
label: "频次",
prop: "pc",
fieldType: "ftString",
width: 192
},
{
label: "公司",
prop: "gsName",
fieldType: "ftString",
width: 192
},
{
label: "单据来源",
prop: "lyName",
fieldType: "ftString",
width: 148
},
{
label: "状态",
prop: "ztName",
fieldType: "ftString",
width: 88
},
{
label: "维护人",
prop: "whr",
fieldType: "ftString"
},
{
label: "维护时间",
prop: "whsj",
fieldType: "ftDateTime"
}
] ]
} }
}, },
......
...@@ -112,8 +112,8 @@ ...@@ -112,8 +112,8 @@
/* 查询参数*/ /* 查询参数*/
queryParams: { queryParams: {
queryType:'YHFC', queryType:'YHFC',
ksrq: new Date().getTime()-1000*60*60*24*30, ksrq: '',
jsrq: new Date().getTime(), jsrq: '',
bmid:'', bmid:'',
sbr:'', sbr:'',
gsid:'' gsid:''
......
...@@ -157,8 +157,8 @@ ...@@ -157,8 +157,8 @@
bmid:'', bmid:'',
jcr:'', jcr:'',
zt:'', zt:'',
ksrq: new Date().getTime()-1000*60*60*24*30, ksrq: '',
jsrq: new Date().getTime() jsrq:''
}, },
/* 表格标题对应参数*/ /* 表格标题对应参数*/
tableTitle: [ tableTitle: [
......
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