Commit e2abf7f0 by duanguohui

cpymb

parent 628cdf18
......@@ -117,6 +117,10 @@
<el-col :span="3" class="align-right padding-right10">支付方式:</el-col>
<el-col :span="5">{{orderObg.payType}}</el-col>
</el-row>
<el-row v-if="orderObg.type == 'WM'">
<el-col :span="3" class="align-right padding-right10">取餐地点:</el-col>
<el-col :span="20">南楼一楼大厅</el-col>
</el-row>
<el-row v-if="orderObg.type == 'CS'">
<el-col :span="3" class="align-right padding-right10">工号:</el-col>
<el-col :span="5">{{orderObg.userNo}}</el-col>
......
......@@ -274,6 +274,19 @@ export default {
this.getOrderList()
})
},
orderFH (id, e) {
e.stopPropagation()
this.$axios({
method: 'post',
url: '/pc/trade/update/fh',
data: {
id: id,
userName: JSON.parse(window.localStorage.getItem('userInfo')).data.userResponse.userName
}
}).then((res) => {
this.getOrderList()
})
},
orderComplete (id, e) { // 完成
e.stopPropagation()
this.$axios({
......
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 sign in to comment