张雄 3 years ago
parent 52427a3665
commit 7cf063ab8e

@ -36,7 +36,7 @@
</a-select-option>
</a-select>
<a-input-search style="width: 250px" placeholder="请输入关键词" enter-button v-model="searchTitle" @search="onSearch"></a-input-search>
<span class="s2">时间筛选</span>
<span class="s2">时间排序</span>
<v-tab-group :value="gValue" :style="{ background: 'transparent' }" :btns="btnTimes" @change="handlerSxTime"></v-tab-group>
<span class="s2">去重筛选</span>
<v-tab-group :value="gValue2" :style="{ background: 'transparent' }" :btns="btnTimes2" @change="handlerTime2"></v-tab-group>

@ -131,7 +131,6 @@ export default {
this.dxIndeterminate = !!this.diaoXing.length && this.diaoXing.length < this.plainOptions5.length;
this.dxCheckAll = this.diaoXing.length === this.plainOptions5.length;
this.doFormQS(this.diaoXing);
// this.form.sQingGan = this.diaoXing.toString();
}
this.form.iPageIndex = 1;
@ -196,6 +195,11 @@ export default {
},
//时间筛选
handlerSxTime(activeIndex) {
if(activeIndex == 0) {
this.columns[4].title = '发布时间'
} else {
this.columns[4].title = '入库时间'
}
this.form.iTimeType = activeIndex;
this.getTableData();
this.getListData();

Loading…
Cancel
Save