mirror of
https://gitlab.com/CIEFWorldwideSdnBhd/exchange-2.0.git
synced 2026-08-30 09:53:58 +00:00
33 lines
1.2 KiB
Vue
33 lines
1.2 KiB
Vue
<template>
|
|
<div class="row w-100">
|
|
<div class="col">
|
|
<loading-component style="height: 300px; top: 0;" key="1" color="success" v-show="isLoading" ></loading-component>
|
|
<!-- <div class="row justify-content-center padding-30" v-show="!isLoading"> -->
|
|
<div class="row justify-content-center" v-show="!isLoading">
|
|
|
|
<div class="col">
|
|
<div class="row" v-for="remark in data.remarks">
|
|
<div class="col">
|
|
<remark-list-component :section="section" :data="remark"></remark-list-component>
|
|
</div>
|
|
</div>
|
|
<remark-comment-form-component :section="section" :module_type="module_type" :id="data.id"></remark-comment-form-component>
|
|
</div>
|
|
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
<script>
|
|
import ModalFormHandler from '../../../general/mixins/modalFormHandler';
|
|
export default {
|
|
props: {
|
|
module_type: {
|
|
type: String,
|
|
required: true
|
|
}
|
|
},
|
|
mixins: [ModalFormHandler]
|
|
}
|
|
</script>
|