diff --git a/src/components/MultiHeaderTable/index.vue b/src/components/MultiHeaderTable/index.vue index 919203e..d942a6a 100644 --- a/src/components/MultiHeaderTable/index.vue +++ b/src/components/MultiHeaderTable/index.vue @@ -199,6 +199,7 @@ :show-summary="showSummary" :highlight-current-row="highlightCurrentRow" stripe + border @selection-change="handleSelectionChange" @current-change="currentChange" @row-click="rowClick" diff --git a/src/components/MultiHeaderTable/index.vue b/src/components/MultiHeaderTable/index.vue index 919203e..d942a6a 100644 --- a/src/components/MultiHeaderTable/index.vue +++ b/src/components/MultiHeaderTable/index.vue @@ -199,6 +199,7 @@ :show-summary="showSummary" :highlight-current-row="highlightCurrentRow" stripe + border @selection-change="handleSelectionChange" @current-change="currentChange" @row-click="rowClick" diff --git a/src/views/finance/businessSettlement/edit.vue b/src/views/finance/businessSettlement/edit.vue index 9e921fd..f4f6834 100644 --- a/src/views/finance/businessSettlement/edit.vue +++ b/src/views/finance/businessSettlement/edit.vue @@ -257,10 +257,10 @@ // 表头 const columns_measure = ref([ { text: '样品名称名称', value: 'sampleName', align: 'center', required: true, type: 'text' }, - { text: '检测项目', value: 'measureContent', align: 'center', width: '180', required: true, type: 'input' }, - { text: '测试规范', value: 'accordStandard', align: 'center', width: '180', required: true, type: 'input' }, - { text: '检测单价(元)', value: 'shouldTestFee', align: 'center', required: false, type: 'inputNumber' }, - { text: '备注', value: 'remark', align: 'center', required: false, width: '160', type: 'text' }, + { text: '检测项目', value: 'measureContent', align: 'center', required: true, type: 'input' }, + { text: '测试规范', value: 'accordStandard', align: 'center', required: true, type: 'input' }, + { text: '检测单价(元)', value: 'shouldTestFee', align: 'center', width: '180', required: false, type: 'inputNumber' }, + { text: '备注', value: 'remark', align: 'center', required: false, type: 'text' }, ]) // ------------------------------------委托书---------------------------------------------