|
|
|
@ -30,7 +30,7 @@ |
|
|
|
<span>检查状态:</span> |
|
|
|
<el-select v-model="patientRegister.query.completeFlag" placeholder="请选择" clearable style="width: 80px" |
|
|
|
size="small"> |
|
|
|
<el-option v-for="item in dict.completeFlag" :key="item.id" :label="item.displayName" :value="item.id"> |
|
|
|
<el-option v-for="item in local.completeFlag" :key="item.id" :label="item.displayName" :value="item.id"> |
|
|
|
</el-option> |
|
|
|
</el-select> |
|
|
|
<el-select v-model="patientRegister.query.isAudit" placeholder="请选择" clearable style="width: 75px;margin: 0 2px;" |
|
|
|
@ -104,7 +104,7 @@ |
|
|
|
</div> |
|
|
|
</template> |
|
|
|
</el-table-column> |
|
|
|
<el-table-column prop="email" label="邮箱" width="100" /> |
|
|
|
<el-table-column prop="email" label="邮箱" width="150" /> |
|
|
|
<el-table-column prop="mobileTelephone" label="手机" width="100" /> |
|
|
|
<el-table-column prop="telephone" label="电话" width="100" /> |
|
|
|
<el-table-column prop="address" label="地址" width="300" /> |
|
|
|
@ -174,7 +174,7 @@ |
|
|
|
import moment from "moment"; |
|
|
|
import { mapState, mapMutations } from "vuex"; |
|
|
|
import { getapi, postapi, putapi, deletapi } from "@/api/api"; |
|
|
|
import { dddw, objCopy, arrayReduce } from "@/utlis/proFunc"; |
|
|
|
import { dddw, objCopy, arrayReduce,deepCopy } from "../../utlis/proFunc" |
|
|
|
|
|
|
|
|
|
|
|
import CusOrgOCX from "../../components/report/CusOrgOCX.vue" |
|
|
|
@ -195,7 +195,8 @@ export default { |
|
|
|
query:{ |
|
|
|
haveImage:false, |
|
|
|
checkAsb:'', //检查项目 |
|
|
|
} |
|
|
|
}, |
|
|
|
completeFlag:[] |
|
|
|
}, |
|
|
|
|
|
|
|
quickAsb: [], |
|
|
|
@ -224,6 +225,8 @@ export default { |
|
|
|
} |
|
|
|
}); |
|
|
|
|
|
|
|
this.local.completeFlag = deepCopy(this.dict.completeFlag) |
|
|
|
this.local.completeFlag.splice(0,1) //预记选项去掉 |
|
|
|
}, |
|
|
|
|
|
|
|
//快速选择组合项目时,调整可按拼间简码及简称查找 |
|
|
|
@ -329,6 +332,7 @@ export default { |
|
|
|
if(this.local.query.haveImage) body.isPicture = 'Y' |
|
|
|
|
|
|
|
body.maxResultCount = 1000 |
|
|
|
body.isFilterPreRegistration = 'Y' //是否需要过滤预登记数据 Y=过滤预登记数据 N=不过滤 默认为N (备注:只有CompleteFlag参数的值不为0的情况才有效,null值也有效) |
|
|
|
// "patientName": "string", |
|
|
|
// "sexId": "string", |
|
|
|
// "isAudit": "string", |
|
|
|
|