|
|
|
@ -26,6 +26,10 @@
|
|
|
|
|
>查询
|
|
|
|
|
</el-button
|
|
|
|
|
>
|
|
|
|
|
<el-button type="primary" icon="el-icon-plus" @click="enterPatientInfo"
|
|
|
|
|
>录入患者信息
|
|
|
|
|
</el-button
|
|
|
|
|
>
|
|
|
|
|
</el-button-group>
|
|
|
|
|
</div>
|
|
|
|
|
</el-card>
|
|
|
|
@ -62,16 +66,114 @@
|
|
|
|
|
:sickerAdNum="this.sickerAdNum"
|
|
|
|
|
:viewType="2"
|
|
|
|
|
:errView="0"
|
|
|
|
|
:viewTypeKsck=true
|
|
|
|
|
></addOrder>
|
|
|
|
|
</el-dialog>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<el-dialog
|
|
|
|
|
title="录入患者信息"
|
|
|
|
|
:visible.sync="enterPatientInfoVisible"
|
|
|
|
|
width="30%"
|
|
|
|
|
append-to-body
|
|
|
|
|
:close-on-click-modal="false"
|
|
|
|
|
:close-on-press-escape="false"
|
|
|
|
|
v-if="enterPatientInfoVisible"
|
|
|
|
|
@close='closeDialog'
|
|
|
|
|
>
|
|
|
|
|
<el-form class="query-form" size="mini">
|
|
|
|
|
<!-- <el-form-item class="query-form-item" label-width="18%" label="患者编码:" :required="true">-->
|
|
|
|
|
<!-- <el-input-->
|
|
|
|
|
<!-- v-model="addInfo.code"-->
|
|
|
|
|
<!-- placeholder="请输入患者编码"-->
|
|
|
|
|
<!-- clearable-->
|
|
|
|
|
<!-- >-->
|
|
|
|
|
<!-- </el-input>-->
|
|
|
|
|
<!-- </el-form-item>-->
|
|
|
|
|
<el-form-item class="query-form-item" label-width="18%" label="姓 名:" :required="true">
|
|
|
|
|
<el-input
|
|
|
|
|
v-model="addInfo.name"
|
|
|
|
|
placeholder="请输入姓名"
|
|
|
|
|
clearable
|
|
|
|
|
>
|
|
|
|
|
</el-input>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
|
|
|
|
|
<el-form-item class="query-form-item" label-width="18%" label="住院号:" :required="true">
|
|
|
|
|
<el-input
|
|
|
|
|
v-model="addInfo.adNum"
|
|
|
|
|
placeholder="请输入住院号"
|
|
|
|
|
clearable
|
|
|
|
|
>
|
|
|
|
|
</el-input>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
|
|
|
|
|
<el-form-item class="query-form-item" label-width="18%" label="身份证号:" >
|
|
|
|
|
<el-input
|
|
|
|
|
v-model="addInfo.idNum"
|
|
|
|
|
placeholder="请输入身份证号"
|
|
|
|
|
clearable
|
|
|
|
|
>
|
|
|
|
|
</el-input>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
|
|
|
|
|
<el-form-item class="query-form-item" label-width="18%" label="手机号:" >
|
|
|
|
|
<el-input
|
|
|
|
|
v-model="addInfo.phone"
|
|
|
|
|
placeholder="请输入手机号"
|
|
|
|
|
clearable
|
|
|
|
|
>
|
|
|
|
|
</el-input>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
|
|
|
|
|
<el-form-item class="query-form-item" label-width="18%" label="性别:" >
|
|
|
|
|
<el-select v-model="addInfo.gender" placeholder="请输入性别">
|
|
|
|
|
<el-option label="男" value="男"></el-option>
|
|
|
|
|
<el-option label="女" value="女"></el-option>
|
|
|
|
|
</el-select>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
|
|
|
|
|
<el-form-item class="query-form-item" label-width="18%" label="出生年月:" >
|
|
|
|
|
<el-date-picker
|
|
|
|
|
v-model="addInfo.bornDate"
|
|
|
|
|
type="date"
|
|
|
|
|
placeholder="请输入出生年月"
|
|
|
|
|
clearable
|
|
|
|
|
value-format="yyyy-MM-dd"
|
|
|
|
|
>
|
|
|
|
|
</el-date-picker>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
|
|
|
|
|
<el-form-item class="query-form-item" label-width="18%" label="备注:">
|
|
|
|
|
<el-input
|
|
|
|
|
type="textarea"
|
|
|
|
|
v-model="addInfo.remark"
|
|
|
|
|
placeholder="备注"
|
|
|
|
|
clearable
|
|
|
|
|
>
|
|
|
|
|
</el-input>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
|
|
|
|
|
<el-form-item style="text-align: center;">
|
|
|
|
|
<el-button-group>
|
|
|
|
|
<el-button type="primary" @click="onInfoSubmit"
|
|
|
|
|
>提交
|
|
|
|
|
</el-button>
|
|
|
|
|
</el-button-group>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-form>
|
|
|
|
|
|
|
|
|
|
</el-dialog>
|
|
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<script>
|
|
|
|
|
import BaziPanel from '@/components/inout/baziPanel.vue'
|
|
|
|
|
import { getSkSickerList,getOrderListbyCode } from '@/api/inout/ioDepartmentOrder'
|
|
|
|
|
import { getSkSickerList,getOrderListbyCode,addInfoSkSicker,clickToTriggerbyCode } from '@/api/inout/ioDepartmentOrder'
|
|
|
|
|
import addOrder from "@/views/inout/DialogCreateOrder";
|
|
|
|
|
import {isBlank} from "@/utils/strUtil";
|
|
|
|
|
|
|
|
|
|
export default {
|
|
|
|
|
components: { BaziPanel,addOrder },
|
|
|
|
@ -96,6 +198,7 @@ export default {
|
|
|
|
|
},
|
|
|
|
|
sickerAdNum:null,
|
|
|
|
|
addOrderVisible: false,
|
|
|
|
|
enterPatientInfoVisible: false,
|
|
|
|
|
idQuery:{
|
|
|
|
|
billNo: null,
|
|
|
|
|
corpOrderId: null,
|
|
|
|
@ -116,21 +219,43 @@ export default {
|
|
|
|
|
preCurSpaceCode: null, //单据
|
|
|
|
|
sickerAdNum: null,
|
|
|
|
|
},
|
|
|
|
|
orderListDate:[]
|
|
|
|
|
orderListDate:[],
|
|
|
|
|
addInfo:{
|
|
|
|
|
code: null,
|
|
|
|
|
name: null,
|
|
|
|
|
adNum: null,
|
|
|
|
|
idNum: null,
|
|
|
|
|
phone: null,
|
|
|
|
|
gender: null,
|
|
|
|
|
bornDate: null,
|
|
|
|
|
remark: null,
|
|
|
|
|
deptName: this.$store.getters.locDeptName,
|
|
|
|
|
deptCode: this.$store.getters.locDeptCode
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
methods: {
|
|
|
|
|
getValue(info) {
|
|
|
|
|
getOrderListbyCode(info.adNum)
|
|
|
|
|
console.log(info)
|
|
|
|
|
let query = {
|
|
|
|
|
adNum: info.adNum
|
|
|
|
|
}
|
|
|
|
|
clickToTriggerbyCode(query).then( (response) => {
|
|
|
|
|
|
|
|
|
|
}).catch((error) => {
|
|
|
|
|
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
getOrderListbyCode(query)
|
|
|
|
|
.then((response) => {
|
|
|
|
|
if (response.code === 20000) {
|
|
|
|
|
this.orderListDate = response.data.list || []
|
|
|
|
|
this.orderListDate = response.data || []
|
|
|
|
|
if (this.orderListDate.length > 0){
|
|
|
|
|
this.idQuery = this.orderListDate[0]
|
|
|
|
|
}else {
|
|
|
|
|
this.idQuery.fromCorp = info.adNum
|
|
|
|
|
this.idQuery.sickerAdNum = info.adNum
|
|
|
|
|
this.sickerAdNum = info.adNum
|
|
|
|
|
this.idQuery.fromCorp = this.idQuery.fromCorp
|
|
|
|
|
this.idQuery.sickerAdNum = this.idQuery.sickerAdNum
|
|
|
|
|
this.sickerAdNum =this.idQuery.sickerAdNum
|
|
|
|
|
}
|
|
|
|
|
this.addOrderVisible = true
|
|
|
|
|
} else {
|
|
|
|
@ -141,10 +266,12 @@ export default {
|
|
|
|
|
this.list = []
|
|
|
|
|
this.total = 0
|
|
|
|
|
})
|
|
|
|
|
console.log(this.idQuery)
|
|
|
|
|
console.log("this.idQuery" + this.idQuery)
|
|
|
|
|
console.log("this.sickerAdNum" + this.sickerAdNum)
|
|
|
|
|
},
|
|
|
|
|
closeDialog() {
|
|
|
|
|
this.addOrderVisible = false;
|
|
|
|
|
this.enterPatientInfoVisible = false;
|
|
|
|
|
this.getList();
|
|
|
|
|
},
|
|
|
|
|
getList() {
|
|
|
|
@ -166,6 +293,44 @@ export default {
|
|
|
|
|
onSubmit() {
|
|
|
|
|
this.getList()
|
|
|
|
|
},
|
|
|
|
|
onInfoSubmit(){
|
|
|
|
|
if (isBlank(this.addInfo.name)) {
|
|
|
|
|
this.$message.error('姓名不能为空')
|
|
|
|
|
return
|
|
|
|
|
} else if (isBlank(this.addInfo.adNum)) {
|
|
|
|
|
this.$message.error('住院号不能为空')
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
addInfoSkSicker(this.addInfo).then((response) => {
|
|
|
|
|
if (response.code === 20000) {
|
|
|
|
|
this.$message.success(response.data)
|
|
|
|
|
this.addInfo = {
|
|
|
|
|
code: null,
|
|
|
|
|
name: null,
|
|
|
|
|
adNum: null,
|
|
|
|
|
idNum: null,
|
|
|
|
|
phone: null,
|
|
|
|
|
gender: null,
|
|
|
|
|
bornDate: null,
|
|
|
|
|
remark: null,
|
|
|
|
|
deptName: this.$store.getters.locDeptName,
|
|
|
|
|
deptCode: this.$store.getters.locDeptCode
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
this.closeDialog();
|
|
|
|
|
} else {
|
|
|
|
|
this.$message.error(response.message)
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
.catch((error) => {
|
|
|
|
|
this.$message.error(error.message)
|
|
|
|
|
|
|
|
|
|
})
|
|
|
|
|
},
|
|
|
|
|
enterPatientInfo(){
|
|
|
|
|
this.enterPatientInfoVisible = !this.enterPatientInfoVisible;
|
|
|
|
|
},
|
|
|
|
|
onReset() {
|
|
|
|
|
this.filterQuery = {
|
|
|
|
|
name: '',
|
|
|
|
@ -188,5 +353,5 @@ export default {
|
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
<style scoped>
|
|
|
|
|
|
|
|
|
|
</style>
|
|
|
|
|
|
|
|
|
|