Browse Source

增加打托方式查看

pre-production
马远东 1 year ago
parent
commit
1c9ccd5da0
  1. 17
      src/option/basicdata/basicdataTray.js
  2. 23
      src/views/basicdata/warehouse/tray/basicdataTrayedt.vue
  3. 1
      src/views/financialsector/Financialse/FinancialWarehousing.vue

17
src/option/basicdata/basicdataTray.js

@ -74,6 +74,23 @@ export default {
hide: true,
width: '130',
},
{
label: '打托方式',
prop: 'trayType',
type: 'select',
search: true,
dicUrl: '/api/blade-system/dict-biz/dictionary?code=pallet_order_type',
props: {
label: 'dictValue',
value: 'dictKey',
},
align: 'center',
labelWidth: '100',
addDisplay: true,
editDisplay: true,
viewDisplay: true,
width: '130',
},
{
label: '状态',
prop: 'status',

23
src/views/basicdata/warehouse/tray/basicdataTrayedt.vue

@ -14,6 +14,9 @@
<el-col :xl="7" :lg="7" :md="8" :sm="24">
<span> {{ traydata.$type }} </span>
</el-col>
<el-col :xl="7" :lg="7" :md="8" :sm="24">
<span>打托方式{{ traydata.trayType }} </span>
</el-col>
</el-row>
<el-divider> </el-divider>
@ -619,6 +622,17 @@ export default {
sortable: true,
head: false,
},
{
prop: 'orderCode',
label: '订单自编号',
type: 1,
values: '',
width: '150',
checkarr: [],
fixed: false,
sortable: true,
head: false,
},
{
prop: 'orderPackageCode',
label: '包条码',
@ -1424,6 +1438,15 @@ export default {
//
const data = decodeURIComponent(this.$route.query.data);
this.traydata = JSON.parse(data);
getDictionaryBiz('pallet_order_type').then(res => {
console.log(res,'打托字典');
//
if(res.data.code ==200){
if(res.data.data.length){
this.traydata.trayType = res.data.data.find(res=>res.dictKey== this.traydata.trayType).dictValue
}
}
});
console.log('data>>>>>>>>', this.traydata);
this.loading = true;
// getDetail(id).then(res => {

1
src/views/financialsector/Financialse/FinancialWarehousing.vue

@ -233,6 +233,7 @@
</div>
</div>
</div>
<div>保存</div>
</div>
</template>

Loading…
Cancel
Save