Commit 5d4021d7 authored by 罗成兵's avatar 罗成兵

分配记录

parent b1d7d12f
...@@ -50,7 +50,7 @@ ...@@ -50,7 +50,7 @@
const columns = [ const columns = [
{ {
title: '发放单位', title: '发放单位',
dataIndex: 'sendUnitName', dataIndex: 'sendNodeName',
ellipsis: true ellipsis: true
}, },
{ {
......
...@@ -56,7 +56,7 @@ ...@@ -56,7 +56,7 @@
const columns = [ const columns = [
{ {
title: '收货单位', title: '收货单位',
dataIndex: 'receiveUnitName', dataIndex: 'receiveNodeName',
width:"240px", width:"240px",
ellipsis: true ellipsis: true
}, },
......
...@@ -445,7 +445,11 @@ ...@@ -445,7 +445,11 @@
}, },
getBookHtmlContent() {//获取用户知情书模板 getBookHtmlContent() {//获取用户知情书模板
this.$api.common.fetchConsentInfo().then(({data}) => { this.$api.common.fetchConsentInfo().then(({data}) => {
this.bookHtmlContent = data if (this.$api.utils.isBlank(data)){
this.bookHtmlContent={content:""}
}else {
this.bookHtmlContent = data;
}
}) })
}, },
getAllDoctorList() { getAllDoctorList() {
......
...@@ -3,7 +3,7 @@ ...@@ -3,7 +3,7 @@
<a-form layout="inline" class="search_form"> <a-form layout="inline" class="search_form">
<a-form-item label="证件号码"> <a-form-item label="证件号码">
<!--v-price="{digit:4}"--> <!--v-price="{digit:4}"-->
<a-input v-model="searchForm.idCar" placeholder="请输入证件号码" style="width: 250px"></a-input> <a-input v-model="searchForm.womenIdCard" placeholder="请输入证件号码" style="width: 250px"></a-input>
</a-form-item> </a-form-item>
<a-form-item> <a-form-item>
<!-- <a-button class="search_btn" @click="restSearchForm">读卡识别</a-button>--> <!-- <a-button class="search_btn" @click="restSearchForm">读卡识别</a-button>-->
...@@ -95,7 +95,7 @@ ...@@ -95,7 +95,7 @@
return { return {
// 搜索框对象 // 搜索框对象
searchForm: { searchForm: {
idCar:undefined womenIdCard:undefined
}, },
pagination: { pagination: {
pageIndex: 1, pageIndex: 1,
......
...@@ -217,9 +217,12 @@ ...@@ -217,9 +217,12 @@
} else { } else {
this.subLoad = true; this.subLoad = true;
let params = {} let params = {}
let reviceUnitName = this.childUnitList.filter(item => item.id == this.formData.receiveUnitId)[0].unitName let reviceUnitName = this.childUnitList.filter(item => item.id == this.formData.receiveUnitId)[0].unitName;
let treeNodeId = this.childUnitList.filter(item => item.id == this.formData.receiveUnitId)[0].treeNodeId;
params = { params = {
...this.formData, ...this.formData,
receiveNodeId:treeNodeId,
receiveNodeName:reviceUnitName,
sendDate: moment(this.formData.sendDate).format('yyyy-MM-DD'), sendDate: moment(this.formData.sendDate).format('yyyy-MM-DD'),
receiveUnitName: reviceUnitName receiveUnitName: reviceUnitName
}; };
......
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