|
|
|
@ -117,7 +117,7 @@ |
|
|
|
|
<gl-date-time-picker |
|
|
|
|
style="width: 424px" |
|
|
|
|
v-model="page.params.btw_createTime" |
|
|
|
|
msg="创建时间" |
|
|
|
|
msg="订单时间" |
|
|
|
|
@keyup.enter.native="getByPage" |
|
|
|
|
/> |
|
|
|
|
</el-form-item> |
|
|
|
@ -677,8 +677,8 @@ export default { |
|
|
|
|
</div> |
|
|
|
|
<div class="column-info-content"> |
|
|
|
|
<div class="column-info-content-item"> |
|
|
|
|
{row.name |
|
|
|
|
? row.name |
|
|
|
|
{row.userName |
|
|
|
|
? row.userName |
|
|
|
|
: "暂无"} |
|
|
|
|
- |
|
|
|
|
{row.phone |
|
|
|
@ -690,7 +690,7 @@ export default { |
|
|
|
|
v-show={row.payAccountType === 1} |
|
|
|
|
class="column-info-content-item" |
|
|
|
|
> |
|
|
|
|
{row.name ? row.name : "暂无"} |
|
|
|
|
{row.userName ? row.userName : "暂无"} |
|
|
|
|
</div> |
|
|
|
|
<div class="column-info-content-item" v-show={!row.editor}> |
|
|
|
|
<span>{row.plateNumber}</span> |
|
|
|
@ -845,7 +845,7 @@ export default { |
|
|
|
|
prop: "orderTime", |
|
|
|
|
minWidth: 160, |
|
|
|
|
sortable: "custom", |
|
|
|
|
label: "创建时间", |
|
|
|
|
label: "订单时间", |
|
|
|
|
show: true, |
|
|
|
|
render: (row, column, cell) => { |
|
|
|
|
return cell; |
|
|
|
@ -977,7 +977,7 @@ export default { |
|
|
|
|
methods: { |
|
|
|
|
searchUserInfo(info) { |
|
|
|
|
if (info && info !== "") { |
|
|
|
|
sysCustomerInfoApi.searchInfo(info).then((res) => { |
|
|
|
|
sysCustomerInfoApi.liekQuery(info).then((res) => { |
|
|
|
|
this.sysCustomerList = res.data; |
|
|
|
|
}); |
|
|
|
|
} |
|
|
|
@ -1287,6 +1287,10 @@ export default { |
|
|
|
|
// 分页查询 |
|
|
|
|
this.addDialog = false; |
|
|
|
|
this.page.params.convertCompanyCode = 1; |
|
|
|
|
this.page.params = Object.assign(this.page.params,{ |
|
|
|
|
dateStartTime:this.page.params.btw_createTime?this.page.params.btw_createTime.split('~')[0]:'', |
|
|
|
|
dateStartEnd:this.page.params.btw_createTime?this.page.params.btw_createTime.split('~')[1]:'' |
|
|
|
|
}) |
|
|
|
|
orderInfoApi.getByPage(this.page).then((res) => { |
|
|
|
|
this.dataPage = res.data; |
|
|
|
|
this.page.totalCount = this.dataPage.totalCount; |
|
|
|
|