123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172 |
- <template>
- <modal title="Report">
- <div slot="body">
- <article class="message">
- <div class="message-body">
- <strong>Song ID:</strong>
- {{ $parent.editing.songId }}
- <br />
- <strong>Created By:</strong>
- {{ $parent.editing.createdBy }}
- <br />
- <strong>Created At:</strong>
- {{ $parent.editing.createdAt }}
- <br />
- <span v-if="$parent.editing.description">
- <strong>Description:</strong>
- {{ $parent.editing.description }}
- </span>
- </div>
- </article>
- <table
- v-if="$parent.editing.issues.length > 0"
- class="table is-narrow"
- >
- <thead>
- <tr>
- <td>Issue</td>
- <td>Reasons</td>
- </tr>
- </thead>
- <tbody>
- <tr
- v-for="(issue, index) in $parent.editing.issues"
- :key="index"
- >
- <td>
- <span>{{ issue.name }}</span>
- </td>
- <td>
- <span>{{ issue.reasons }}</span>
- </td>
- </tr>
- </tbody>
- </table>
- </div>
- <div slot="footer">
- <a
- class="button is-primary"
- href="#"
- @click="$parent.resolve($parent.editing._id)"
- >
- <span>Resolve</span>
- </a>
- <a class="button is-danger" @click="$parent.toggleModal()" href="#">
- <span>Cancel</span>
- </a>
- </div>
- </modal>
- </template>
- <script>
- import Modal from "./Modal.vue";
- export default {
- components: { Modal },
- events: {
- closeModal: function() {
- this.$parent.modals.report = false;
- }
- }
- };
- </script>
|