Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
G
gaohuaxue-mobile-app
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
project
gaohuaxue-mobile-app
Commits
e19a85bc
Commit
e19a85bc
authored
May 17, 2023
by
chen
1
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix: 修复:确认询价报价(服务消费者)详情报价按钮显示不对和列表未显示商品示图片的问题
parent
7d567154
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
18 additions
and
18 deletions
+18
-18
index.tsx
...quiryOrder/EnsureInquiryDetails/components/Foot/index.tsx
+9
-9
index.tsx
...ws/EnsureInquiryOrder/components/CheckOrderItem/index.tsx
+8
-9
styles.ts
...ws/EnsureInquiryOrder/components/CheckOrderItem/styles.ts
+1
-0
No files found.
src/views/EnsureInquiryOrder/EnsureInquiryDetails/components/Foot/index.tsx
View file @
e19a85bc
...
@@ -40,7 +40,7 @@ const Foot = (props: Iprops) => {
...
@@ -40,7 +40,7 @@ const Foot = (props: Iprops) => {
}
}
};
};
// 提交审核
// 提交审核
const
handleSubmit
=
()
=>
{
const
handleSubmit
=
()
=>
{
if
(
!
agreeOrRefuseFlg
&&
!
reason
)
{
if
(
!
agreeOrRefuseFlg
&&
!
reason
)
{
Toast
.
show
(
`
${
placeholderStr
}
`
);
Toast
.
show
(
`
${
placeholderStr
}
`
);
...
@@ -51,7 +51,7 @@ const Foot = (props: Iprops) => {
...
@@ -51,7 +51,7 @@ const Foot = (props: Iprops) => {
state
:
agreeOrRefuseFlg
?
1
:
0
,
state
:
agreeOrRefuseFlg
?
1
:
0
,
auditOpinion
:
reason
auditOpinion
:
reason
};
};
const
requApi
=
inputType
===
2
?
const
requApi
=
inputType
===
2
?
postTransactionMobileNotarizeEnquiryQuotedPriceSubmit
:
postTransactionMobileNotarizeEnquiryQuotedPriceAffirm
postTransactionMobileNotarizeEnquiryQuotedPriceSubmit
:
postTransactionMobileNotarizeEnquiryQuotedPriceAffirm
requApi
(
param
).
then
((
res
:
any
)
=>
{
requApi
(
param
).
then
((
res
:
any
)
=>
{
if
(
res
.
code
===
1000
)
{
if
(
res
.
code
===
1000
)
{
...
@@ -61,10 +61,10 @@ const Foot = (props: Iprops) => {
...
@@ -61,10 +61,10 @@ const Foot = (props: Iprops) => {
Toast
.
show
(
res
.
message
);
Toast
.
show
(
res
.
message
);
}
}
});
});
};
};
// 显示/隐藏 模态框输入框 type: true-同意 2-拒绝 index: 1-报价 2-审核
// 显示/隐藏 模态框输入框 type: true-同意 2-拒绝 index: 1-报价 2-审核
const
handleVisible
=
(
flg
:
boolean
,
type
:
boolean
,
index
:
number
)
=>
{
const
handleVisible
=
(
flg
:
boolean
,
type
:
boolean
,
index
:
number
)
=>
{
setInputType
(
index
)
setInputType
(
index
)
...
@@ -98,10 +98,10 @@ const Foot = (props: Iprops) => {
...
@@ -98,10 +98,10 @@ const Foot = (props: Iprops) => {
</
Text
>
</
Text
>
</
View
>
</
View
>
);
);
}
}
if
(
if
(
outerStatus
===
4
status
===
4
)
{
)
{
return
(
return
(
<
View
style=
{
[
myStyle
.
foot
,
myStyle
.
flex
]
}
>
<
View
style=
{
[
myStyle
.
foot
,
myStyle
.
flex
]
}
>
...
@@ -113,10 +113,10 @@ const Foot = (props: Iprops) => {
...
@@ -113,10 +113,10 @@ const Foot = (props: Iprops) => {
</
Text
>
</
Text
>
</
View
>
</
View
>
);
);
}
}
};
};
const
ChangeReason
=
(
value
:
any
)
=>
{
const
ChangeReason
=
(
value
:
any
)
=>
{
setReason
(
value
)
setReason
(
value
)
...
...
src/views/EnsureInquiryOrder/components/CheckOrderItem/index.tsx
View file @
e19a85bc
...
@@ -31,7 +31,7 @@ const CheckOrderItem = (props: any) => {
...
@@ -31,7 +31,7 @@ const CheckOrderItem = (props: any) => {
label
=
t
(
'order.inquiry.index.innerStatus5'
,
'提交'
);
label
=
t
(
'order.inquiry.index.innerStatus5'
,
'提交'
);
break
;
break
;
}
}
return
(
return
(
<>
<>
{
label
?
(
{
label
?
(
...
@@ -55,7 +55,7 @@ const CheckOrderItem = (props: any) => {
...
@@ -55,7 +55,7 @@ const CheckOrderItem = (props: any) => {
2
,
2
,
0
,
0
,
t
(
'order.inquiry.index.day'
,
'天'
)
t
(
'order.inquiry.index.day'
,
'天'
)
);
);
fmtText
.
splice
(
fmtText
.
splice
(
5
,
5
,
...
@@ -99,13 +99,13 @@ const CheckOrderItem = (props: any) => {
...
@@ -99,13 +99,13 @@ const CheckOrderItem = (props: any) => {
)
:
null
}
)
:
null
}
</
View
>
</
View
>
{
/* -------------------------- */
}
{
/* -------------------------- */
}
<
View
style=
{
myStyle
[
'box-bottome'
]
}
>
<
View
style=
{
myStyle
[
'box-bottome'
]
}
>
<
View
style=
{
myStyle
[
'box-bottome-container'
]
}
>
<
View
style=
{
myStyle
[
'box-bottome-container'
]
}
>
<
View
style=
{
myStyle
[
'box-article'
]
}
>
<
View
style=
{
myStyle
[
'box-article'
]
}
>
<
View
style=
{
myStyle
[
'box-line'
]
}
></
View
>
<
View
style=
{
myStyle
[
'box-line'
]
}
></
View
>
</
View
>
</
View
>
<
View
>
<
View
style=
{
{
width
:
'94%'
}
}
>
<
View
style=
{
myStyle
[
'box-bottome-title'
]
}
>
<
View
style=
{
myStyle
[
'box-bottome-title'
]
}
>
<
Image
style=
{
myStyle
[
'box-bottome-block'
]
}
source=
{
BaoIcon
}
/>
<
Image
style=
{
myStyle
[
'box-bottome-block'
]
}
source=
{
BaoIcon
}
/>
<
Text
style=
{
myStyle
[
'box-bottome-title-text'
]
}
>
<
Text
style=
{
myStyle
[
'box-bottome-title-text'
]
}
>
...
@@ -132,11 +132,10 @@ const CheckOrderItem = (props: any) => {
...
@@ -132,11 +132,10 @@ const CheckOrderItem = (props: any) => {
</
View
>
</
View
>
</
View
>
</
View
>
<
View
style=
{
myStyle
[
'box-bottome-content-right'
]
}
>
<
View
style=
{
myStyle
[
'box-bottome-content-right'
]
}
>
{
/* source={{ uri: products.logo }} */
}
<
Image
{
/* <Image
source=
{
{
uri
:
item
.
imgUrl
}
}
source={lingxi_icon}
style=
{
myStyle
[
'box-bottome-content-right-img'
]
}
style={myStyle['box-bottome-content-right-img']}
/>
/> */
}
</
View
>
</
View
>
</
View
>
</
View
>
{
/* 这里~~~~~~· */
}
{
/* 这里~~~~~~· */
}
...
...
src/views/EnsureInquiryOrder/components/CheckOrderItem/styles.ts
View file @
e19a85bc
...
@@ -204,6 +204,7 @@ export default (theme: ThemeStyle) =>
...
@@ -204,6 +204,7 @@ export default (theme: ThemeStyle) =>
'box-bottome-content-right-img'
:
{
'box-bottome-content-right-img'
:
{
height
:
48
,
height
:
48
,
width
:
48
,
width
:
48
,
borderRadius
:
4
},
},
'box-bottome-foot'
:
{
'box-bottome-foot'
:
{
height
:
35
,
height
:
35
,
...
...
赵振东
@zhaozhendong
mentioned in commit
6017fef1
·
May 17, 2023
mentioned in commit
6017fef1
mentioned in commit 6017fef1676f7a7050a6e775f098cd88af92774d
Toggle commit list
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