GBC项目列表页面搜索功能增加入参projectName

This commit is contained in:
liu.xiaofeng@ebiz-digits.com
2024-02-23 11:29:08 +08:00
parent efb066a4e4
commit 9b736ac91c
2 changed files with 2 additions and 3 deletions

View File

@@ -267,7 +267,6 @@ export default {
"appntId": this.activeAppntId,
"connectContent": this.connectContent
}
console.log(this.activeAppntId)
getGBCappntConnectSave(params).then(res=>{
if(res.result == 0) {
this.$toast('保存成功')

View File

@@ -1,6 +1,6 @@
<template>
<div>
<van-search v-model="searchvalue" shape="round" background="#fff" placeholder="搜索项目名称"/>
<van-search v-model="searchvalue" shape="round" background="#fff" @search="getGBCprojectlistByYear" placeholder="搜索项目名称"/>
<div style="padding: 10px;">
<van-collapse v-for="item in yearList" :key="item.year" v-model="activeNames" style="margin-top: 10px;border-radius: 5px;">
<van-collapse-item :title="item.year" :name="item.year">
@@ -45,7 +45,7 @@ export default {
methods: {
getGBCprojectlistByYear(){
let params = {
projectName: this.searchvalue
}
getGBCprojectlistByYear(params).then(res=>{
if(res.result == '0') {