Commit 184b112d by 曾经

异常会员 排序去掉

parent d2681ad1
......@@ -223,17 +223,6 @@ export default {
this.selectPage.dataReady = true;
});
},
sortChange(column) {
let { prop, order } = column;
this.searchData.sortColName = prop;
if (order === "descending") {
this.searchData.sortType = "desc";
}
if (order === "ascending") {
this.searchData.sortType = "asc";
}
this.getList();
},
// 搜索选项改变时
onSearchDataChange() {
......
......@@ -67,7 +67,6 @@
:data="list"
tooltip-effect="dark"
style="width: 100%"
@sort-change="sortChange"
>
<el-table-column type="selection" min-width="30" fixed="left">
</el-table-column>
......@@ -102,8 +101,6 @@
colum.code === 'name' ? 200 : colum.code == 'status' ? 170 : 140
"
:fixed="colum.code === 'name'"
:sortable="colum.isSort ? 'custom' : false"
:sort-orders="['descending', 'ascending']"
>
<template slot-scope="{ row }">
<!-- 基本信息 -->
......
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