修改bug

This commit is contained in:
yangjun 2026-02-10 15:06:28 +08:00
parent 8538bb0f53
commit 656297179c
7 changed files with 10 additions and 10 deletions

View File

@ -26,7 +26,7 @@ VITE_OPE_MEDIA_ADDRESS = 'https://www.focusnu.com/media/upFiles/'
# 长者标签-标签默认图片
VITE_DEFAULT_ELDER_TAG_BODY_PIC = 'directive/index/index/moren.png'
# 长者标签-标签焦点图片
VITE_DEFAULT_ELDER_TAG_EMO_PIC = 'directive/index/index/morenCheck.png'
VITE_DEFAULT_ELDER_TAG_EMO_PIC = 'directive/index/index/morencheck.png'
# 服务指令-服务指令图片(大)默认图片
VITE_DEFAULT_DIRECTIVE_PRE_PIC = 'default/predefault.png'
# 服务指令-服务指令图片(小)默认图片

View File

@ -26,7 +26,7 @@ VITE_OPE_MEDIA_ADDRESS = 'https://www.focusnu.com/media/upFiles/'
# 长者标签-标签默认图片
VITE_DEFAULT_ELDER_TAG_BODY_PIC = 'directive/index/index/moren.png'
# 长者标签-标签焦点图片
VITE_DEFAULT_ELDER_TAG_EMO_PIC = 'directive/index/index/morenCheck.png'
VITE_DEFAULT_ELDER_TAG_EMO_PIC = 'directive/index/index/morencheck.png'
# 服务指令-服务指令图片(大)默认图片
VITE_DEFAULT_DIRECTIVE_PRE_PIC = 'default/predefault.png'
# 服务指令-服务指令图片(小)默认图片

View File

@ -30,7 +30,7 @@ VITE_OPE_MEDIA_ADDRESS = 'https://www.focusnu.com/media/'
# 长者标签-标签默认图片
VITE_DEFAULT_ELDER_TAG_BODY_PIC = 'directive/index/index/moren.png'
# 长者标签-标签焦点图片
VITE_DEFAULT_ELDER_TAG_EMO_PIC = 'directive/index/index/morenCheck.png'
VITE_DEFAULT_ELDER_TAG_EMO_PIC = 'directive/index/index/morencheck.png'
# 服务指令-服务指令图片(大)默认图片
VITE_DEFAULT_DIRECTIVE_PRE_PIC = 'default/predefault.png'
# 服务指令-服务指令图片(小)默认图片

View File

@ -37,9 +37,9 @@
<audio ref="audioPlayer" controls v-if="!!file?.response?.message" :src="opeMediaAddress + file?.response?.message" ></audio>
<audio ref="audioPlayer" controls v-else :src="file.url ? opeMediaAddress + file.url : file.r" ></audio>
</div>
<div style="margin-top: 20px;">
<!-- <div style="margin-top: 20px;">
{{ file.name }}
</div>
</div> -->
<div style="margin-top: 20px;" v-if="!props.disabled">
<a-button type="link" danger @click="removeFile(index)">删除</a-button>
</div>

View File

@ -40,9 +40,9 @@
您的浏览器不支持视频播放
</video>
</div>
<div style="margin-top: 20px;">
<!-- <div style="margin-top: 20px;">
{{ file.name }}
</div>
</div> -->
<div style="margin-top: 20px;" v-if="!props.disabled">
<a-button type="link" danger @click="removeFile(index)">删除</a-button>
</div>

View File

@ -45,7 +45,7 @@
function open() {
defHttp.get({ url: '/resourcesManagement/nuResourcesManagement/list', params: { pageSize: -1,resourcesType:'1' } }).then(res => {
defHttp.get({ url: '/resourcesManagement/nuResourcesManagement/list', params: { pageSize: -1,resourcesType:'1',fileType:'image' } }).then(res => {
console.log("🚀 ~ open ~ res:", res)
dataList.value = res.records;

View File

@ -19,7 +19,7 @@
<a-col :span="24">
<a-form-item label="说明" v-bind="validateInfos.describ" id="ElderTagForm-tagName" name="tagName">
<a-textarea v-model:value="formData.describ" placeholder="请输入说明" :maxlength="200" :rows="3"
:autosize="{ minRows: 3 }" :showCount="true" :disabled="!!formData.id" />
:autosize="{ minRows: 3 }" :showCount="true" />
</a-form-item>
</a-col>
<a-col :span="24">
@ -159,7 +159,7 @@ const disabled = computed(() => {
* 新增
*/
function add() {
edit({pic:'',pic});
edit({});
}
/**