|
@@ -96,7 +96,7 @@
|
|
"
|
|
"
|
|
>重置</el-button
|
|
>重置</el-button
|
|
>
|
|
>
|
|
- <el-button type="primary" @click="getNoticeList">查询</el-button>
|
|
|
|
|
|
+ <el-button type="primary" @click="getNoticeLists">查询</el-button>
|
|
</div>
|
|
</div>
|
|
</el-form-item>
|
|
</el-form-item>
|
|
</el-col>
|
|
</el-col>
|
|
@@ -418,6 +418,18 @@ export default {
|
|
this.listLoading = false
|
|
this.listLoading = false
|
|
})
|
|
})
|
|
},
|
|
},
|
|
|
|
+ getNoticeLists(){
|
|
|
|
+ this.listLoading = true
|
|
|
|
+ getNoticeList({
|
|
|
|
+ pageNum: 1,
|
|
|
|
+ pageSize: this.pageSize2,
|
|
|
|
+ specification: this.form.specification
|
|
|
|
+ }).then(res => {
|
|
|
|
+ this.noticeList = res.data.records
|
|
|
|
+ this.listTotal2 = res.data.total
|
|
|
|
+ this.listLoading = false
|
|
|
|
+ })
|
|
|
|
+ },
|
|
handleNotice(flag = true) {
|
|
handleNotice(flag = true) {
|
|
if (flag || flag == 'click') {
|
|
if (flag || flag == 'click') {
|
|
if (flag == 'click') {
|
|
if (flag == 'click') {
|