Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
M
merchant-manage-ui
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
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
ui
merchant-manage-ui
Commits
4ad59101
Commit
4ad59101
authored
Jun 20, 2023
by
张子雨
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
feat: 修改sentry
parent
255c62e6
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
3 additions
and
3 deletions
+3
-3
upload.jsx
src/pages/PaymentMange/ToExamine/upload.jsx
+1
-0
FormAttr.jsx
src/pages/ServiceGoods/components/FormAttr.jsx
+1
-1
index.jsx
...ingDeliveryOrder/components/MultiLogisticsModal/index.jsx
+1
-1
websocket.js
src/utils/websocket.js
+0
-1
No files found.
src/pages/PaymentMange/ToExamine/upload.jsx
View file @
4ad59101
...
@@ -122,6 +122,7 @@ class PicturesWall extends React.Component {
...
@@ -122,6 +122,7 @@ class PicturesWall extends React.Component {
listType=
"text"
listType=
"text"
fileList=
{
fileList
}
fileList=
{
fileList
}
onRemove=
{
status
===
1
?
this
.
clearFileList
:
''
}
onRemove=
{
status
===
1
?
this
.
clearFileList
:
''
}
accept=
".pdf,.doc,.docx,.zip,.rar,.png,.jpeg"
>
>
{
max
&&
fileList
.
length
>=
max
?
null
:
uploadButton
}
{
max
&&
fileList
.
length
>=
max
?
null
:
uploadButton
}
</
Upload
>
</
Upload
>
...
...
src/pages/ServiceGoods/components/FormAttr.jsx
View file @
4ad59101
...
@@ -147,7 +147,7 @@ const FormAttr = forwardRef((props, ref) => {
...
@@ -147,7 +147,7 @@ const FormAttr = forwardRef((props, ref) => {
if
(
typeof
values
[
item
]
===
'
string
'
)
{
if
(
typeof
values
[
item
]
===
'
string
'
)
{
obj
.
productAttributeApplyValueList
=
JSON
.
parse
(
values
[
item
]);
obj
.
productAttributeApplyValueList
=
JSON
.
parse
(
values
[
item
]);
}
else
{
}
else
{
obj
.
productAttributeApplyValueList
=
values
[
item
]
.
map
(
v
=>
JSON
.
parse
(
v
))
;
obj
.
productAttributeApplyValueList
=
values
[
item
]
?.
map
(
v
=>
JSON
.
parse
(
v
))
||
[]
;
}
}
return
obj
;
return
obj
;
});
});
...
...
src/pages/orderManage/pendingDeliveryOrder/components/MultiLogisticsModal/index.jsx
View file @
4ad59101
...
@@ -287,7 +287,7 @@ const UpdateStatusModal = (props, ref) => {
...
@@ -287,7 +287,7 @@ const UpdateStatusModal = (props, ref) => {
setConfirmLoading
(
true
);
setConfirmLoading
(
true
);
const
res
=
await
submitApi
(
params
);
const
res
=
await
submitApi
(
params
);
setConfirmLoading
(
false
);
setConfirmLoading
(
false
);
if
(
res
.
code
===
'
0000
'
&&
res
.
businessCode
===
'
0000
'
)
{
if
(
res
?.
code
===
'
0000
'
&&
res
?
.
businessCode
===
'
0000
'
)
{
notification
.
success
({
notification
.
success
({
message
:
'
提交成功
'
,
message
:
'
提交成功
'
,
});
});
...
...
src/utils/websocket.js
View file @
4ad59101
...
@@ -12,7 +12,6 @@ class Socket extends EventEmitter {
...
@@ -12,7 +12,6 @@ class Socket extends EventEmitter {
this
.
taskRemindInterval
=
null
;
this
.
taskRemindInterval
=
null
;
this
.
connected
=
false
;
this
.
connected
=
false
;
this
.
waitingSendData
=
[];
this
.
waitingSendData
=
[];
this
.
reconnectCount
=
0
;
this
.
heartBeatTimer
=
null
;
this
.
heartBeatTimer
=
null
;
return
this
;
return
this
;
}
}
...
...
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