feat: 搜索子目录增加提示 (#883)

pull/884/head
zhengkunwang223 2 years ago committed by GitHub
parent 9bafdc1b0b
commit 0b50a10fb8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -809,6 +809,7 @@ const message = {
containSub: 'Modify sub-file attributes at the same time',
ownerHelper:
'The default user of the PHP operating environment: the user group is 1000:1000, it is normal that the users inside and outside the container show inconsistencies',
searchHelper: 'Support wildcards such as *',
},
setting: {
all: 'All',

@ -816,6 +816,7 @@ const message = {
changeOwner: '',
containSub: '',
ownerHelper: 'PHP : 1000:1000, ',
searchHelper: ' * ',
},
setting: {
all: '',

@ -90,7 +90,7 @@
clearable
@clear="search()"
@keydown.enter="search()"
:placeholder="$t('file.search')"
:placeholder="req.containSub ? $t('file.searchHelper') : $t('file.search')"
>
<template #prepend>
<el-checkbox v-model="req.containSub">

Loading…
Cancel
Save