员工相关01转YN

This commit is contained in:
1378012178@qq.com 2025-11-19 13:53:55 +08:00
parent 6a432397e5
commit 0c3dcc16a8
7 changed files with 15 additions and 15 deletions

View File

@ -2,7 +2,7 @@
VITE_USE_MOCK = false
# 发布路径
VITE_PUBLIC_PATH = /biz101
VITE_PUBLIC_PATH = /biz103
# 是否启用gzip或brotli压缩
# 选项值: gzip | brotli | none
@ -13,10 +13,10 @@ VITE_BUILD_COMPRESS = 'gzip'
VITE_BUILD_COMPRESS_DELETE_ORIGIN_FILE = false
#后台接口父地址(必填)
VITE_GLOB_API_URL=/nursingunit101
VITE_GLOB_API_URL=/nursingunit103
#后台接口全路径地址(必填)
VITE_GLOB_DOMAIN_URL=https://www.focusnu.com/nursingunit101
VITE_GLOB_DOMAIN_URL=https://www.focusnu.com/nursingunit103
# VITE_GLOB_DOMAIN_URL=http://115.175.20.152/nursingunit104
# 接口父路径前缀

View File

@ -45,8 +45,8 @@
</div>
</a-col>
<a-col :span="3">
<div v-show="item.izOnline == '0'" class="online-status">在线</div>
<div v-show="item.izOnline == '1'" class="offline-status">离线</div>
<div v-show="item.izOnline == 'Y'" class="online-status">在线</div>
<div v-show="item.izOnline == 'N'" class="offline-status">离线</div>
</a-col>
<a-col :span="24" style="height: 63%;padding-top: 14px;">
<div

View File

@ -31,8 +31,8 @@
</div>
</a-col>
<a-col :span="4" style="text-align: right;">
<div v-show="item.izOnline == '0'" class="online-status">在线</div>
<div v-show="item.izOnline == '1'" class="offline-status">离线</div>
<div v-show="item.izOnline == 'Y'" class="online-status">在线</div>
<div v-show="item.izOnline == 'N'" class="offline-status">离线</div>
</a-col>
</a-row>

View File

@ -69,7 +69,7 @@ const formData = reactive<Record<string, any>>({
instructionName: '',
instructionType: '',
sort: 99,
izEnabled: '0',
izEnabled: 'Y',
icon:'',
});
const { createMessage } = useMessage();

View File

@ -9,7 +9,7 @@
<a-form-item label="分类标签" v-bind="validateInfos.instructionId"
id="ConfigServiceTypeForm-instructionId" name="instructionId">
<j-dict-select-tag type='list' v-model:value="formData.instructionId" :disabled="formData.colDisabled"
:dictCode="`nu_config_service_instruction_tag,instruction_name,id,del_flag = 0 and iz_enabled = 0 order by sort asc`"
:dictCode="`nu_config_service_instruction_tag,instruction_name,id,del_flag = 0 and iz_enabled = 'Y' order by sort asc`"
placeholder="请选择分类标签" allowClear />
</a-form-item>
</a-col>
@ -74,7 +74,7 @@ const formData = reactive<Record<string, any>>({
id: '',
categoryName: '',
sort: 99,
izEnabled: '0',
izEnabled: 'Y',
instructionId: '',
netFlag: '0',
animationPath: '',

View File

@ -9,7 +9,7 @@
<a-form-item name="categoryId">
<template #label><span title="服务类别">服务类别</span></template>
<j-dict-select-tag type="list" v-model:value="queryParam.categoryId"
:dictCode="`nu_config_service_category,category_name,id,del_flag = 0 and iz_enabled = 0 order by sort asc`"
:dictCode="`nu_config_service_category,category_name,id,del_flag = 0 and iz_enabled = 'Y' order by sort asc`"
:ignoreDisabled="true" placeholder="请选择服务类别" allow-clear @change="queryParam.typeId = ''"/>
</a-form-item>
</a-col>
@ -17,7 +17,7 @@
<a-form-item name="typeId">
<template #label><span title="服务类型">服务类型</span></template>
<j-dict-select-tag type="list" v-model:value="queryParam.typeId"
:dictCode="`nu_config_service_type,type_name,id,del_flag = 0 and iz_enabled = 0 and category_id = '${queryParam.categoryId || -1}' order by sort asc`"
:dictCode="`nu_config_service_type,type_name,id,del_flag = 0 and iz_enabled = 'Y' and category_id = '${queryParam.categoryId || -1}' order by sort asc`"
placeholder="请选择服务类型" :ignoreDisabled="true" allowClear />
</a-form-item>
</a-col>

View File

@ -9,7 +9,7 @@
<a-form-item label="分类标签" v-bind="validateInfos.instructionId" id="ConfigServiceTypeForm-instructionId"
name="instructionId">
<j-dict-select-tag type='list' v-model:value="formData.instructionId" :disabled="formData.colDisabled"
:dictCode="`nu_config_service_instruction_tag,instruction_name,id,del_flag = 0 and iz_enabled = 0 order by sort asc`"
:dictCode="`nu_config_service_instruction_tag,instruction_name,id,del_flag = 0 and iz_enabled = 'Y' order by sort asc`"
placeholder="请选择分类标签" allowClear />
</a-form-item>
</a-col>
@ -83,7 +83,7 @@ const formData = reactive<Record<string, any>>({
categoryId: '',
typeName: '',
sort: 99,
izEnabled: '0',
izEnabled: 'Y',
netFlag: '0',
animationPath: '',
colDisabled: false
@ -108,7 +108,7 @@ const categoryDictCode = computed(() => {
if (!formData.instructionId) {
return 'nu_config_service_category,category_name,id,1=2';
}
return `nu_config_service_category,category_name,id,del_flag = 0 and iz_enabled = 0 and instruction_id = '${formData.instructionId}' order by sort asc`;
return `nu_config_service_category,category_name,id,del_flag = 0 and iz_enabled = 'Y' and instruction_id = '${formData.instructionId}' order by sort asc`;
});
// instructionId categoryId