ny
22 小时以前 282fbc6488f4e8ceb5fda759f963ee88fbf7b999
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
<script lang="ts" setup>
import { onMounted, ref } from 'vue';
import { useRouter } from 'vue-router';
 
import { encryptByBase64 } from '@jnpf/utils';
 
import dayjs from 'dayjs';
 
import { getFlowTodoList } from '#/api/workFlow/flowMonitor';
 
import CardHeader from '../CardHeader/index.vue';
 
const props = defineProps(['activeData']);
const list = ref<any[]>([]);
const hasAuth = ref<boolean>(true);
const loading = ref<boolean>(false);
const router = useRouter();
 
function initData() {
  loading.value = true;
  getFlowTodoList(props.activeData.type || 0).then((res) => {
    list.value = res.data?.list?.length ? res.data.list.slice(0, 7) : [];
    hasAuth.value = !!res.data?.isAuthorize;
    loading.value = false;
  });
}
function goDetail(item) {
  const config = JSON.stringify({ ...item, operatorId: item.id, opType: props.activeData.type });
  router.push(`/workFlowDetail?config=${encodeURIComponent(encryptByBase64(config))}`);
}
 
onMounted(() => initData());
</script>
<template>
  <a-card class="portal-card-box">
    <template #title v-if="activeData.title">
      <CardHeader :title="activeData.title" :card="activeData.card" />
    </template>
    <template v-if="!loading">
      <div class="portal-card-body portal-card-todoList" v-if="hasAuth">
        <template v-if="list.length">
          <a class="item" v-for="(item, i) in list" :key="i">
            <span class="name com-hover" @click="goDetail(item)">{{ item.fullName }}</span>
            <span class="time">{{ dayjs(item.creatorTime).format('YYYY-MM-DD') }}</span>
          </a>
        </template>
        <div class="portal-common-noData" v-else>
          <jnpf-empty />
        </div>
      </div>
      <div class="portal-card-body portal-card-todoList no-auth-todoList" v-else>
        <p class="no-auth-tip">您暂无该控件的访问权限</p>
      </div>
    </template>
  </a-card>
</template>