1.资金流水放出手机号和查询
This commit is contained in:
parent
9076828e64
commit
2c9695f6c5
|
@ -148,6 +148,20 @@ export const dynamicRoutes = [
|
|||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
path: '/system/user/userName',
|
||||
component: Layout,
|
||||
hidden: true,
|
||||
permissions: ['system:user:list'],
|
||||
children: [
|
||||
{
|
||||
path: 'index/:ownerPhone',
|
||||
component: () => import('@/views/system/user'),
|
||||
name: 'Data',
|
||||
meta: { title: '管理员列表', activeMenu: '/system/user' }
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
path: '/system/device/sn',
|
||||
component: Layout,
|
||||
|
|
|
@ -20,14 +20,14 @@
|
|||
@keyup.enter.native="handleQuery"
|
||||
/>
|
||||
</el-form-item>
|
||||
<!-- <el-form-item label="第三方交易单号" label-width="100" prop="outTradeNo">-->
|
||||
<!-- <el-input-->
|
||||
<!-- v-model="queryParams.outTradeNo"-->
|
||||
<!-- placeholder="请输入第三方交易单号"-->
|
||||
<!-- clearable-->
|
||||
<!-- @keyup.enter.native="handleQuery"-->
|
||||
<!-- />-->
|
||||
<!-- </el-form-item>-->
|
||||
<el-form-item label="所属人电话" label-width="100" prop="ownerPhone">
|
||||
<el-input
|
||||
v-model="queryParams.ownerPhone"
|
||||
placeholder="请输入所属人电话"
|
||||
clearable
|
||||
@keyup.enter.native="handleQuery"
|
||||
/>
|
||||
</el-form-item>
|
||||
<el-form-item label="收支类型" prop="type">
|
||||
<el-select style="width: 100px" v-model="queryParams.type" placeholder="请选择收支类型" clearable>
|
||||
<el-option
|
||||
|
@ -109,6 +109,13 @@
|
|||
</el-table-column>
|
||||
<el-table-column label="区域" align="center" prop="areaName" />
|
||||
<el-table-column label="所属人" align="center" prop="owner" />
|
||||
<el-table-column label="所属人电话" align="center" prop="ownerPhone" >
|
||||
<template slot-scope="scope">
|
||||
<router-link :to="'/system/user/userName/index/' + scope.row.ownerPhone" class="link-type">
|
||||
<span>{{ scope.row.ownerPhone }}</span>
|
||||
</router-link>
|
||||
</template>
|
||||
</el-table-column>
|
||||
<!-- <el-table-column label="关联订单号" width="180" align="center" prop="orderNo" />-->
|
||||
<el-table-column align="center" label="关联订单号" width="180" prop="orderNo">
|
||||
<template slot-scope="scope">
|
||||
|
|
|
@ -513,6 +513,10 @@ export default {
|
|||
created() {
|
||||
console.log("当前用户信息:",this.$store.state.user.name)
|
||||
this.userName = this.$store.state.user.name;
|
||||
const userName = this.$route.params && this.$route.params.ownerPhone;
|
||||
if (userName != null) {
|
||||
this.queryParams.userName = userName;
|
||||
}
|
||||
this.getList();
|
||||
this.getDeptTree();
|
||||
this.getConfigKey("sys.user.initPassword").then(response => {
|
||||
|
|
Loading…
Reference in New Issue
Block a user