成本修改

dev-scheduling
jinna 1 month ago
parent b5135bed4a
commit 74f853b981
  1. 2
      src/views/costManagement/components/batchAddProcess.vue
  2. 20
      src/views/costStatistics/index.vue

@ -57,7 +57,7 @@
:loading="processLoading"
@change="(val) => changeProcess(val,scope.row)"
>
<el-option v-for="item in processData" :key="item.id" :label="item.name" :value="item.id"></el-option>
<el-option v-for="item in processData" :key="item.id" :label="`${item.code}-${item.name}`" :value="item.id"></el-option>
</el-select>
</el-form-item>
</template>

@ -174,6 +174,14 @@ export default {
overHidden: true,
width: 95,
},
{
label: '材料费用(元)',
prop: 'materialCost',
search: false,
sortable: false,
overHidden: true,
width: 95,
},
{
label: '作业中心材料费用(元)',
prop: 'workCenterMaterialCost',
@ -204,14 +212,26 @@ export default {
search: false,
sortable: false,
overHidden: true,
width:120,
},
{
label: '月度产出(v)',
prop: 'monthOutputVolume',
search: false,
sortable: false,
width:120,
overHidden: true,
},
{
label:"更新人",
prop:"updateUserName",
width: 80,
},
{
label:"更新时间",
prop:"updateTime",
width:160,
}
],
},
detailOption:{

Loading…
Cancel
Save