|
@@ -38,12 +38,12 @@
|
|
|
>
|
|
|
<el-table-column label="品号" prop="bomColorCode" width="130" />
|
|
|
<el-table-column label="品名" prop="bomColorName" min-width="180" />
|
|
|
- <el-table-column label="颜色" prop="color" width="140" />
|
|
|
+ <!-- <el-table-column label="颜色" prop="color" width="140" />
|
|
|
<el-table-column label="尺寸(长宽高,cm)" width="140">
|
|
|
<template slot-scope="scope">
|
|
|
<span>{{ `${scope.row.productLong} *${scope.row.productWide}*${scope.row.productHigh}` }} </span>
|
|
|
</template>
|
|
|
- </el-table-column>
|
|
|
+ </el-table-column> -->
|
|
|
<el-table-column label="含税单价" width="100">
|
|
|
<template slot-scope="scope">
|
|
|
<span>¥{{ moneyFormat(scope.row.price, 3) }}</span>
|
|
@@ -183,7 +183,7 @@
|
|
|
|
|
|
<script>
|
|
|
import * as API from '@/api/shengde/productionSystem/purchase/salesReturn'
|
|
|
-import { purchaseContractList, purchaseContractDetail } from '@/api/shengde/productionSystem/purchase/contract'
|
|
|
+import { purchaseContractGetList, purchaseContractDetail } from '@/api/shengde/productionSystem/purchase/contract'
|
|
|
import LabelTemplate from '@/components/LabelTemplate'
|
|
|
import Utils from '@/util/transit'
|
|
|
import { mapGetters } from 'vuex'
|
|
@@ -214,8 +214,8 @@ export default {
|
|
|
}
|
|
|
},
|
|
|
created() {
|
|
|
- purchaseContractList({ pageNum: 1, pageSize: 9999, type: 1 }).then((res) => {
|
|
|
- this.contractList = res.data.data.records
|
|
|
+ purchaseContractGetList({}).then((res) => {
|
|
|
+ this.contractList = res.data.data.list
|
|
|
})
|
|
|
this.rowData = this.$route.query
|
|
|
},
|
|
@@ -330,10 +330,10 @@ export default {
|
|
|
return {
|
|
|
bomColorCode: item.bomColorCode,
|
|
|
bomColorName: item.bomColorName,
|
|
|
- color: item.color,
|
|
|
- productLong: item.productLong,
|
|
|
- productWide: item.productWide,
|
|
|
- productHigh: item.productHigh,
|
|
|
+ // color: item.color,
|
|
|
+ // productLong: item.productLong,
|
|
|
+ // productWide: item.productWide,
|
|
|
+ // productHigh: item.productHigh,
|
|
|
price: item.price,
|
|
|
recentQuantity: item.quantity,
|
|
|
returnedQuantity: item.returnedQuantity,
|