feat: 汇总单号

dev2.5_scan
chenhc 3 months ago
parent 823f5e995b
commit 9410b60dc0

@ -142,6 +142,7 @@
v-if="panelALive" v-if="panelALive"
:prescribeData="curRow" :prescribeData="curRow"
:bizIds="bizIds" :bizIds="bizIds"
:summaryNoFlag=true
></prescribeOriginPanel> ></prescribeOriginPanel>
</el-tabs> </el-tabs>

@ -126,6 +126,10 @@ export default {
default: null, default: null,
required: true required: true
}, },
summaryNoFlag: {
type: Boolean,
default: false
},
}, },
@ -141,6 +145,7 @@ export default {
preTotal: 0, preTotal: 0,
preQuery: { preQuery: {
orderIdFk: null, orderIdFk: null,
summaryNoFlag: null,
page: 1, page: 1,
limit: 10, limit: 10,
bizIdList: [] bizIdList: []
@ -161,6 +166,7 @@ export default {
if (!this.hasPrescribeData) return if (!this.hasPrescribeData) return
this.preQuery.page = 1 this.preQuery.page = 1
this.preQuery.orderIdFk = this.prescribeData.billNo this.preQuery.orderIdFk = this.prescribeData.billNo
this.preQuery.summaryNoFlag = this.summaryNoFlag
this.preLoading = true this.preLoading = true
orderDetail(this.preQuery).then(res => { orderDetail(this.preQuery).then(res => {
if (res.code !== 20000) { if (res.code !== 20000) {

@ -262,6 +262,7 @@
<DevicesPannelOrderBiz <DevicesPannelOrderBiz
v-if="panelALive" v-if="panelALive"
:prescribeData="curRow" :prescribeData="curRow"
:summaryNoFlag=true
></DevicesPannelOrderBiz> ></DevicesPannelOrderBiz>
<!-- 在表格下方添加说明 --> <!-- 在表格下方添加说明 -->
<el-row style="text-align: right;font-size: 12px;margin-top: 10px"> <el-row style="text-align: right;font-size: 12px;margin-top: 10px">

Loading…
Cancel
Save