Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
A
Aqbits Trace Code
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Mai Thanh Cong
Aqbits Trace Code
Commits
5646e9e3
Commit
5646e9e3
authored
Jul 06, 2021
by
Mai Thanh Cong
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
display image in table list profile
parent
95103dd7
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
8 additions
and
8 deletions
+8
-8
src/components/Profile/AddProfile.js
src/components/Profile/AddProfile.js
+1
-1
src/components/Profile/Tracecode.js
src/components/Profile/Tracecode.js
+2
-2
src/data/index.json
src/data/index.json
+1
-1
src/index.js
src/index.js
+1
-1
src/views/IndexSections/Table.js
src/views/IndexSections/Table.js
+3
-3
No files found.
src/components/Profile/AddProfile.js
View file @
5646e9e3
...
...
@@ -20,7 +20,7 @@ const AddProfile = () => {
console
.
log
(
"
list data
"
,
detailProfile
);
const
[
profileName
,
setProfileName
]
=
useState
(
profileId
?
detailProfile
.
name
:
""
);
const
[
profileCode
,
setProfileCode
]
=
useState
(
profileId
?
detailProfile
.
code
:
{}
);
const
[
profileCode
,
setProfileCode
]
=
useState
(
profileId
?
detailProfile
.
code
:
""
);
const
[
logo
,
setLogo
]
=
useState
(
profileId
?
detailProfile
.
logo
:
{});
const
[
phoneNumber
,
setPhoneNumber
]
=
useState
(
profileId
?
detailProfile
.
phone_number
:
""
);
const
[
profileAddress
,
setProfileAddress
]
=
useState
(
profileId
?
detailProfile
.
address
:
""
);
...
...
src/
views/examples
/Tracecode.js
→
src/
components/Profile
/Tracecode.js
View file @
5646e9e3
...
...
@@ -54,8 +54,8 @@ import AmazingTeam from "components/Footers/AmazingTeam.js";
// index page sections
import
Download
from
"
../IndexSections/Download.js
"
;
import
Tabs
from
"
../IndexSections/Tabs.js
"
;
import
Download
from
"
../
../views/
IndexSections/Download.js
"
;
import
Tabs
from
"
../
../views/
IndexSections/Tabs.js
"
;
const
Tracecode
=
()
=>
{
const
[
plainTabs
,
setPlainTabs
]
=
useState
(
1
);
...
...
src/data/index.json
View file @
5646e9e3
...
...
@@ -6,7 +6,7 @@
"name"
:
"Công ty TNHH sáng tạo KIS"
,
"logo"
:
"/image/logo/kis-academy.jpg"
,
"address"
:
"Tầng 5 - Technosoft Số 8 ngõ 15 Duy Tân, Dịch Vọng Hậu, Cầu Giấy, Hà Nội"
,
"phone_number"
:
"024 3795 521
8
"
,
"phone_number"
:
"024 3795 521"
,
"qr_code"
:
"/image/qrcode/qr-code.png"
,
"created_at"
:
1624870109921
,
"profile_product"
:
[
...
...
src/index.js
View file @
5646e9e3
...
...
@@ -30,10 +30,10 @@ import Landing from "views/examples/Landing.js";
import
Login
from
"
views/examples/Login.js
"
;
import
Profile
from
"
views/examples/Profile.js
"
;
import
Register
from
"
views/examples/Register.js
"
;
import
Tracecode
from
"
views/examples/Tracecode.js
"
import
NotFound
from
"
views/examples/NotFound.js
"
import
DetailProfile
from
"
./components/Profile/DetailProfile.js
"
import
SearchProfile
from
"
./components/Profile/SearchProfile.js
"
;
import
Tracecode
from
"
./components/Profile/Tracecode.js
"
// import { Routes } from "./reoutes";
ReactDOM
.
render
(
...
...
src/views/IndexSections/Table.js
View file @
5646e9e3
...
...
@@ -69,12 +69,12 @@ export const ProfileTable = (props) => {
<
tr
>
<
th
scope
=
"
row
"
>
{
""
}
<
/th
>
<
td
>
{
name
}
<
/td
>
<
td
>
{
logo
}
<
/td
>
<
td
>
<
img
src
=
{
window
.
location
.
origin
+
logo
}
alt
=
"
logo
"
width
=
{
50
}
height
=
{
50
}
/>
</
td
>
<
td
>
{
phone_number
}
<
/td
>
<
td
>
{
address
}
<
/td
>
<
td
>
{
productName
}
<
/td
>
<
td
>
{
created_at
?
profileFormatDateTime
(
created_at
)
:
""
}
<
/td
>
<
td
>
{
qr_code
}
<
/td
>
<
td
>
<
img
src
=
{
window
.
location
.
origin
+
qr_code
}
alt
=
"
qr-code
"
width
=
{
50
}
height
=
{
50
}
/>
</
td
>
<
td
key
=
{
id
}
>
<
Dropdown
size
=
"
sm
"
isOpen
=
{
dropdownOpen
}
toggle
=
{
toggle
}
>
<
DropdownToggle
caret
>
...
...
@@ -112,7 +112,7 @@ export const ProfileTable = (props) => {
<
h5
>
{
"
Thông tin doanh nghiệp
"
}
<
/h5
>
<
/Col
>
<
Col
className
=
"
text-right
"
>
<
Button
className
=
"
btn-1 ml-1
"
color
=
"
success
"
type
=
"
button
"
onClick
=
{()
=>
onHandleClickAdd
()}
>
{
"
Tạo mới doanh nghiệp
"
}
<
/Button
>
<
Button
className
=
"
btn-1 ml-1
"
color
=
"
success
"
size
=
"
sm
"
type
=
"
button
"
onClick
=
{()
=>
onHandleClickAdd
()}
>
{
"
Tạo mới doanh nghiệp
"
}
<
/Button
>
<
/Col
>
<
/Row
>
<
/CardHeader
>
...
...
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