diff --git a/src/views/measure/source/components/listPage.vue b/src/views/measure/source/components/listPage.vue index 1cc883e..31fb09f 100644 --- a/src/views/measure/source/components/listPage.vue +++ b/src/views/measure/source/components/listPage.vue @@ -36,9 +36,7 @@ // 控制是否显示新增页面 const show = ref(true) // 表格数据 -const list = ref([ - { name: '张三', id: '12' }, -]) +const list = ref([]) // 总数 const total = ref(0) // 控制审批操作弹窗的开关 @@ -47,39 +45,39 @@ const columns = ref([ { text: '溯源供方编号', - value: 'name', + value: 'supplierNo', width: '120', align: 'center', }, { text: '溯源供方名称', - value: 'name', + value: 'supplierName', width: '120', align: 'center', }, { text: '业务内容', - value: 'name', + value: 'businessContent', align: 'center', }, { - text: '业务资质', - value: 'name', + text: '业务范围', + value: 'businessScope', align: 'center', }, { text: '负责人', - value: 'name', + value: 'director', align: 'center', }, { text: '联系方式', - value: 'name', + value: 'phone', align: 'center', }, { text: '地址', - value: 'name', + value: 'address', align: 'center', }, {