|
@@ -0,0 +1,62 @@
|
|
|
+<template>
|
|
|
+ <CusDialog
|
|
|
+ :show="show"
|
|
|
+ :title="titleCpt"
|
|
|
+ @onClose="$emit('update:show', false)"
|
|
|
+ width="80%"
|
|
|
+ height="80%"
|
|
|
+ :loading="state.loading"
|
|
|
+ >
|
|
|
+ <div class="__cus-manage_content">
|
|
|
+ <div class="__cus-manage_content-main" v-loading="state.loading">
|
|
|
+ <CusTable
|
|
|
+ :data="state.data"
|
|
|
+ :table-head="state.tableHead"
|
|
|
+ :no-page="true"
|
|
|
+ >
|
|
|
+ </CusTable>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </CusDialog>
|
|
|
+</template>
|
|
|
+
|
|
|
+<script setup lang="ts">
|
|
|
+import {computed, getCurrentInstance, nextTick, reactive, ref, watch} from "vue";
|
|
|
+import {useDictionaryStore} from "@/stores";
|
|
|
+import {ElMessage, ElMessageBox} from "element-plus";
|
|
|
+import {outsideServiceTheme} from "@/api/modules/manage/service";
|
|
|
+
|
|
|
+const emit = defineEmits(['update:show', 'dict'])
|
|
|
+const {proxy} = getCurrentInstance()
|
|
|
+const DictionaryStore = useDictionaryStore()
|
|
|
+const props = defineProps({
|
|
|
+ show: {default: false},
|
|
|
+ transfer: {}
|
|
|
+ })
|
|
|
+const state: any = reactive({
|
|
|
+ tableHead: [
|
|
|
+ {value: "key", label: "主题名称"},
|
|
|
+ {value: "value", label: "主题状态"},
|
|
|
+ {value: "value", label: "关联时间"},
|
|
|
+ ],
|
|
|
+ data: [],
|
|
|
+ loading: false,
|
|
|
+})
|
|
|
+const ref_form = ref()
|
|
|
+const titleCpt = computed(() => {
|
|
|
+ let t = '主题列表'
|
|
|
+ return t
|
|
|
+})
|
|
|
+const initDetail = () => {
|
|
|
+ state.loading = true
|
|
|
+ outsideServiceTheme(props.transfer.id)
|
|
|
+}
|
|
|
+watch(() => props.show, (n) => {
|
|
|
+ if (n) {
|
|
|
+ initDetail()
|
|
|
+ }
|
|
|
+})
|
|
|
+</script>
|
|
|
+
|
|
|
+<style lang="scss" scoped>
|
|
|
+</style>
|