搜索提示

master
yujialong 4 years ago
parent 2feb9dd602
commit 148c6df2bb
  1. 2
      src/views/Home.vue
  2. 7
      src/views/List.vue

@ -10,7 +10,7 @@
<div class="footer"> <div class="footer">
<div class="flex-end"> <div class="flex-end">
<div> <div>
<el-input placeholder="请输入考核名称" prefix-icon="el-icon-search" v-model="keyword" clearable></el-input> <el-input placeholder="请输入判分点名称" prefix-icon="el-icon-search" v-model="keyword" clearable></el-input>
</div> </div>
</div> </div>
<div class="flex footer_h"> <div class="flex footer_h">

@ -10,7 +10,7 @@
<div class="footer"> <div class="footer">
<div class="flex-end"> <div class="flex-end">
<div> <div>
<el-input placeholder="请输入考核名称" prefix-icon="el-icon-search" v-model="keyword" clearable></el-input> <el-input placeholder="请输入判分点名称" prefix-icon="el-icon-search" v-model="keyword" clearable></el-input>
</div> </div>
</div> </div>
<div class="flex footer_h"> <div class="flex footer_h">
@ -115,13 +115,15 @@ export default {
}, },
handleCurrentChange(val) { handleCurrentChange(val) {
this.$get(this.api.queryUserIds).then(res => {
this.pageNo = val; this.pageNo = val;
let data = { let data = {
systemId: this.systemId, systemId: this.systemId,
userId: this.userId, userId: this.userId,
pageNum: this.pageNo, pageNum: this.pageNo,
pageSize: this.pageSize, pageSize: this.pageSize,
judgmentPointsName: this.keyword judgmentPointsName: this.keyword,
userIdList: res.message.retvalue.join()
} }
this.$get(this.api.queryListTrading,data) this.$get(this.api.queryListTrading,data)
.then(res => { .then(res => {
@ -131,6 +133,7 @@ export default {
.catch(err => { .catch(err => {
console.log(err); console.log(err);
}); });
}).catch(res => {})
}, },
// setCookie(name, value) { // setCookie(name, value) {
// if (value) { // if (value) {

Loading…
Cancel
Save