Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in
Toggle navigation
P
poc-fe
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
poc
poc-fe
Commits
e92f6175
Commit
e92f6175
authored
Nov 07, 2024
by
shirlyn.guo
👌🏻
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
chore: 修改命名&个人空间搜索框placeholder修改
parent
b247d162
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
7 additions
and
11 deletions
+7
-11
en.yaml
src/locales/langs/en.yaml
+0
-1
zh-cn.yaml
src/locales/langs/zh-cn.yaml
+0
-1
zh-hk.yaml
src/locales/langs/zh-hk.yaml
+0
-1
applications-square.vue
src/views/applications-square/applications-square.vue
+3
-3
personal-app.vue
src/views/personal-space/personal-app/personal-app.vue
+1
-1
sale-applications-configuration-modal.vue
...ce/personal-app/sale-applications-configuration-modal.vue
+3
-3
locales.d.ts
types/locales.d.ts
+0
-1
No files found.
src/locales/langs/en.yaml
View file @
e92f6175
...
...
@@ -159,7 +159,6 @@ personal_space_module:
agent_module
:
agent_list_module
:
search_agent_placeholder
:
'
Please
enter
an
application
name
or
description'
agent_title
:
'
Application
title'
large_model
:
'
Model
name'
agent_id
:
'
Application
ID'
...
...
src/locales/langs/zh-cn.yaml
View file @
e92f6175
...
...
@@ -158,7 +158,6 @@ personal_space_module:
agent_module
:
agent_list_module
:
search_agent_placeholder
:
'
请输入应用名称或描述'
agent_title
:
'
应用标题'
large_model
:
'
模型名称'
agent_id
:
'
应用ID'
...
...
src/locales/langs/zh-hk.yaml
View file @
e92f6175
...
...
@@ -158,7 +158,6 @@ personal_space_module:
agent_module
:
agent_list_module
:
search_agent_placeholder
:
'
請輸入應用名稱或描述'
agent_title
:
'
應用標題'
large_model
:
'
模型名稱'
agent_id
:
'
應用ID'
...
...
src/views/applications-square/applications-square.vue
View file @
e92f6175
...
...
@@ -14,7 +14,7 @@ import { router } from '@/router'
import
searchEmptyImage
from
'@/assets/images/search-empty.png'
import
applicationEmptyImage
from
'@/assets/images/application-empty.png'
interface
m
allCategory
{
interface
M
allCategory
{
id
:
number
categoryName
:
string
}
...
...
@@ -31,7 +31,7 @@ const pagingInfo = ref<PaginationInfo>({
totalPages
:
0
,
totalRows
:
0
,
})
const
mallCategoryList
=
ref
<
m
allCategory
[]
>
([])
const
mallCategoryList
=
ref
<
M
allCategory
[]
>
([])
const
cardContentWrapRef
=
useTemplateRef
<
HTMLDivElement
>
(
'cardContentWrapRef'
)
const
isShowCarousel
=
ref
(
true
)
const
smooth
=
ref
(
false
)
...
...
@@ -116,7 +116,7 @@ function handleCollectOrCancelAgentApplication(id: number) {
function
handleGetMallCategoryList
()
{
mallCategoryList
.
value
.
unshift
({
id
:
0
,
categoryName
:
t
(
'applications_square_module.all_application_btn_text'
)
})
fetchGetMallCategoryList
<
m
allCategory
[]
>
().
then
((
res
)
=>
{
fetchGetMallCategoryList
<
M
allCategory
[]
>
().
then
((
res
)
=>
{
if
(
res
.
code
!==
0
)
return
mallCategoryList
.
value
=
[...
mallCategoryList
.
value
,
...
res
.
data
]
})
...
...
src/views/personal-space/personal-app/personal-app.vue
View file @
e92f6175
...
...
@@ -212,7 +212,7 @@ const handleCardContentScrollDebounce = debounce(
</n-space>
<NInput
v-model:value=
"agentSearchInputValue"
:placeholder=
"t('
personal_space_module.agent_module.agent_list_module.search_agent_placeholder
')"
:placeholder=
"t('
common_module.search
')"
class=
"w-[256px]! h-[32px]!"
@
keypress=
"handleEnterKeypress"
>
...
...
src/views/personal-space/personal-app/sale-applications-configuration-modal.vue
View file @
e92f6175
...
...
@@ -6,7 +6,7 @@ import { Close, Help, Notes, CheckSmall } from '@icon-park/vue-next'
import
{
ref
,
watch
}
from
'vue'
import
{
useI18n
}
from
'vue-i18n'
interface
m
allCategory
{
interface
M
allCategory
{
id
:
number
categoryName
:
string
}
...
...
@@ -29,7 +29,7 @@ const saleApplicationsId = ref(props.data.agentPublishId)
const
isClassifyError
=
ref
(
false
)
const
applicationsClassify
=
ref
<
m
allCategory
[]
>
([])
const
applicationsClassify
=
ref
<
M
allCategory
[]
>
([])
;(
function
()
{
handleGetMallCategoryList
()
...
...
@@ -84,7 +84,7 @@ function handleIsCopySwitchUpdateValue(value: string) {
function
handleGetMallCategoryList
()
{
fetchGetMallCategoryList
().
then
((
res
)
=>
{
if
(
res
.
code
!==
0
)
return
applicationsClassify
.
value
=
res
.
data
as
m
allCategory
[]
applicationsClassify
.
value
=
res
.
data
as
M
allCategory
[]
})
}
</
script
>
...
...
types/locales.d.ts
View file @
e92f6175
...
...
@@ -169,7 +169,6 @@ declare namespace I18n {
tab_module
:
{
agent_module
:
{
agent_list_module
:
{
search_agent_placeholder
:
string
agent_title
:
string
large_model
:
string
agent_id
:
string
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment