update: 通知模板未选配置不查收信部门和收信人

This commit is contained in:
JiangQiming 2023-02-22 19:38:58 +08:00
parent ea98e6c788
commit 310cf92c57
3 changed files with 3 additions and 0 deletions

View File

@ -30,6 +30,7 @@ const _value = computed({
const options = ref([]);
const queryData = async () => {
if (!props.configId) return;
const { result } = await templateApi.getDept(props.type, props.configId);
options.value = result.map((item: any) => ({
label: item.name,

View File

@ -30,6 +30,7 @@ const _value = computed({
const options = ref([]);
const queryData = async () => {
if (!props.configId) return;
const { result } = await templateApi.getTags(props.configId);
options.value = result.map((item: any) => ({
label: item.name,

View File

@ -30,6 +30,7 @@ const _value = computed({
const options = ref([]);
const queryData = async () => {
if (!props.configId) return;
const { result } = await templateApi.getUser(props.type, props.configId);
options.value = result.map((item: any) => ({
label: item.name,