mirror of
http://112.124.100.131/GFRS/ebiz-h5.git
synced 2025-12-10 11:36:45 +08:00
'出单想请修改'
This commit is contained in:
27
src/api/ebiz/billingDetail/billingDetail.js
Normal file
27
src/api/ebiz/billingDetail/billingDetail.js
Normal file
@@ -0,0 +1,27 @@
|
||||
import request from '@/assets/js/utils/request'
|
||||
import getUrl from '@/assets/js/utils/get-url'
|
||||
|
||||
//出单信息列表列表
|
||||
export function queryOutOrderList(data) {
|
||||
return request({
|
||||
url: getUrl(`/sale/order/queryOutOrderList`, 1),
|
||||
method: 'post',
|
||||
data
|
||||
})
|
||||
}
|
||||
//日期查询
|
||||
export function getDayDetail(data) {
|
||||
return request({
|
||||
url: getUrl(`/agent/Performance/getDayDetail`, 1),
|
||||
method: 'post',
|
||||
data
|
||||
})
|
||||
}
|
||||
//月历查询
|
||||
export function getMonthDetail(data) {
|
||||
return request({
|
||||
url: getUrl(`/agent/Performance/getMonthDetail`, 1),
|
||||
method: 'post',
|
||||
data
|
||||
})
|
||||
}
|
||||
@@ -18,7 +18,6 @@
|
||||
</template>
|
||||
</div>
|
||||
<div class="filterDate">
|
||||
<div class="number">总预收标保:100万元</div>
|
||||
<div class="filterTime">
|
||||
<!-- <van-field
|
||||
:value="filterDate"
|
||||
@@ -35,13 +34,17 @@
|
||||
name=""
|
||||
:isDefault="true"
|
||||
:value.sync="filterDate"
|
||||
type="datetime"
|
||||
type="year-month"
|
||||
:flag="true"
|
||||
placeholder="时间筛选"
|
||||
@confirm="onDateConfirm($event, '2')"
|
||||
:maxDate="maxDate"
|
||||
></FieldDatePicter>
|
||||
</div>
|
||||
<div class="number">
|
||||
<van-button type="danger" size="small">当月</van-button>
|
||||
<van-button type="danger" plain size="small">当天</van-button>
|
||||
</div>
|
||||
</div>
|
||||
<div class="table">
|
||||
<tableDetail :theads="theads" :tableData="tableData"></tableDetail>
|
||||
@@ -108,12 +111,14 @@ export default {
|
||||
tableData: [],
|
||||
maxDate: new Date(),
|
||||
filterDate: '',
|
||||
postDate:'',//实际给后台传的时间
|
||||
// 二级机构筛选是否显示
|
||||
isOrgLv2ConditionShow: false,
|
||||
// 三级机构筛选是否显示
|
||||
isOrgLv3ConditionShow: false,
|
||||
// 四级机构筛选是否显示
|
||||
isOrgLv4ConditionShow: false,
|
||||
orgCode:0,
|
||||
OrgLv2Name: '全国',
|
||||
OrgLv4Name: '全部',
|
||||
OrgLv3Name: '全部',
|
||||
@@ -163,6 +168,12 @@ export default {
|
||||
} else {
|
||||
this.$toast(res.resultMessage)
|
||||
}
|
||||
queryOutOrderList({
|
||||
appntDate:new Date(),
|
||||
orgCode:this.orgCode,
|
||||
}).then(res=>{
|
||||
|
||||
})
|
||||
// 查询默认数据
|
||||
// const result = await this.getRankData()
|
||||
// this.setSummarizingData(result)
|
||||
|
||||
Reference in New Issue
Block a user