|
|
|
@ -99,17 +99,23 @@ |
|
|
|
|
</el-table-column> |
|
|
|
|
<el-table-column prop="refineryLevel" label="成本价" width="70"> |
|
|
|
|
<template slot-scope="{ row }"> |
|
|
|
|
{{ row.floorPrice|toNumberFixed }}/{{ row.measurement|toNumberFixed }} |
|
|
|
|
{{ row.floorPrice | toNumberFixed }}/{{ |
|
|
|
|
row.measurement | toNumberFixed |
|
|
|
|
}} |
|
|
|
|
</template> |
|
|
|
|
</el-table-column> |
|
|
|
|
<el-table-column prop="refineryLevel" label="企业销售价" width="100"> |
|
|
|
|
<template slot-scope="{ row }"> |
|
|
|
|
{{ row.salePrice2company|toNumberFixed }}/{{ row.measurement|toNumberFixed }} |
|
|
|
|
{{ row.salePrice2company | toNumberFixed }}/{{ |
|
|
|
|
row.measurement | toNumberFixed |
|
|
|
|
}} |
|
|
|
|
</template> |
|
|
|
|
</el-table-column> |
|
|
|
|
<el-table-column prop="refineryLevel" label="个人销售价" width="100"> |
|
|
|
|
<template slot-scope="{ row }"> |
|
|
|
|
{{ row.salePrice2personal|toNumberFixed }}/{{ row.measurement|toNumberFixed }} |
|
|
|
|
{{ row.salePrice2personal | toNumberFixed }}/{{ |
|
|
|
|
row.measurement | toNumberFixed |
|
|
|
|
}} |
|
|
|
|
</template> |
|
|
|
|
</el-table-column> |
|
|
|
|
<el-table-column label="时间" width="235"> |
|
|
|
@ -142,7 +148,12 @@ |
|
|
|
|
<el-dropdown-item command="record">调价记录</el-dropdown-item> |
|
|
|
|
</el-dropdown-menu> |
|
|
|
|
</el-dropdown> |
|
|
|
|
<span v-show="row.enableMark=='ENABLE'" class="el-dropdown-link" @click="updateCreate(row)">下单</span> |
|
|
|
|
<span |
|
|
|
|
v-show="row.enableMark == 'ENABLE'" |
|
|
|
|
class="el-dropdown-link" |
|
|
|
|
@click="updateCreate(row)" |
|
|
|
|
>下单</span |
|
|
|
|
> |
|
|
|
|
<el-dropdown |
|
|
|
|
@command=" |
|
|
|
|
(val) => { |
|
|
|
@ -232,13 +243,15 @@ export default { |
|
|
|
|
autocomplete, |
|
|
|
|
generalDetails, |
|
|
|
|
}, |
|
|
|
|
filters:{ |
|
|
|
|
toNumberFixed(val){ |
|
|
|
|
if(val){ |
|
|
|
|
return Number(val).toFixed(2) |
|
|
|
|
}else{return '暂无'} |
|
|
|
|
filters: { |
|
|
|
|
toNumberFixed(val) { |
|
|
|
|
if (val) { |
|
|
|
|
return Number(val).toFixed(2); |
|
|
|
|
} else { |
|
|
|
|
return "暂无"; |
|
|
|
|
} |
|
|
|
|
}, |
|
|
|
|
}, |
|
|
|
|
data() { |
|
|
|
|
return { |
|
|
|
|
controlWindows: { |
|
|
|
@ -347,19 +360,19 @@ export default { |
|
|
|
|
|
|
|
|
|
//下单 |
|
|
|
|
createOrder(row) { |
|
|
|
|
this.controlWindows.addInfo = {} |
|
|
|
|
this.controlWindows.addInfo = {}; |
|
|
|
|
this.controlWindows.addInfo.title = "创建订单"; |
|
|
|
|
this.controlWindows.create = true; |
|
|
|
|
console.log(this.controlWindows,'新增') |
|
|
|
|
console.log(this.controlWindows, "新增"); |
|
|
|
|
}, |
|
|
|
|
//修改订单 |
|
|
|
|
updateCreate(row){ |
|
|
|
|
updateCreate(row) { |
|
|
|
|
this.controlWindows.addInfo = { |
|
|
|
|
title: "创建订单", |
|
|
|
|
...row, |
|
|
|
|
}; |
|
|
|
|
this.controlWindows.create = true; |
|
|
|
|
console.log('修改') |
|
|
|
|
console.log("修改"); |
|
|
|
|
}, |
|
|
|
|
//详情 |
|
|
|
|
detail(row) { |
|
|
|
@ -390,17 +403,32 @@ export default { |
|
|
|
|
}, |
|
|
|
|
//启用禁用 |
|
|
|
|
switchTrigger(val, row) { |
|
|
|
|
row.enableMark = row.enableMark; |
|
|
|
|
row.enableMark = val === "ENABLE" ? "DISENABLE" : "ENABLE"; |
|
|
|
|
// return; |
|
|
|
|
serve |
|
|
|
|
.update({ |
|
|
|
|
.updateBatchEnable([ |
|
|
|
|
{ |
|
|
|
|
id: row.id, |
|
|
|
|
enableMark: val, |
|
|
|
|
}) |
|
|
|
|
}, |
|
|
|
|
]) |
|
|
|
|
.then((res) => { |
|
|
|
|
if (res.code === 20000) { |
|
|
|
|
this.getByPage(); |
|
|
|
|
} else this.$message.error(res.msg); |
|
|
|
|
} |
|
|
|
|
// this.$message.success(res.msg); |
|
|
|
|
// this.closeWindow(); |
|
|
|
|
}); |
|
|
|
|
// serve |
|
|
|
|
// .update({ |
|
|
|
|
// id: row.id, |
|
|
|
|
// enableMark: val, |
|
|
|
|
// }) |
|
|
|
|
// .then((res) => { |
|
|
|
|
// if (res.code === 20000) { |
|
|
|
|
// this.getByPage(); |
|
|
|
|
// } else this.$message.error(res.msg); |
|
|
|
|
// }); |
|
|
|
|
}, |
|
|
|
|
//批量启用禁用 |
|
|
|
|
batchHandler() { |
|
|
|
|