|
@@ -5,7 +5,7 @@
|
|
|
<div>
|
|
|
<mySearch :SearchFields="searchFiled" @search="search" :searchValue="searchOption"></mySearch>
|
|
|
</div>
|
|
|
- <div>
|
|
|
+ <div class="margin-right_10">
|
|
|
<el-button type="primary" size="small" @click="handleAdd()">新增</el-button>
|
|
|
</div>
|
|
|
</el-header>
|
|
@@ -247,12 +247,12 @@ export default {
|
|
|
...this.queryParams,//分页信息
|
|
|
fileName:this.searchOption.referencesName,
|
|
|
// searchQuery: this.$commonJS.objectToString(this.searchOption || {}),//检索条件
|
|
|
- // orderDTOList: this.sort,//排序信息
|
|
|
+ orderDTOList: this.sort,//排序信息
|
|
|
}
|
|
|
this.loading = true
|
|
|
this.$api.getReferences(params).then(res => {
|
|
|
if (res.code == 200) {
|
|
|
- this.tableData = res.data
|
|
|
+ this.tableData = res.data.data
|
|
|
this.total = res.data.total
|
|
|
this.loading = false
|
|
|
}
|