...
|
...
|
@@ -2,6 +2,7 @@ |
|
|
<template>
|
|
|
<LayoutApp :show-back="true" title="出价求购">
|
|
|
<div class="body" ref="body">
|
|
|
<Scroll :options="options">
|
|
|
<div class="topContainer">
|
|
|
<!--<div class="topView">-->
|
|
|
<!--<div class="title"></div>-->
|
...
|
...
|
@@ -73,6 +74,7 @@ |
|
|
<div class="line"></div>
|
|
|
|
|
|
</div>
|
|
|
</Scroll>
|
|
|
</div>
|
|
|
<div class="bottomContainer">
|
|
|
<OrderAgree :value="isAgreeTerms" @input="isAgreeTerms = !isAgreeTerms" class="agree-wrapper" :desc="agreeDesc" :url="url"></OrderAgree>
|
...
|
...
|
@@ -85,7 +87,7 @@ |
|
|
|
|
|
<script>
|
|
|
|
|
|
import {Input, Button} from 'cube-ui';
|
|
|
import {Input, Button, Scroll} from 'cube-ui';
|
|
|
import OrderAddress from './components/confirm/address';
|
|
|
import DayChoose from './components/askorder/day-choose';
|
|
|
import OrderAgree from './components/confirm/agree';
|
...
|
...
|
@@ -103,6 +105,7 @@ export default { |
|
|
Input,
|
|
|
OrderAddress,
|
|
|
Button,
|
|
|
Scroll,
|
|
|
},
|
|
|
data() {
|
|
|
return {
|
...
|
...
|
@@ -111,6 +114,7 @@ export default { |
|
|
url: 'https://activity.yoho.cn/feature/6775.html?share_id=9481&title=%E9%97%B2%E9%B1%BC%E4%B9%B0%E5%AE%B6%E5%8D%8F%E8%AE%AE',
|
|
|
agreeDesc: '有货买家协议',
|
|
|
submitText: '提交',
|
|
|
options: {pullDownRefresh: false}
|
|
|
};
|
|
|
},
|
|
|
|
...
|
...
|
|