|
|
@@ -109,10 +109,10 @@
|
|
|
<el-popover
|
|
|
placement="top"
|
|
|
width="160"
|
|
|
- v-model="visible">
|
|
|
+ v-model="confirmSendVisit">
|
|
|
<p>确认送达?</p>
|
|
|
<div style="text-align: right; margin: 0">
|
|
|
- <el-button size="mini" type="text" @click="visible = false">取消</el-button>
|
|
|
+ <el-button size="mini" type="text" @click="confirmSendVisit = false">取消</el-button>
|
|
|
<el-button type="primary" size="mini" @click="orderReachFn">确定</el-button>
|
|
|
</div>
|
|
|
<el-button slot="reference" class="el-button el-button--primary" >确认送达</el-button>
|
|
|
@@ -466,6 +466,7 @@ export default {
|
|
|
// dialog
|
|
|
// 打单信息
|
|
|
relateData: {},
|
|
|
+ confirmSendVisit:false,
|
|
|
orderDialog: false,
|
|
|
orderForm: {
|
|
|
receiveUserName: '', // 收花人姓名;到店自提的姓名
|
|
|
@@ -668,6 +669,7 @@ export default {
|
|
|
this.$service.single.orderReach({ id: this.orderData.id, option: 1 }).then(res => {
|
|
|
this.$message.success('已确认!');
|
|
|
this.getDet();
|
|
|
+ confirmSendVisit=false;
|
|
|
});
|
|
|
},
|
|
|
// 订单分类
|