This commit is contained in:
lixuan
2023-02-22 10:14:10 +08:00
parent 1ccc6803e7
commit b3502c348d
6 changed files with 653 additions and 74 deletions

View File

@@ -137,7 +137,7 @@
<el-dropdown-item command="record">调价记录</el-dropdown-item>
</el-dropdown-menu>
</el-dropdown>
<span class="el-dropdown-link">下单</span>
<span class="el-dropdown-link" @click="updateCreate(row)">下单</span>
<el-dropdown
@command="
(val) => {
@@ -330,8 +330,16 @@ export default {
//下单
createOrder(row) {
this.controlWindows.addInfo.title = "创建订单";
this.controlWindows.create = true;
console.log(this.controlWindows.create);
},
//修改订单
updateCreate(row){
this.controlWindows.addInfo = {
title: "修改订单",
...row,
};
this.controlWindows.create = true;
},
//详情
detail(row) {