liuhj 2 weeks ago
parent
commit
32d334ee72
1 changed files with 11 additions and 2 deletions
  1. 11 2
      src/components/OP/EntryDetails.vue

+ 11 - 2
src/components/OP/EntryDetails.vue

@@ -92,6 +92,11 @@
                                 v-model="DomesticFees.ticketsExhibitionL"></el-input-number>
                             <span>元/人;</span>
                         </div>
+                        <div class="Entry-inif-box">
+                            <label>备注:</label>
+                            <el-input style="width:900px" size="mini"
+                                v-model="DomesticFees.firstItemRemark"></el-input>
+                        </div>
                     </div>
                 </div>
                 <div class="Entry-form-li">
@@ -605,7 +610,8 @@ export default {
                 serviceCharge: 0,//服务费
                 insurance: 500,//保险费
                 ticketsExhibitionL: 0,//参展门票
-                total: 0
+                total: 0,
+                firstItemRemark:''//备注
             },
             TotalExpenses: {
                 EconomyClass: 0,//经济舱
@@ -862,7 +868,8 @@ export default {
                 serviceCharge: 0,//服务费
                 insurance: 500,//保险费
                 ticketsExhibitionL: 0,//参展门票
-                total: 0
+                total: 0,
+                firstItemRemark:''//备注
             }
             this.TotalExpenses = {
                 EconomyClass: 0,//经济舱
@@ -1363,6 +1370,7 @@ export default {
                     that.DomesticFees.serviceCharge = res.data.data.service;
                     that.DomesticFees.insurance = res.data.data.safe;
                     that.DomesticFees.ticketsExhibitionL = res.data.data.ticket;
+                    that.DomesticFees.firstItemRemark = res.data.data.firstItemRemark;
                     //国际旅费
                     that.TotalExpenses.EconomyClass = res.data.data.airJJ;
                     that.TotalExpenses.BusinessClass = res.data.data.airGW;
@@ -1914,6 +1922,7 @@ export default {
                     service: that.DomesticFees.serviceCharge,
                     ticket: that.DomesticFees.ticketsExhibitionL,
                     safe: that.DomesticFees.insurance,
+                    firstItemRemark:that.DomesticFees.firstItemRemark,
                     choiceTwo: that.choiceTwo ? 1 : 0,
                     otherExpenses_Checked: that.choiceSeven ? 1 : 0,
                     sumJJC: that.sumJJC ? 1 : 0,