Commit 0fffb416 authored by 黄奎's avatar 黄奎

页面修改

parent eccf86db
...@@ -82,7 +82,7 @@ ...@@ -82,7 +82,7 @@
<li v-for="item in dataList" :key="item.ID" style="padding:0 15px;"> <li v-for="item in dataList" :key="item.ID" style="padding:0 15px;">
<div class="Audit_left" style="width:140px"> <div class="Audit_left" style="width:140px">
<div> <div>
<span>号:{{item.ID}}</span> <span>报价单号:{{item.ID}}</span>
</div> </div>
<div style="margin-top:1px">类型: <div style="margin-top:1px">类型:
<template v-if="item.TeamType==1"> <template v-if="item.TeamType==1">
...@@ -119,7 +119,6 @@ ...@@ -119,7 +119,6 @@
class="iconfont icon-richeng"></i> class="iconfont icon-richeng"></i>
<span>{{item.CustomerName}}</span> <span>{{item.CustomerName}}</span>
</p> </p>
</div> </div>
</div> </div>
<div class="Audian_cent" style="width:260px;"> <div class="Audian_cent" style="width:260px;">
...@@ -257,8 +256,6 @@ ...@@ -257,8 +256,6 @@
<el-pagination background @current-change="handleCurrentChange" :current-page.sync="currentPage" <el-pagination background @current-change="handleCurrentChange" :current-page.sync="currentPage"
layout="total,prev, pager, next, jumper" :page-size="queryData.pageSize" :total="total"> layout="total,prev, pager, next, jumper" :page-size="queryData.pageSize" :total="total">
</el-pagination> </el-pagination>
</div> </div>
</template> </template>
<script> <script>
......
...@@ -499,7 +499,7 @@ ...@@ -499,7 +499,7 @@
</td> </td>
</tr> </tr>
<tr v-if="IsEdit==2"> <tr v-if="IsEdit==2">
<td colspan="12" style="text-align:center;"> <td colspan="13" style="text-align:center;">
<input type="button" class="normalBtn" value="同意" @click="SubSaveType(3)" /> <input type="button" class="normalBtn" value="同意" @click="SubSaveType(3)" />
<input type="button" class="normalBtn" value="拒绝" @click="SubSaveType(4)" /> <input type="button" class="normalBtn" value="拒绝" @click="SubSaveType(4)" />
</td> </td>
......
...@@ -266,9 +266,15 @@ ...@@ -266,9 +266,15 @@
if (tempData.NightNum && tempData.NightNum > 0) { if (tempData.NightNum && tempData.NightNum > 0) {
this.postData.NightNum = tempData.NightNum; this.postData.NightNum = tempData.NightNum;
} }
this.postData.CustomerName = tempData.CustomerName; if (tempData.CustomerName) {
this.postData.OutDateTime = tempData.OutDateTime; this.postData.CustomerName = tempData.CustomerName;
this.postData.OutBranchId = Number(tempData.OutBranchId); }
if (tempData.OutDateTime) {
this.postData.OutDateTime = tempData.OutDateTime;
}
if (tempData.OutBranchId) {
this.postData.OutBranchId = Number(tempData.OutBranchId);
}
this.postData.OfferPayType = tempData.OfferPayType; this.postData.OfferPayType = tempData.OfferPayType;
this.postData.SaleOfferPayType = tempData.SaleOfferPayType; this.postData.SaleOfferPayType = tempData.SaleOfferPayType;
this.postData.TravelState = tempData.TravelState; this.postData.TravelState = tempData.TravelState;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment