|
@@ -144,6 +144,7 @@
|
|
|
<el-radio-button label="压力"></el-radio-button>
|
|
|
<el-radio-button label="焦虑"></el-radio-button>
|
|
|
<el-radio-button label="精神障碍"></el-radio-button>
|
|
|
+ <!-- <el-radio-button label="其他"></el-radio-button> -->
|
|
|
</el-radio-group>
|
|
|
</div>
|
|
|
|
|
@@ -864,6 +865,7 @@ export default {
|
|
|
);
|
|
|
},
|
|
|
userTypeChange(val) {
|
|
|
+ console.log(this.userType)
|
|
|
this.pageNum = 1;
|
|
|
if (val == "心理异常") {
|
|
|
this.getAbnormalList();
|
|
@@ -909,7 +911,15 @@ export default {
|
|
|
|
|
|
handleCurrentChange(val) {
|
|
|
this.pageNum = val;
|
|
|
- this.searchList();
|
|
|
+ if(this.userType=='心理异常'){
|
|
|
+ this.getAbnormalList();
|
|
|
+ }else if(this.userType=="压力"){
|
|
|
+ //---
|
|
|
+ this.getDimensionPeopleList("躯体化");
|
|
|
+ }else {
|
|
|
+ this.getDimensionPeopleList(this.userType);
|
|
|
+ }
|
|
|
+ // this.searchList();
|
|
|
},
|
|
|
formaCom(val) {
|
|
|
if (val.isComplete == "0") {
|