|  |  |  | 
|---|
|  |  |  | <div class="panel-body" id="app" v-cloak> | 
|---|
|  |  |  | <el-row> | 
|---|
|  |  |  | <el-card class="box-card" style="background-color: #0a628f;"> | 
|---|
|  |  |  | <div style="padding:10px;font-size: 20px;">¥{{basicdetail.balance}}</div> | 
|---|
|  |  |  | <div style="padding:10px;font-size: 20px;">¥{{basicdetail.orderBalance}}</div> | 
|---|
|  |  |  | <div>订单总金额</div> | 
|---|
|  |  |  | </el-card > | 
|---|
|  |  |  | <el-card class="box-card" style="background-color: #0f9aef;"> | 
|---|
|  |  |  | <div style="padding:10px;font-size: 20px;">¥{{basicdetail.balance}}</div> | 
|---|
|  |  |  | <div>待计算金额</div> | 
|---|
|  |  |  | <div>待结算金额</div> | 
|---|
|  |  |  | </el-card > | 
|---|
|  |  |  | <el-card class="box-card" style="background: #67C23A;"> | 
|---|
|  |  |  | <div style="padding:10px;font-size: 20px;">{{basicdetail.waitNum}}人</div> | 
|---|
|  |  |  | 
|---|
|  |  |  | </el-form-item> | 
|---|
|  |  |  | <el-button type="primary" @click="search" >搜索</el-button> | 
|---|
|  |  |  | <el-button @click="resetForm('form')">重置</el-button> | 
|---|
|  |  |  | <el-button>导出</el-button> | 
|---|
|  |  |  | <el-button @click="excelExport">导出</el-button> | 
|---|
|  |  |  | </el-form> | 
|---|
|  |  |  | </el-col> | 
|---|
|  |  |  | </el-row> | 
|---|
|  |  |  | 
|---|
|  |  |  | } | 
|---|
|  |  |  | }); | 
|---|
|  |  |  | }, | 
|---|
|  |  |  | excelExport() { | 
|---|
|  |  |  | var jsonParam = this.getRequestParam(); | 
|---|
|  |  |  | var param = ""; | 
|---|
|  |  |  | Object.keys(jsonParam).forEach(function(key){ | 
|---|
|  |  |  | if (jsonParam[key]) { | 
|---|
|  |  |  | param += key + "=" + jsonParam[key] + "&"; | 
|---|
|  |  |  | } | 
|---|
|  |  |  | }); | 
|---|
|  |  |  | window.location.href=basePath+"/fenXiao/fenXiaoOrder/exportExcel?"+param; | 
|---|
|  |  |  | } | 
|---|
|  |  |  | } | 
|---|
|  |  |  | }) | 
|---|
|  |  |  | </script> | 
|---|