|
|
@@ -17,6 +17,13 @@
|
|
|
<template #button>
|
|
|
<el-button type="primary" @click="handleAdd()">新增</el-button>
|
|
|
</template>
|
|
|
+
|
|
|
+ <!-- 发出单位 -->
|
|
|
+ <template #deliveryUnit="scope">
|
|
|
+ <template :index="index" v-for="(item, index) in bj_lssuing_unit">
|
|
|
+ <template :index="index" v-if="item.value == scope.row.deliveryUnit">{{ item.label }}</template>
|
|
|
+ </template>
|
|
|
+ </template>
|
|
|
<!-- 通报类型 -->
|
|
|
<template #notificationType="scope">
|
|
|
<template :index="index" v-for="(item, index) in bj_notification_type">
|
|
|
@@ -78,18 +85,17 @@ import searchConfig from './config/search.config';
|
|
|
import pageSearch from '@/components/components/pageSearch.vue';
|
|
|
import detailConfig from './config/detail.config';
|
|
|
import pageDetail from './components/detail.vue';
|
|
|
-import { changeInventoryStatus } from '@/api/notificationInfoManage/notificationList';
|
|
|
+import { changeInventoryStatus } from '@/api/notificationInfoManage/mattersmanage';
|
|
|
|
|
|
import useSystemStore from '@/store/main';
|
|
|
import { outTypeList, outDeptTree } from '@/libs/commonMeth';
|
|
|
import { TreeOptions } from '@/types/global';
|
|
|
|
|
|
// 通报事项类别 bj_category_onm
|
|
|
-
|
|
|
+const bj_lssuing_unit = outTypeList('bj_lssuing_unit'); //发出单位
|
|
|
const bj_notification_type = outTypeList('bj_notification_type'); //通报类型
|
|
|
const bj_category_onm = outTypeList('bj_category_onm'); //通报事项类别
|
|
|
const bj_nl_released_status = outTypeList('bj_nl_released_status'); //通报事项清单发布状态
|
|
|
-const bj_lssuing_unit = outTypeList('bj_lssuing_unit'); //发出单位
|
|
|
|
|
|
// 使用pinia数据
|
|
|
const systemStore = useSystemStore();
|