Browse Source

添加库存品详情字段

dev-xx
马远东 8 months ago
parent
commit
0d2299702c
  1. 2
      src/option/storagecost/WarehousePricingTemplate.js
  2. 3
      src/views/cost/Deliverycostmanagement/Basicconfiguration.vue
  3. 19
      src/views/cost/Deliverycostmanagement/WarehousePricingTemplate.vue
  4. 66
      src/views/distribution/inventory/distributionStockListDetails.vue

2
src/option/storagecost/WarehousePricingTemplate.js

@ -48,7 +48,7 @@ export const columnList = [
head: false,
},
{
prop: 'a4',
prop: 'updateUser',
label: '修改人',
type: 2,
values: '',

3
src/views/cost/Deliverycostmanagement/Basicconfiguration.vue

@ -77,6 +77,9 @@ const nextstep = () => {
};
$_WarehouseTemplateHome(data).then(res => {
console.log(res, '新增成功');
if(res.data.code ==200){
}
});
return;
emit('request-data', '给父页面传递的参数:'); //

19
src/views/cost/Deliverycostmanagement/WarehousePricingTemplate.vue

@ -50,7 +50,10 @@
<!-- 头部左侧按钮模块 -->
<div class="avue-crud__left">
<el-button type="primary" @click="AddInfo"
><el-icon><Plus /></el-icon></el-button
><el-icon><Download /></el-icon></el-button
>
<el-button type="primary" @click="lyadded"
><el-icon><Plus /></el-icon></el-button
>
</div>
<!-- 头部右侧按钮模块 -->
@ -78,9 +81,7 @@
>
<template #default="slotProps">
<template v-if="slotProps.scope.column.label === '操作'">
<el-text size="small" @click="EditTemplate"> </el-text>
<el-text size="small" @click="EditTemplate(slotProps.scope.row)"> </el-text>
</template>
</template>
</tablecmt>
@ -334,9 +335,12 @@ const MyWarehouseList = () => {
});
};
//
const EditTemplate = () => {
const EditTemplate = (row) => {
$router.push({
path: '/cost/Deliverycostmanagement/WarehouseTemplateHome',
query:{
id:row.id
}
});
};
const PageOnload = () => {
@ -347,6 +351,11 @@ const PageOnload = () => {
//
PageOnload();
const lyadded=()=>{
$router.push({
path: '/cost/Deliverycostmanagement/WarehouseTemplateHome',
});
}
</script>
<style scoped lang="scss">

66
src/views/distribution/inventory/distributionStockListDetails.vue

@ -384,6 +384,72 @@ export default {
sortable: true,
head: false,
},
{
prop: 'incomingBatch',
label: '入库批次',
type: 2,
values: '',
width: '150',
checkarr: [],
fixed: false,
sortable: true,
head: false,
},
{
prop: 'logisticsCompany',
label: '物流公司',
type: 2,
values: '',
width: '150',
checkarr: [],
fixed: false,
sortable: true,
head: false,
},
{
prop: 'cargoUnit',
label: '物品单位',
type: 2,
values: '',
width: '150',
checkarr: [],
fixed: false,
sortable: true,
head: false,
},
{
prop: 'packageNumber',
label: '包装数量',
type: 2,
values: '',
width: '150',
checkarr: [],
fixed: false,
sortable: true,
head: false,
},
{
prop: 'cargoNorms',
label: '包装规格',
type: 2,
values: '',
width: '150',
checkarr: [],
fixed: false,
sortable: true,
head: false,
},
{
prop: 'remark',
label: '备注',
type: 2,
values: '',
width: '150',
checkarr: [],
fixed: false,
sortable: true,
head: false,
},
{
prop: 'orderCode',
label: '订单自编号',

Loading…
Cancel
Save