diff --git a/src/router/index.js b/src/router/index.js index 94dfbf2..0a1797d 100644 --- a/src/router/index.js +++ b/src/router/index.js @@ -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, diff --git a/src/views/system/flow/index.vue b/src/views/system/flow/index.vue index 5919650..66092bc 100644 --- a/src/views/system/flow/index.vue +++ b/src/views/system/flow/index.vue @@ -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"> diff --git a/src/views/system/user/index.vue b/src/views/system/user/index.vue index c3bccca..6777112 100644 --- a/src/views/system/user/index.vue +++ b/src/views/system/user/index.vue @@ -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 => {