Authored by 沈志敏

fix bug

@@ -32,7 +32,7 @@ const refund = { @@ -32,7 +32,7 @@ const refund = {
32 code: 200 32 code: 200
33 }); 33 });
34 }, 34 },
35 - setexpress(applyid, uid, expressCompany, expressNumber, expressId) { 35 + setexpress(applyid, uid, expressCompany, expressId, expressNumber) {
36 return api.get('', { 36 return api.get('', {
37 method: 'app.refund.setexpress', 37 method: 'app.refund.setexpress',
38 id: applyid, 38 id: applyid,
1 <div class="logistics-page" id="logistics"> 1 <div class="logistics-page" id="logistics">
2 - <components :is="currentView" :applyid="applyid" :company_id="company_id" :company_name="company_name" company_list='{{company_list}}' keep-alive></components> 2 + <components :is="currentView" :company_id="company_id" :company_name="company_name" applyid='{{applyid}}' company_list='{{company_list}}' keep-alive></components>
3 </div> 3 </div>
@@ -52,6 +52,9 @@ @@ -52,6 +52,9 @@
52 .num { 52 .num {
53 width: 440px; 53 width: 440px;
54 text-align: right; 54 text-align: right;
  55 + margin-top: 20px;
  56 + height: 50px;
  57 + line-height: 50px;
55 } 58 }
56 } 59 }
57 60
@@ -84,11 +87,11 @@ @@ -84,11 +87,11 @@
84 border-bottom: 1px solid #e6e6e6; 87 border-bottom: 1px solid #e6e6e6;
85 88
86 input { 89 input {
87 - height: 56px; 90 + height: 60px;
88 width: 100%; 91 width: 100%;
89 padding-left: 25px; 92 padding-left: 25px;
90 border-radius: 20px; 93 border-radius: 20px;
91 - font-size: 22px; 94 + font-size: 26px;
92 color: #b0b0b0; 95 color: #b0b0b0;
93 background: #eee; 96 background: #eee;
94 border: none; 97 border: none;
1 <template> 1 <template>
2 <ul class="list-box"> 2 <ul class="list-box">
3 - <li v-for="item in items"><a href="#{{item.index}}">{{item.name}}</a></li> 3 + <li v-for="item in items"><a class="no-intercept" href="#{{item.index}}">{{item.name}}</a></li>
4 </ul> 4 </ul>
5 </template> 5 </template>
6 <style> 6 <style>
@@ -7,7 +7,7 @@ @@ -7,7 +7,7 @@
7 </label> 7 </label>
8 <label> 8 <label>
9 快递单号 9 快递单号
10 - <input class="num" type="number" v-model='num'> 10 + <input class="num" maxlength="20" v-model='num'>
11 </label> 11 </label>
12 </form> 12 </form>
13 <div class="submit" @click="submit">确认</div> 13 <div class="submit" @click="submit">确认</div>