|
|
@@ -11,16 +11,6 @@
|
|
|
placeholder="请选择发布单位"
|
|
|
/>
|
|
|
</template>
|
|
|
- <template #deliveryUnit="scope">
|
|
|
- <el-tree-select
|
|
|
- v-model="scope.value"
|
|
|
- :data="treeData"
|
|
|
- node-key="id"
|
|
|
- filterable
|
|
|
- @change="newVal => onMessageChange(scope, newVal)"
|
|
|
- placeholder="请选择发出单位"
|
|
|
- />
|
|
|
- </template>
|
|
|
</pageSearch>
|
|
|
|
|
|
<pageContent ref="tableListRef" :total="total" :contentConfig="contentConfig" :pageList="tableData">
|
|
|
@@ -99,6 +89,7 @@ import { TreeOptions } from '@/types/global';
|
|
|
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();
|
|
|
@@ -194,6 +185,9 @@ async function searchItem() {
|
|
|
if (item.prop === 'releaseStatus') {
|
|
|
item.options = bj_nl_released_status;
|
|
|
}
|
|
|
+ if (item.prop === 'deliveryUnit') {
|
|
|
+ item.options = bj_lssuing_unit;
|
|
|
+ }
|
|
|
});
|
|
|
}
|
|
|
|