-
+
@@ -24,27 +27,32 @@ const columns = [
{
label: 'Sample ID (SRID or other)',
type: 'a-input',
- dataIndex: 'sampleId'
+ dataIndex: 'srid',
+ disabled: true
},
{
label: 'Collection start date or reference date [YYYY/MM/DD]',
type: 'a-input',
- dataIndex: 'collectionStartDate'
+ dataIndex: 'colloct_start_date',
+ disabled: true
},
{
label: 'Collection start time or reference time [HH:mm:ss.S]',
type: 'a-input',
- dataIndex: 'collectionStartTime'
+ dataIndex: 'colloct_start_time',
+ disabled: true
},
{
label: 'Collection stop date [YYYY/MM/DD]',
type: 'a-input',
- dataIndex: 'collectionStopDate'
+ dataIndex: 'colloct_stop_date',
+ disabled: true
},
{
label: 'Collection stop time [HH:mm:ss.S]',
type: 'a-input',
- dataIndex: 'collectionStopTime'
+ dataIndex: 'colloct_stop_time',
+ disabled: true
},
{
label: 'Receipt date [YYYY/MM/DD]',
@@ -82,37 +90,21 @@ const columns = [
}
]
export default {
+ props: {
+ detail: {
+ type: Object
+ }
+ },
data() {
this.columns = columns
- return {
- text: ` - All dates
- - If`,
- model: {
- laboratory: 'CNL06',
- sampleId: '2311G',
- collectionStartDate: '2015/12/23',
- collectionStartTime: '23:55:43.0',
- collectionStopDate: '2015/10/24',
- collectionStopTime: '11:55:44:7',
- receiptDate: '2023/7/10',
- receiptTime: '00:45:33',
- reportTransmissionDate: '2023/7/10',
- reportTransmissionTime: '13:45:33'
- }
- }
+ return {}
}
}
+
diff --git a/src/views/spectrumAnalysis/components/Modals/BetaGammaModals/BetaGammaRLRModal/index.vue b/src/views/spectrumAnalysis/components/Modals/BetaGammaModals/BetaGammaRLRModal/index.vue
index e4c89f1..6e953f6 100644
--- a/src/views/spectrumAnalysis/components/Modals/BetaGammaModals/BetaGammaRLRModal/index.vue
+++ b/src/views/spectrumAnalysis/components/Modals/BetaGammaModals/BetaGammaRLRModal/index.vue
@@ -14,32 +14,34 @@