提现、地图更新
This commit is contained in:
parent
45a141415a
commit
f41444f00a
|
@ -78,7 +78,7 @@ export default {
|
|||
this.doPlaceSearch(this.keyword);
|
||||
} else {
|
||||
let city = this.area.city === '市辖区' ? this.area.province : this.area.city;
|
||||
this.doPlaceSearch(city);
|
||||
this.doPlaceSearch(city + '人民政府');
|
||||
}
|
||||
},
|
||||
initAMap() {
|
||||
|
|
|
@ -1,26 +1,26 @@
|
|||
<template>
|
||||
<div class="app-container">
|
||||
<el-form :model="queryParams" ref="queryForm" size="small" :inline="true" v-show="showSearch" label-width="68px">
|
||||
<el-form-item label="用户" prop="userId">
|
||||
<el-form-item label="用户名称" prop="userId">
|
||||
<el-input
|
||||
v-model="queryParams.userName"
|
||||
placeholder="请输入用户"
|
||||
placeholder="请输入用户名称"
|
||||
clearable
|
||||
@keyup.enter.native="handleQuery"
|
||||
/>
|
||||
</el-form-item>
|
||||
<el-form-item label="设备" prop="deviceId">
|
||||
<el-form-item label="设备名称" prop="deviceId">
|
||||
<el-input
|
||||
v-model="queryParams.deviceName"
|
||||
placeholder="请输入设备"
|
||||
placeholder="请输入设备名称"
|
||||
clearable
|
||||
@keyup.enter.native="handleQuery"
|
||||
/>
|
||||
</el-form-item>
|
||||
<el-form-item label="房东(到账用户)" label-width="120" prop="landlordId">
|
||||
<el-form-item label="商户名称" label-width="120" prop="landlordId">
|
||||
<el-input
|
||||
v-model="queryParams.landlordName"
|
||||
placeholder="请输入房东"
|
||||
v-model="queryParams.mchName"
|
||||
placeholder="请输入商户名称"
|
||||
clearable
|
||||
@keyup.enter.native="handleQuery"
|
||||
/>
|
||||
|
@ -32,38 +32,6 @@
|
|||
</el-form>
|
||||
|
||||
<el-row :gutter="10" class="mb8">
|
||||
<!-- <el-col :span="1.5">-->
|
||||
<!-- <el-button-->
|
||||
<!-- type="primary"-->
|
||||
<!-- plain-->
|
||||
<!-- icon="el-icon-plus"-->
|
||||
<!-- size="mini"-->
|
||||
<!-- @click="handleAdd"-->
|
||||
<!-- v-hasPermi="['system:bill:add']"-->
|
||||
<!-- >新增</el-button>-->
|
||||
<!-- </el-col>-->
|
||||
<!-- <el-col :span="1.5">-->
|
||||
<!-- <el-button-->
|
||||
<!-- type="success"-->
|
||||
<!-- plain-->
|
||||
<!-- icon="el-icon-edit"-->
|
||||
<!-- size="mini"-->
|
||||
<!-- :disabled="single"-->
|
||||
<!-- @click="handleUpdate"-->
|
||||
<!-- v-hasPermi="['system:bill:edit']"-->
|
||||
<!-- >修改</el-button>-->
|
||||
<!-- </el-col>-->
|
||||
<!-- <el-col :span="1.5">-->
|
||||
<!-- <el-button-->
|
||||
<!-- type="danger"-->
|
||||
<!-- plain-->
|
||||
<!-- icon="el-icon-delete"-->
|
||||
<!-- size="mini"-->
|
||||
<!-- :disabled="multiple"-->
|
||||
<!-- @click="handleDelete"-->
|
||||
<!-- v-hasPermi="['system:bill:remove']"-->
|
||||
<!-- >删除</el-button>-->
|
||||
<!-- </el-col>-->
|
||||
<el-col :span="1.5">
|
||||
<el-button
|
||||
type="warning"
|
||||
|
@ -79,8 +47,9 @@
|
|||
|
||||
<el-table v-loading="loading" :data="billList" @selection-change="handleSelectionChange">
|
||||
<el-table-column type="selection" width="55" align="center" />
|
||||
<el-table-column label="主键" align="center" prop="billId" />
|
||||
<el-table-column label="到账用户" align="center" prop="landlordName" />
|
||||
<el-table-column label="ID" align="center" prop="billId" width="50"/>
|
||||
<el-table-column label="提现单号" align="center" prop="billNo" />
|
||||
<el-table-column label="到账用户" align="center" prop="mchName" />
|
||||
<el-table-column label="提现金额" align="center">
|
||||
<template slot-scope="d">
|
||||
{{d.row.money | money}}
|
||||
|
@ -99,7 +68,7 @@
|
|||
<el-table-column label="时间" align="center" prop="createTime" width="180"/>
|
||||
<el-table-column label="打款方式" align="center">
|
||||
<template slot-scope="d">
|
||||
<dict-tag :value="d.row.payType" :options="dict.type.sm_transaction_bill_pay_type"/>
|
||||
<dict-tag :value="d.row.channelId" :options="dict.type.sm_transaction_bill_pay_type"/>
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column label="交易状态" align="center">
|
||||
|
@ -218,7 +187,7 @@ export default {
|
|||
pageSize: 10,
|
||||
userName: null,
|
||||
deviceName: null,
|
||||
landlordName: null,
|
||||
mchName: null,
|
||||
type: "2", // 提现
|
||||
},
|
||||
// 表单参数
|
||||
|
|
Loading…
Reference in New Issue
Block a user