|
@@ -25,7 +25,7 @@
|
25
|
25
|
<li>
|
26
|
26
|
<el-input
|
27
|
27
|
placeholder="请输入用户名"
|
28
|
|
- v-model="userName"
|
|
28
|
+ v-model="name"
|
29
|
29
|
>
|
30
|
30
|
</el-input>
|
31
|
31
|
</li>
|
|
@@ -91,7 +91,7 @@ export default {
|
91
|
91
|
data () {
|
92
|
92
|
return {
|
93
|
93
|
total: 0,
|
94
|
|
- userName: '',
|
|
94
|
+ name: '',
|
95
|
95
|
mobile: '',
|
96
|
96
|
postData: { // 表格搜索条件
|
97
|
97
|
caseid: '',
|
|
@@ -134,7 +134,7 @@ export default {
|
134
|
134
|
return (this.cases.filter(x => x.CaseId === caseid)[0] || {}).CaseName
|
135
|
135
|
},
|
136
|
136
|
getList () { // 获取列表
|
137
|
|
- this.getHealthList({ ...this.postData, caseid: this.CaseId, phone: this.mobile, customerName: this.userName }).then((res) => {
|
|
137
|
+ this.getHealthList({ ...this.postData, caseid: this.CaseId, phone: this.mobile, name: this.name }).then((res) => {
|
138
|
138
|
this.currentList = this.list.list
|
139
|
139
|
this.postData.page = this.list.page
|
140
|
140
|
this.total = this.list.pagenum
|