|
@@ -232,9 +232,12 @@
|
|
<Modal
|
|
<Modal
|
|
class="selection-modal"
|
|
class="selection-modal"
|
|
v-model="selectionModal"
|
|
v-model="selectionModal"
|
|
- :title="currencySelectedObj.title"
|
|
|
|
|
|
+
|
|
width="80%"
|
|
width="80%"
|
|
>
|
|
>
|
|
|
|
+ <div slot="header">
|
|
|
|
+ <h1>{{currencySelectedObj.title}}</h1>
|
|
|
|
+ </div>
|
|
<van-number-keyboard
|
|
<van-number-keyboard
|
|
:show="show"
|
|
:show="show"
|
|
@blur="show = false"
|
|
@blur="show = false"
|
|
@@ -562,9 +565,12 @@
|
|
class="selection-modal"
|
|
class="selection-modal"
|
|
v-model="roomModal"
|
|
v-model="roomModal"
|
|
@on-cancel ='handleRoomCancel'
|
|
@on-cancel ='handleRoomCancel'
|
|
- title="选择房间号"
|
|
|
|
|
|
+
|
|
width="80%"
|
|
width="80%"
|
|
>
|
|
>
|
|
|
|
+ <div slot="header">
|
|
|
|
+ <h1>选择房间号</h1>
|
|
|
|
+ </div>
|
|
<div class="selection-modal-body">
|
|
<div class="selection-modal-body">
|
|
<div
|
|
<div
|
|
:class="[
|
|
:class="[
|
|
@@ -577,7 +583,7 @@
|
|
@click="handleSelectedRoomClick(modalRoomList, block)"
|
|
@click="handleSelectedRoomClick(modalRoomList, block)"
|
|
>
|
|
>
|
|
<div>
|
|
<div>
|
|
- <span>{{ block.house }}</span>
|
|
|
|
|
|
+ <span style="font-size:25px">{{ block.house }}</span>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
@@ -589,18 +595,19 @@
|
|
:total="modal_room_total"
|
|
:total="modal_room_total"
|
|
/>
|
|
/>
|
|
</div>
|
|
</div>
|
|
- <div slot="footer">
|
|
|
|
|
|
+ <div slot="footer" style="display:flex;justify-content: space-around;">
|
|
<Button
|
|
<Button
|
|
@click="handleRoomCancel"
|
|
@click="handleRoomCancel"
|
|
type="primary"
|
|
type="primary"
|
|
- style="margin-right: 10px"
|
|
|
|
|
|
+ style="margin-right: 10px;width:20%;height:60px;font-size:29px"
|
|
>
|
|
>
|
|
返回
|
|
返回
|
|
</Button>
|
|
</Button>
|
|
- <Button @click="handlePrintComfirm(selectedObj, 1)" type="primary">
|
|
|
|
|
|
+ <Button @click="handlePrintComfirm(selectedObj, 1)" type="primary"
|
|
|
|
+ style="width:20%;height:60px;font-size:29px">
|
|
芯片打印
|
|
芯片打印
|
|
</Button>
|
|
</Button>
|
|
- <Button @click="Print(selectedObj, 1)" type="primary">
|
|
|
|
|
|
+ <Button @click="Print(selectedObj, 1)" type="primary" style="width:20%;height:60px;font-size:29px">
|
|
标签打印
|
|
标签打印
|
|
</Button>
|
|
</Button>
|
|
|
|
|
|
@@ -1243,6 +1250,9 @@ export default {
|
|
this.selectedInfo.order_no = this.chooseOrderNo.order_no;
|
|
this.selectedInfo.order_no = this.chooseOrderNo.order_no;
|
|
this.selectedInfo.residential_name = this.chooseOrderNo.residential_name;
|
|
this.selectedInfo.residential_name = this.chooseOrderNo.residential_name;
|
|
this.selectionModal = false;
|
|
this.selectionModal = false;
|
|
|
|
+ this.selectedAll = false;
|
|
|
|
+ this.contentData = [];
|
|
|
|
+ this.selectedInfo.url_number = '';
|
|
row.list.map(v=>{
|
|
row.list.map(v=>{
|
|
if(v.isCurrent){
|
|
if(v.isCurrent){
|
|
order_no = v.order_no;
|
|
order_no = v.order_no;
|
|
@@ -1250,6 +1260,7 @@ export default {
|
|
})
|
|
})
|
|
this.handleGetType(order_no);
|
|
this.handleGetType(order_no);
|
|
} else if (row.type == 2) {
|
|
} else if (row.type == 2) {
|
|
|
|
+ this.selectedAll = false;
|
|
this.selectedInfo.url_number = this.chooseUrlNo.url_number;
|
|
this.selectedInfo.url_number = this.chooseUrlNo.url_number;
|
|
this.selectedInfo.product_id = this.chooseUrlNo.product_id;
|
|
this.selectedInfo.product_id = this.chooseUrlNo.product_id;
|
|
this.selectionDetailModal = false;
|
|
this.selectionDetailModal = false;
|