Commit 5e2bcbd4 authored by youjie's avatar youjie

no message

parent 892de258
...@@ -627,7 +627,7 @@ ...@@ -627,7 +627,7 @@
class="row-c cursor-pointer radius5 cancel py5" class="row-c cursor-pointer radius5 cancel py5"
@click="clickRightButtom(item, 0)" @click="clickRightButtom(item, 0)"
> >
<i v-loading="msg.OrderId==item.Id&&loading0"></i> <i v-loading="msg.Id==item.Id&&loading0"></i>
<span class="cF1416C">取消订单</span> <span class="cF1416C">取消订单</span>
</div> </div>
<div <div
...@@ -635,7 +635,7 @@ ...@@ -635,7 +635,7 @@
class="row-c cursor-pointer radius5 confirm py5" class="row-c cursor-pointer radius5 confirm py5"
@click="clickRightButtom(item, 1)" @click="clickRightButtom(item, 1)"
> >
<i v-loading="msg.OrderId==item.Id&&loading1"></i> <i v-loading="msg.Id==item.Id&&loading1"></i>
<span class="c20C997">确认订单</span> <span class="c20C997">确认订单</span>
</div> </div>
<div <div
...@@ -643,7 +643,7 @@ ...@@ -643,7 +643,7 @@
class="row-c cursor-pointer radius5 change py5" class="row-c cursor-pointer radius5 change py5"
@click="driver(item)" @click="driver(item)"
> >
<i v-loading="msg.OrderId==item.Id&&loading2"></i> <i v-loading="msg.Id==item.Id&&loading2"></i>
<span class="c059FF6">{{item.DriverInfo?'编辑':'添加'}}司机/车牌号</span> <span class="c059FF6">{{item.DriverInfo?'编辑':'添加'}}司机/车牌号</span>
</div> </div>
<div <div
...@@ -665,7 +665,7 @@ ...@@ -665,7 +665,7 @@
class="row-c cursor-pointer radius5 change1 py5" class="row-c cursor-pointer radius5 change1 py5"
@click="clickRightButtom(item, 2)" @click="clickRightButtom(item, 2)"
> >
<i v-loading="msg.OrderId==item.Id&&loading2"></i> <i v-loading="msg.Id==item.Id&&loading2"></i>
<span class="c20C997">收损</span> <span class="c20C997">收损</span>
</div> </div>
</div> </div>
...@@ -993,7 +993,7 @@ ...@@ -993,7 +993,7 @@
}, },
userInfo: {}, userInfo: {},
msg: { msg: {
OrderId: "", Id: "",
LossMoney: 0, LossMoney: 0,
State: '',//状态 1确认 2已邮寄 3设置自提 4收损 State: '',//状态 1确认 2已邮寄 3设置自提 4收损
SelffetchAddress: '' SelffetchAddress: ''
...@@ -1184,7 +1184,7 @@ ...@@ -1184,7 +1184,7 @@
}, },
clickRightButtom(item, type) { clickRightButtom(item, type) {
// 0取消订单 1确认订单 2收损 // 0取消订单 1确认订单 2收损
this.msg.OrderId = item.Id; this.msg.Id = item.Id;
this.msg.SelffetchAddress = item.SelffetchAddress this.msg.SelffetchAddress = item.SelffetchAddress
this.items = item this.items = item
this.typeState = type this.typeState = type
...@@ -1440,7 +1440,7 @@ ...@@ -1440,7 +1440,7 @@
this.apipost( this.apipost(
"CarSingle_post_SetAdminCarOrderState", "CarSingle_post_SetAdminCarOrderState",
{ {
OrderId: this.msg.OrderId, Id: this.msg.Id,
State: this.typeState, State: this.typeState,
LossMoney: this.msg.LossMoney, LossMoney: this.msg.LossMoney,
}, },
......
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