Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
P
portal-apps-manage
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Registry
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
angular
portal-apps-manage
Commits
61522f21
Commit
61522f21
authored
Jul 18, 2025
by
DESKTOP-E3GSHH7\myhr
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
set รูป article default ใหม่ เเละเเปลภาษา
parent
a52f8af8
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
17 additions
and
7 deletions
+17
-7
article-manage.component.css
...pp/DPU/common/article-manage/article-manage.component.css
+6
-0
article-manage.component.html
...p/DPU/common/article-manage/article-manage.component.html
+5
-5
en.json
src/assets/i18n/en.json
+3
-1
th.json
src/assets/i18n/th.json
+3
-1
default-pic-gX.png
src/assets/images/media/default-pic-gX.png
+0
-0
No files found.
src/app/DPU/common/article-manage/article-manage.component.css
View file @
61522f21
...
@@ -45,3 +45,8 @@
...
@@ -45,3 +45,8 @@
.border-color
{
.border-color
{
border
:
8px
solid
rgb
(
255
,
255
,
255
);
border
:
8px
solid
rgb
(
255
,
255
,
255
);
}
}
.ti-btn-amber-full
{
background-color
:
#fcd34d
;
color
:
#FFFFFF
;
}
\ No newline at end of file
src/app/DPU/common/article-manage/article-manage.component.html
View file @
61522f21
...
@@ -16,12 +16,12 @@
...
@@ -16,12 +16,12 @@
</a>
</a>
<a
href=
"javascript:void(0);"
class=
"hs-dropdown-toggle ti-btn ti-btn-success-full me-2"
*
ngIf=
"someSelected"
<a
href=
"javascript:void(0);"
class=
"hs-dropdown-toggle ti-btn ti-btn-success-full me-2"
*
ngIf=
"someSelected"
(
click
)="
adjustSelect
(
1
)"
><i
class=
"ri-user-follow-line font-semibold align-middle"
></i>
{{ '
Active
' |
(
click
)="
adjustSelect
(
1
)"
><i
class=
"ri-user-follow-line font-semibold align-middle"
></i>
{{ '
Publish
' |
translate}}
translate}}
</a>
</a>
<a
href=
"javascript:void(0);"
class=
"hs-dropdown-toggle ti-btn ti-btn-
secondary-full
me-2"
<a
href=
"javascript:void(0);"
class=
"hs-dropdown-toggle ti-btn ti-btn-
amber-full ti-btn-sec
me-2"
*
ngIf=
"someSelected"
(
click
)="
adjustSelect
(
0
)"
><i
*
ngIf=
"someSelected"
(
click
)="
adjustSelect
(
0
)"
><i
class=
"ri-user-unfollow-line font-semibold align-middle"
></i>
{{ 'Un
active
' |
class=
"ri-user-unfollow-line font-semibold align-middle"
></i>
{{ 'Un
publish
' |
translate}}
translate}}
</a>
</a>
...
@@ -68,7 +68,7 @@
...
@@ -68,7 +68,7 @@
<span
class=
"p-3 me-1"
style=
"width: 200px;"
>
<span
class=
"p-3 me-1"
style=
"width: 200px;"
>
<!-- <img [src]="item.getPicture()" alt="" id="profile-img" class="border-radius-1"
<!-- <img [src]="item.getPicture()" alt="" id="profile-img" class="border-radius-1"
style="width: 180px; height: 120px; object-fit: cover;"> -->
style="width: 180px; height: 120px; object-fit: cover;"> -->
<img
[
src
]="
item
.
getPicture
()
===
''
?
'
assets
/
images
/
media
/
media-1
.
jp
g
'
:
item
.
getPicture
()"
id=
"profile-img"
class=
"border-radius-1"
<img
[
src
]="
item
.
getPicture
()
===
''
?
'
assets
/
images
/
media
/
default-pic-gX
.
pn
g
'
:
item
.
getPicture
()"
id=
"profile-img"
class=
"border-radius-1"
style=
"width: 180px; height: 120px; object-fit: cover;"
>
style=
"width: 180px; height: 120px; object-fit: cover;"
>
</span>
</span>
</div>
</div>
...
@@ -218,7 +218,7 @@
...
@@ -218,7 +218,7 @@
<div
class=
"xl:col-span-12 col-span-12 justify-items-center"
>
<div
class=
"xl:col-span-12 col-span-12 justify-items-center"
>
<div
class=
"relative w-[300px] h-[200px] overflow-hidden rounded-md group mx-auto"
>
<div
class=
"relative w-[300px] h-[200px] overflow-hidden rounded-md group mx-auto"
>
<img
[
src
]="
selectModel
.
getPicture
()
===
''
?
'
assets
/
images
/
media
/
media-1
.
jp
g
'
:
selectModel
.
getPicture
()"
<img
[
src
]="
selectModel
.
getPicture
()
===
''
?
'
assets
/
images
/
media
/
default-pic-gX
.
pn
g
'
:
selectModel
.
getPicture
()"
alt=
"Profile Picture"
alt=
"Profile Picture"
class=
"w-full h-full block transition-all duration-300 ease-in-out group-hover:blur-md border-color"
>
class=
"w-full h-full block transition-all duration-300 ease-in-out group-hover:blur-md border-color"
>
...
...
src/assets/i18n/en.json
View file @
61522f21
...
@@ -109,5 +109,7 @@
...
@@ -109,5 +109,7 @@
"Invalid email format ."
:
"Why after @ have not dot [ Ex. ] username@hostname.com"
,
"Invalid email format ."
:
"Why after @ have not dot [ Ex. ] username@hostname.com"
,
"This email already exists"
:
"This email already exists"
,
"This email already exists"
:
"This email already exists"
,
"Datasource Table Information"
:
"Datasource Table"
,
"Datasource Table Information"
:
"Datasource Table"
,
"Company Name"
:
"Company Name"
"Company Name"
:
"Company Name"
,
"Publish"
:
"Publish"
,
"Unpublish"
:
"Unpublish"
}
}
src/assets/i18n/th.json
View file @
61522f21
...
@@ -109,5 +109,7 @@
...
@@ -109,5 +109,7 @@
"Invalid email format ."
:
"หลัง @ ไม่ได้ใส่ . หลังชื่อ [ ตัวอย่าง ] username@hostname.com"
,
"Invalid email format ."
:
"หลัง @ ไม่ได้ใส่ . หลังชื่อ [ ตัวอย่าง ] username@hostname.com"
,
"This email already exists"
:
"อีเมลนี้มีอยู่แล้ว"
,
"This email already exists"
:
"อีเมลนี้มีอยู่แล้ว"
,
"Datasource Table Information"
:
"Datasource Table"
,
"Datasource Table Information"
:
"Datasource Table"
,
"Company Name"
:
"ชื่อบริษัท"
"Company Name"
:
"ชื่อบริษัท"
,
"Publish"
:
"เผยเเพร่"
,
"Unpublish"
:
"ไม่เผยเเพร่"
}
}
src/assets/images/media/default-pic-gX.png
0 → 100644
View file @
61522f21
57.2 KB
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