Compare commits
7 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| cb4c741a90 | |||
| bba38affae | |||
| 9468793d91 | |||
| 44224e23ff | |||
| 5b926300ae | |||
| 9125730d2b | |||
| 00baa0b9bf |
Binary file not shown.
|
After Width: | Height: | Size: 7.5 KiB |
@@ -39,9 +39,9 @@ export default function AccPWDReset() {
|
|||||||
},
|
},
|
||||||
onSuccess: (res) => {
|
onSuccess: (res) => {
|
||||||
// console.log('res', res)
|
// console.log('res', res)
|
||||||
// if(res.data.resultCode != '0'){
|
if(res.data.resultCode != '0'){
|
||||||
// throw({message: res?.data?.resultDescription})
|
throw({message: res?.data?.resultDescription})
|
||||||
// }
|
}
|
||||||
// setUser({user:'testaccount', ...res.data})
|
// setUser({user:'testaccount', ...res.data})
|
||||||
setUser(res.data)
|
setUser(res.data)
|
||||||
},
|
},
|
||||||
@@ -76,7 +76,8 @@ export default function AccPWDReset() {
|
|||||||
const handleCompletePWDReset = (values) => {
|
const handleCompletePWDReset = (values) => {
|
||||||
let reqData = {
|
let reqData = {
|
||||||
reset_token: token,
|
reset_token: token,
|
||||||
reset_uid: "4733e96b-7031-4684-bec3-f63da4417707",
|
// reset_uid: "4733e96b-7031-4684-bec3-f63da4417707",
|
||||||
|
reset_uid: "",
|
||||||
new_password: values.password,
|
new_password: values.password,
|
||||||
}
|
}
|
||||||
resetPWD.mutate(reqData)
|
resetPWD.mutate(reqData)
|
||||||
|
|||||||
@@ -42,11 +42,11 @@ export default function Products() {
|
|||||||
:
|
:
|
||||||
<div className="row m-b-20">
|
<div className="row m-b-20">
|
||||||
{products && products.map((product, index) => (
|
{products && products.map((product, index) => (
|
||||||
<div key={product.uid+index} className="col-xxs-6 col-xl-4 col-xxl-6 mb-2 mb-xxl-0 ">
|
<div key={product.uid+index} className={`col-xxs-6 col-xl-4 col-xxl-6 mb-2 mb-xxl-0`}>
|
||||||
<Link to={productPath(product?.product_id)} >
|
<Link to={productPath(product?.product_id)} >
|
||||||
<div className="d-flex align-items-center extraProductCard">
|
<div className={`d-flex align-items-center extraProductCard ${product?.icon_style}`} >
|
||||||
<div className="icon-container img-icon m-r-20 bg-light-gray rounded">
|
<div className="icon-container img-icon m-r-20 bg-light-gray rounded">
|
||||||
<i className="fa fa-cart-plus text-primary"></i>
|
<i className={`fa ${product?.product_icon} text-primary`}></i>
|
||||||
</div>
|
</div>
|
||||||
<div className="report-details">
|
<div className="report-details">
|
||||||
<p>{product?.status_text}</p>
|
<p>{product?.status_text}</p>
|
||||||
|
|||||||
@@ -97,7 +97,9 @@ export default function ProductActive({productData}){
|
|||||||
<div className="card-header">
|
<div className="card-header">
|
||||||
<div className="card-heading d-flex justify-content-between">
|
<div className="card-heading d-flex justify-content-between">
|
||||||
<h4 className="card-title">{externalUrl}</h4>
|
<h4 className="card-title">{externalUrl}</h4>
|
||||||
<button type="button" onClick={()=>iframe.current.src += ''} className="btn btn-primary">IC</button>
|
<button type="button" onClick={()=>iframe.current.src += ''} className="btn">
|
||||||
|
<img src={getImage('refresh.png')} style={{width: '30px', height: 'auto'}} alt='refresh page' />
|
||||||
|
</button>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div className="card-body">
|
<div className="card-body">
|
||||||
|
|||||||
+8
-1
@@ -90,7 +90,14 @@ $today-highlight-bg: #fcf8e3;
|
|||||||
$btn-bg: #8e54e9;
|
$btn-bg: #8e54e9;
|
||||||
$btn-border: #8e54e9;
|
$btn-border: #8e54e9;
|
||||||
$event-padding: 10px;
|
$event-padding: 10px;
|
||||||
|
.manage{
|
||||||
|
background-color:lightgreen !important;
|
||||||
|
border-radius: 5px !important;
|
||||||
|
}
|
||||||
|
.creating{
|
||||||
|
background-color: lightyellow !important;
|
||||||
|
border-radius: 5px !important;
|
||||||
|
}
|
||||||
.billing{
|
.billing{
|
||||||
background-color: darkgoldenrod;
|
background-color: darkgoldenrod;
|
||||||
color: white;
|
color: white;
|
||||||
|
|||||||
Reference in New Issue
Block a user