feat: 进销存更新
This commit is contained in:
@@ -11,8 +11,8 @@
|
||||
<el-row>
|
||||
<el-form-item label="类型">
|
||||
<el-radio-group :model-value="type" @change="tabChange">
|
||||
<el-radio-button value="in">入库</el-radio-button>
|
||||
<el-radio-button value="out">出库</el-radio-button>
|
||||
<el-radio value="in">入库</el-radio>
|
||||
<el-radio value="out">出库</el-radio>
|
||||
</el-radio-group>
|
||||
</el-form-item>
|
||||
</el-row>
|
||||
@@ -45,6 +45,7 @@
|
||||
value-format="YYYY-MM-DD"
|
||||
placeholder="选择日期"
|
||||
style="width: 220px"
|
||||
disabled="false"
|
||||
/>
|
||||
</el-form-item>
|
||||
</el-col>
|
||||
@@ -110,11 +111,9 @@
|
||||
</el-form-item>
|
||||
</el-form>
|
||||
</div>
|
||||
<div class="head-container">
|
||||
<el-button type="primary" plain>
|
||||
共{{ tableData.list.length }}种耗材,金额合计
|
||||
<span style="color: red">¥{{ amountPayable }}</span>
|
||||
</el-button>
|
||||
<div style="font-weight: bold; font-size: 16px; color: #666">
|
||||
共{{ tableData.list.length }}种耗材,金额合计
|
||||
<span style="color: red">¥{{ amountPayable }}</span>
|
||||
</div>
|
||||
<div class="head-container">
|
||||
<el-table :data="tableData.list">
|
||||
@@ -123,6 +122,11 @@
|
||||
{{ scope.row.conName }}
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column label="所属分类">
|
||||
<template v-slot="scope">
|
||||
{{ scope.row.consGroupName }}
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column label="进价">
|
||||
<template v-slot="scope">
|
||||
<el-input-number v-model="scope.row.price" :min="0" controls-position="right" />
|
||||
|
||||
Reference in New Issue
Block a user