修改
This commit is contained in:
parent
556c3177e6
commit
376739137c
@ -59,10 +59,10 @@ export default {
|
|||||||
value: "BUSINESS",
|
value: "BUSINESS",
|
||||||
label: "买卖",
|
label: "买卖",
|
||||||
},
|
},
|
||||||
{
|
// {
|
||||||
value: "LEASE",
|
// value: "LEASE",
|
||||||
label: "租赁",
|
// label: "租赁",
|
||||||
},
|
// },
|
||||||
],
|
],
|
||||||
options: [{
|
options: [{
|
||||||
value: 0,
|
value: 0,
|
||||||
|
|||||||
@ -277,24 +277,24 @@
|
|||||||
</el-select>
|
</el-select>
|
||||||
</template>
|
</template>
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
<el-table-column label="积分兑换门槛值" align="center">
|
<el-table-column label="积分兑换数值" align="center">
|
||||||
<template slot-scope="scope">
|
<template slot-scope="scope">
|
||||||
<el-input
|
<el-input
|
||||||
:disabled="!scope.row.integralExchangeFlag?true:false"
|
:disabled="!scope.row.integralExchangeFlag?true:false"
|
||||||
v-model.number="scope.row.integralExchangeSill"
|
v-model.number="scope.row.integralExchangeSill"
|
||||||
oninput="value=value.replace(/[^\d]/g,'')"
|
oninput="value=value.replace(/[^\d]/g,'')"
|
||||||
placeholder="积分兑换门槛值"
|
placeholder="积分兑换数值"
|
||||||
maxLength="10"
|
maxLength="10"
|
||||||
></el-input>
|
></el-input>
|
||||||
</template>
|
</template>
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
<el-table-column label="积分兑换商品数量" align="center">
|
<el-table-column label="使用积分数量" align="center">
|
||||||
<template slot-scope="scope">
|
<template slot-scope="scope">
|
||||||
<el-input
|
<el-input
|
||||||
:disabled="!scope.row.integralExchangeFlag?true:false"
|
:disabled="!scope.row.integralExchangeFlag?true:false"
|
||||||
v-model.number="scope.row.integralExchangeCount"
|
v-model.number="scope.row.integralExchangeCount"
|
||||||
oninput="value=value.replace(/[^\d]/g,'')"
|
oninput="value=value.replace(/[^\d]/g,'')"
|
||||||
placeholder="积分兑换商品数量"
|
placeholder="使用积分数量"
|
||||||
maxLength="10"
|
maxLength="10"
|
||||||
></el-input>
|
></el-input>
|
||||||
</template>
|
</template>
|
||||||
|
|||||||
@ -324,7 +324,6 @@
|
|||||||
<el-form-item
|
<el-form-item
|
||||||
label="订单原始总金额"
|
label="订单原始总金额"
|
||||||
prop="originalTotalPrice"
|
prop="originalTotalPrice"
|
||||||
v-if="orderList.orderType == 'INTEGRAL_EXCHANGE'"
|
|
||||||
>
|
>
|
||||||
<el-input
|
<el-input
|
||||||
v-model="orderList.originalTotalPrice"
|
v-model="orderList.originalTotalPrice"
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user