Commit 8540b271 authored by 黄奎's avatar 黄奎

页面修改

parent b8c2af43
......@@ -190,27 +190,27 @@
</template>
<el-table-column :render-header="renderHeader" label="价格">
<template slot-scope="scope">
<el-input v-model="scope.row.SellingPrice" size="small"></el-input>
<el-input v-model="scope.row.SellingPrice" @keyup.native="checkPrice(scope.row,'SellingPrice')" size="small"></el-input>
</template>
</el-table-column>
<el-table-column :render-header="renderHeader" label="库存">
<template slot-scope="scope">
<el-input v-model="scope.row.InventoryNum" size="small"></el-input>
<el-input v-model="scope.row.InventoryNum" @keyup.native="checkPrice(scope.row,'InventoryNum')" size="small"></el-input>
</template>
</el-table-column>
<el-table-column :render-header="renderHeader" label="成本价" width="90">
<template slot-scope="scope">
<el-input v-model="scope.row.CostMoney" size="small"></el-input>
<el-input v-model="scope.row.CostMoney" @keyup.native="checkPrice(scope.row,'CostMoney')" size="small"></el-input>
</template>
</el-table-column>
<el-table-column :render-header="renderHeader" v-if="FxState==1" width="120" label="返佣总金额">
<template slot-scope="scope">
<el-input v-model="scope.row.Commission" size="small"></el-input>
<el-input v-model="scope.row.Commission" @keyup.native="checkPrice(scope.row,'Commission')" size="small"></el-input>
</template>
</el-table-column>
<el-table-column label="重量(克)" width="90">
<template slot-scope="scope">
<el-input v-model="scope.row.GoodsWeight" size="small"></el-input>
<el-input v-model="scope.row.GoodsWeight" @keyup.native="checkPrice(scope.row,'GoodsWeight')" size="small"></el-input>
</template>
</el-table-column>
<el-table-column prop="address" label="货号">
......
......@@ -110,10 +110,10 @@
</td>
</template>
<td>
<el-input type="number" v-model="rootItem.PinTuanPrice" size="small" style="padding:0 10px" />
<el-input type="number" v-model="rootItem.PinTuanPrice" @keyup.native="checkPrice(rootItem,'PinTuanPrice')" size="small" style="padding:0 10px" />
</td>
<td>
<el-input type="number" v-model="rootItem.PinTuanStock" size="small" style="padding:0 10px" />
<el-input type="number" v-model="rootItem.PinTuanStock" @keyup.native="checkPrice(rootItem,'PinTuanStock')" size="small" style="padding:0 10px" />
</td>
</tr>
</tbody>
......
......@@ -24,7 +24,7 @@
</el-table-column>
<el-table-column label="团长优惠" width="200">
<template slot-scope="scope">
<el-input type="text" v-model="scope.row.Preferential_Price" size="small" placeholder="请输入团长优惠">
<el-input type="text" v-model="scope.row.Preferential_Price" @keyup.native="checkPrice(scope.row,'Preferential_Price')" size="small" placeholder="请输入团长优惠">
</el-input>
</template>
</el-table-column>
......
......@@ -48,7 +48,7 @@
<template v-for="(item, index) in configMemberList">
<el-table-column :key="index+'18'" :label="item.Name">
<template slot-scope="scope">
<el-input v-model="scope.row.GradeMemberPriceList[index].MemberPrice" size="small"></el-input>
<el-input v-model="scope.row.GradeMemberPriceList[index].MemberPrice" @keyup.native="checkPrice(scope.row.GradeMemberPriceList[index],'MemberPrice')" size="small"></el-input>
</template>
</el-table-column>
</template>
......
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