Toggle navigation
Toggle navigation
This project
Loading...
Sign in
fe
/
xianyu-ufo-app-web
·
Commits
Go to a project
GitLab
Go to group
Project
Activity
Files
Commits
Pipelines
0
Builds
0
Graphs
Milestones
Issues
0
Merge Requests
0
Members
Labels
Wiki
Forks
Network
Create a new issue
Download as
Email Patches
Plain Diff
Browse Files
Authored by
邱骏
5 years ago
Commit
b6042ca49c500bbf53b88293a4cf5c9421037c76
1 parent
5ca8fd61
修改调价样式
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
6 additions
and
1 deletions
apps/components/change-bid-price-dialog/change-bid-price-dialog.vue
apps/pages/order/mixin/order-action.js
apps/store/order/order-list.js
apps/components/change-bid-price-dialog/change-bid-price-dialog.vue
View file @
b6042ca
...
...
@@ -8,7 +8,7 @@
</p>
<p class="price-item">
<span>当前最高求购价:</span>
<span>¥{{ goodsInfo.bidHighestPrice }}</span>
<span>¥{{ goodsInfo.bidHighestPrice
.toFixed(2)
}}</span>
</p>
<p v-if="goodsInfo.leastPrice" class="price-item">
<span>最低现货价:</span>
...
...
apps/pages/order/mixin/order-action.js
View file @
b6042ca
...
...
@@ -176,6 +176,7 @@ export default {
}
case
orderActionsMap
.
CHANGE_BID_PRICE
.
name
:
{
console
.
log
(
goodsInfo
);
const
{
goodPrice
}
=
goodsInfo
;
const
computePriceInfo
=
await
this
.
computeChangePrice
({
orderCode
,
...
...
apps/store/order/order-list.js
View file @
b6042ca
...
...
@@ -143,6 +143,8 @@ export default function() {
orderCode
,
});
console
.
log
(
res
);
return
res
.
code
===
200
?
res
.
data
:
null
;
},
...
...
@@ -156,6 +158,8 @@ export default function() {
},
);
console
.
log
(
res
);
return
res
.
code
===
200
?
res
.
data
:
res
.
message
||
''
;
},
...
...
Please
register
or
login
to post a comment