医生提交1212

This commit is contained in:
zoujiandong
2023-12-12 10:58:58 +08:00
parent 1e9ea2a70f
commit 89be7ccae1
30 changed files with 1083 additions and 157 deletions
+13
View File
@@ -898,6 +898,19 @@ doctorSendUnfilled(params) {//医生发送缺少字段至患者
}
})
}
getNation() {//获取名族
return this.request({
url: `${this.baseUrl}/basic/nation`,
method: 'GET'
})
}
getJob() {//获取职业
return this.request({
url: `${this.baseUrl}/basic/job`,
method: 'GET'
})
}
+1
View File
@@ -6,6 +6,7 @@ var filters = {//截取字符串返回
//也可做一些判断 //我不需要所以没做其他处理,直接返回的
return str.substring(start,end);
}
}
module.exports = {
substring:filters.substring