|
|
|
@ -85,8 +85,7 @@ |
|
|
|
</view> |
|
|
|
<view class="justify-between group_17" @click="pickerShow(true)"> |
|
|
|
<view class="flex-row group_18"> |
|
|
|
<text class="text_17">是否快评:</text> |
|
|
|
<text class="text_18">(价格翻倍)</text> |
|
|
|
<text class="text_17">选择档位:</text> |
|
|
|
</view> |
|
|
|
|
|
|
|
<view class="pick-panel"> |
|
|
|
@ -145,6 +144,7 @@ |
|
|
|
<script> |
|
|
|
import { dispose } from '@/common/directoss.js'; |
|
|
|
import { checkAgentCode } from '@/service/index.js'; |
|
|
|
import { address } from '@/service/address.js'; |
|
|
|
|
|
|
|
export default { |
|
|
|
data() { |
|
|
|
@ -195,10 +195,16 @@ |
|
|
|
}) |
|
|
|
//t = [...t,...texts]; |
|
|
|
this.columns.push(texts) |
|
|
|
|
|
|
|
this.defaultAddress(); |
|
|
|
} |
|
|
|
}, |
|
|
|
methods: { |
|
|
|
async defaultAddress(){ |
|
|
|
let res = await address(); |
|
|
|
if(res.data.datas.length > 0){ |
|
|
|
this.address = res.data.datas[0]; |
|
|
|
} |
|
|
|
}, |
|
|
|
checkCoupon(event){ |
|
|
|
if(this.couponTimer){ |
|
|
|
clearTimeout(this.couponTimer); |
|
|
|
|