Authored by 沈志敏

fix bug

... ... @@ -32,7 +32,7 @@ const refund = {
code: 200
});
},
setexpress(applyid, uid, expressCompany, expressNumber, expressId) {
setexpress(applyid, uid, expressCompany, expressId, expressNumber) {
return api.get('', {
method: 'app.refund.setexpress',
id: applyid,
... ...
<div class="logistics-page" id="logistics">
<components :is="currentView" :applyid="applyid" :company_id="company_id" :company_name="company_name" company_list='{{company_list}}' keep-alive></components>
<components :is="currentView" :company_id="company_id" :company_name="company_name" applyid='{{applyid}}' company_list='{{company_list}}' keep-alive></components>
</div>
... ...
... ... @@ -52,6 +52,9 @@
.num {
width: 440px;
text-align: right;
margin-top: 20px;
height: 50px;
line-height: 50px;
}
}
... ... @@ -84,11 +87,11 @@
border-bottom: 1px solid #e6e6e6;
input {
height: 56px;
height: 60px;
width: 100%;
padding-left: 25px;
border-radius: 20px;
font-size: 22px;
font-size: 26px;
color: #b0b0b0;
background: #eee;
border: none;
... ...
<template>
<ul class="list-box">
<li v-for="item in items"><a href="#{{item.index}}">{{item.name}}</a></li>
<li v-for="item in items"><a class="no-intercept" href="#{{item.index}}">{{item.name}}</a></li>
</ul>
</template>
<style>
... ...
... ... @@ -7,7 +7,7 @@
</label>
<label>
快递单号
<input class="num" type="number" v-model='num'>
<input class="num" maxlength="20" v-model='num'>
</label>
</form>
<div class="submit" @click="submit">确认</div>
... ...