mirror of
https://gitlab.com/wgp/dougal/software.git
synced 2025-12-06 11:37:08 +00:00
Add some graphics to the shotlog
This commit is contained in:
@@ -53,6 +53,50 @@
|
|||||||
</v-row>
|
</v-row>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
|
<v-row>
|
||||||
|
<v-col cols=12 md=6 lg=4>
|
||||||
|
<div style="height:300px;">
|
||||||
|
<dougal-graph-project-sequence-inline-crossline
|
||||||
|
:items="shots"
|
||||||
|
gun-data-format="smsrc"
|
||||||
|
facet="2dhist"
|
||||||
|
>
|
||||||
|
</dougal-graph-project-sequence-inline-crossline>
|
||||||
|
</div>
|
||||||
|
</v-col>
|
||||||
|
|
||||||
|
<v-col cols=12 md=6 lg=4>
|
||||||
|
<div style="height:300px;">
|
||||||
|
<dougal-graph-project-sequence-inline-crossline
|
||||||
|
:items="shots"
|
||||||
|
gun-data-format="smsrc"
|
||||||
|
facet="crossline"
|
||||||
|
>
|
||||||
|
</dougal-graph-project-sequence-inline-crossline>
|
||||||
|
</div>
|
||||||
|
</v-col>
|
||||||
|
|
||||||
|
<v-col cols=12 md=6 lg=4>
|
||||||
|
<div ref="" style="height:300px;">
|
||||||
|
<dougal-graph-project-sequence-shotpoint-timing
|
||||||
|
:items="shots"
|
||||||
|
facet="area"
|
||||||
|
>
|
||||||
|
</dougal-graph-project-sequence-shotpoint-timing>
|
||||||
|
</div>
|
||||||
|
</v-col>
|
||||||
|
|
||||||
|
<v-col cols=12 md=6 lg=4 >
|
||||||
|
<div ref="" style="height:300px;">
|
||||||
|
<dougal-graph-project-sequence-inline-crossline
|
||||||
|
:items="shots"
|
||||||
|
facet="c-o"
|
||||||
|
>
|
||||||
|
</dougal-graph-project-sequence-inline-crossline>
|
||||||
|
</div>
|
||||||
|
</v-col>
|
||||||
|
</v-row>
|
||||||
|
|
||||||
</v-container>
|
</v-container>
|
||||||
|
|
||||||
<v-card outlined tile class="flex-grow-1">
|
<v-card outlined tile class="flex-grow-1">
|
||||||
@@ -209,10 +253,17 @@
|
|||||||
|
|
||||||
<script>
|
<script>
|
||||||
import { mapActions, mapGetters } from 'vuex';
|
import { mapActions, mapGetters } from 'vuex';
|
||||||
|
import DougalGraphProjectSequenceInlineCrossline from '@/components/graphs/project/sequence/inline-crossline';
|
||||||
|
import DougalGraphProjectSequenceShotpointTiming from '@/components/graphs/project/sequence/shotpoint-timing';
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
name: "SequenceSummary",
|
name: "SequenceSummary",
|
||||||
|
|
||||||
|
components: {
|
||||||
|
DougalGraphProjectSequenceInlineCrossline,
|
||||||
|
DougalGraphProjectSequenceShotpointTiming
|
||||||
|
},
|
||||||
|
|
||||||
data () {
|
data () {
|
||||||
return {
|
return {
|
||||||
filter: null,
|
filter: null,
|
||||||
|
|||||||
Reference in New Issue
Block a user