Browse Source

ECUP-378

deli_scp
王宇飞 3 weeks ago
parent
commit
a945021111
  1. 6
      src/views/wms/purchasereceiptManage/supplierdeliver/purchasePlanMain/index.vue
  2. 5
      src/views/wms/purchasereceiptManage/supplierdeliver/purchasePlanMain/purchasePlanMain.data.ts

6
src/views/wms/purchasereceiptManage/supplierdeliver/purchasePlanMain/index.vue

@ -40,9 +40,9 @@
v-model:pageSize="tableObject.pageSize" v-model:currentPage="tableObject.currentPage"
v-model:sort="tableObject.sort"
@getSelectionRows="getSelectionRows">
<template #supplierCode="{row}">
<el-button type="primary" link @click="openDetail(row, '供应商代码', row.supplierCode)">
<span>{{ row.supplierCode }}</span>
<template #poNumber="{row}">
<el-button type="primary" link @click="openDetail(row, '采购订单号', row.poNumber)">
<span>{{ row.poNumber }}</span>
</el-button>
</template>
<template #action="{ row,$index }">

5
src/views/wms/purchasereceiptManage/supplierdeliver/purchasePlanMain/purchasePlanMain.data.ts

@ -20,8 +20,8 @@ export const PurchasePlanMain = useCrudSchemas(reactive<CrudSchema[]>([
sort: 'custom',
table: {
width: 150,
fixed: 'left'
},
isTable: true,
isSearch: true,
sortTableDefault:1,
sortSearchDefault:1,
@ -540,7 +540,8 @@ export const PurchasePlanDetail = useCrudSchemas(reactive<CrudSchema[]>([
isForm:false,
isTableForm:false,
table: {
width: 150
width: 150,
fixed: 'left'
},
search: {
// labelMessage: '信息提示说明!!!',

Loading…
Cancel
Save