Commit c2ea363f by 何为

修改健康资讯推送里列表查询条件

parent f40c1a6e
...@@ -602,8 +602,8 @@ export default { ...@@ -602,8 +602,8 @@ export default {
} }
}, },
created () { created () {
console.log('----------------' , store.getters) console.log('----------------', store.getters)
if(this.$route.query.orgId) { if (this.$route.query.orgId) {
this.orgId = parseInt(this.$route.query.orgId) this.orgId = parseInt(this.$route.query.orgId)
} }
console.log('created') console.log('created')
...@@ -835,7 +835,7 @@ export default { ...@@ -835,7 +835,7 @@ export default {
this.BaseValidateChooseImg() this.BaseValidateChooseImg()
}, },
// 总体校验 // 总体校验
Validator() { Validator () {
// 身份证字段校验 // 身份证字段校验
const _idCardFlag = this.BaseForm.idCard const _idCardFlag = this.BaseForm.idCard
if (!_idCardFlag) { if (!_idCardFlag) {
...@@ -849,8 +849,8 @@ export default { ...@@ -849,8 +849,8 @@ export default {
return false return false
} }
const _baseIdCardFlag = this.BaseValidateIdCard() const _baseIdCardFlag = this.BaseValidateIdCard()
if(_baseIdCardFlag) { if (_baseIdCardFlag) {
if (_baseIdCardFlag.error == '不通过') { if (_baseIdCardFlag.error === '不通过') {
this.error.idCard = _baseIdCardFlag.errorText this.error.idCard = _baseIdCardFlag.errorText
this.BaseValidate.idCardState = false this.BaseValidate.idCardState = false
this.$toast({ this.$toast({
...@@ -992,16 +992,16 @@ export default { ...@@ -992,16 +992,16 @@ export default {
// return true // return true
}, },
// 根据身份证号查询身份信息 // 根据身份证号查询身份信息
getManualPriKey() { getManualPriKey () {
let params = { let params = {
idCard: this.BaseForm.idCard idCard: this.BaseForm.idCard
} }
getManualByPriKey(params).then(res => { getManualByPriKey(params).then(res => {
if(res.code === 200) { if (res.code === 200) {
if(res.records.name) { if (res.records.name) {
this.BaseForm.name = res.records.name this.BaseForm.name = res.records.name
} }
if(res.records.lastMensesTime) { if (res.records.lastMensesTime) {
this.BaseForm.lastMensesTime = res.records.lastMensesTime this.BaseForm.lastMensesTime = res.records.lastMensesTime
} }
} }
......
...@@ -326,7 +326,7 @@ export default { ...@@ -326,7 +326,7 @@ export default {
getContentListByMakeIdFn () { getContentListByMakeIdFn () {
let params = { let params = {
curPage: 1, curPage: 1,
pageSize: 10 pageSize: 50
} }
this.contentMessageSpinner = true this.contentMessageSpinner = true
getContentListByMakeId(this.makeId, params).then(res => { getContentListByMakeId(this.makeId, params).then(res => {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment