|
@@ -51,6 +51,9 @@
|
|
|
<text>暂时没有符合条件的活动</text>
|
|
|
</view>
|
|
|
<morning-dlg v-if="isMorningShow" :isMorningShow.sync="isMorningShow" :morningItem.sync="morningItem" />
|
|
|
+ <view v-if="showAudioBox">
|
|
|
+ <audioModule :showAudioPop.sync="showAudioPop" />
|
|
|
+ </view>
|
|
|
</view>
|
|
|
</template>
|
|
|
|
|
@@ -63,8 +66,9 @@ import ActivityItem from "@/components/ItemComponent/activityItem.vue";
|
|
|
import ItemContent from "./ItemContent.vue";
|
|
|
import MorningDlg from "./morningDlg.vue";
|
|
|
import Industrialsource from "./industrialsource.vue";
|
|
|
+import audioModule from "@/components/audioModule/index";
|
|
|
export default {
|
|
|
- components: { Industrialsource, ChartItem, ReportItem, RoadshowItem, ActivityItem, ItemContent, MorningDlg },
|
|
|
+ components: { Industrialsource, ChartItem, ReportItem, RoadshowItem, ActivityItem, ItemContent, MorningDlg, audioModule },
|
|
|
props: {
|
|
|
searchTxt: {
|
|
|
type: String,
|
|
@@ -85,6 +89,7 @@ export default {
|
|
|
isMorningShow: false, // 晨会的弹框
|
|
|
morningItem: {}, // 晨会的弹框
|
|
|
haveData: true,
|
|
|
+ showAudioPop: false,
|
|
|
};
|
|
|
},
|
|
|
watch: {
|
|
@@ -98,8 +103,11 @@ export default {
|
|
|
immediate: true,
|
|
|
},
|
|
|
},
|
|
|
- computed: {},
|
|
|
- components: {},
|
|
|
+ computed: {
|
|
|
+ showAudioBox() {
|
|
|
+ return this.$store.state.audioBg.parseIntShow;
|
|
|
+ },
|
|
|
+ },
|
|
|
methods: {
|
|
|
// 获取数据
|
|
|
async getComprehensiveList() {
|