1.微调
This commit is contained in:
parent
d0a43d7479
commit
b4f9b6596d
|
@ -176,6 +176,20 @@ export const dynamicRoutes = [
|
|||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
path: '/system/dept',
|
||||
component: Layout,
|
||||
hidden: true,
|
||||
permissions: ['system:dept:list'],
|
||||
children: [
|
||||
{
|
||||
path: 'index/:owner',
|
||||
component: () => import('@/views/system/dept'),
|
||||
name: 'Data',
|
||||
meta: { title: '运营商列表', activeMenu: '/system/dept' }
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
path: '/system/area-parking',
|
||||
component: Layout,
|
||||
|
|
|
@ -72,7 +72,7 @@
|
|||
:default-expand-all="isExpandAll"
|
||||
:tree-props="{children: 'children', hasChildren: 'hasChildren'}"
|
||||
:default-sort="defaultSort" @sort-change="handleSortChange">
|
||||
<el-table-column prop="deptName" label="运营商名称" width="260" sortable="custom" :sort-orders="['descending', 'ascending']"></el-table-column>
|
||||
<el-table-column prop="deptName" label="运营商名称" width="180" sortable="custom" :sort-orders="['descending', 'ascending']"></el-table-column>
|
||||
<el-table-column prop="areaName" label="名下运营区" align="center" ></el-table-column>
|
||||
<el-table-column prop="phone" label="联系电话" align="center" ></el-table-column>
|
||||
<el-table-column prop="appName" label="小程序" align="center" ></el-table-column>
|
||||
|
@ -544,6 +544,10 @@ export default {
|
|||
},
|
||||
created() {
|
||||
console.log("当前用户信息:",this.$store.state.user.id)
|
||||
const owner = this.$route.params && this.$route.params.owner;
|
||||
if (owner != null) {
|
||||
this.queryParams.deptName = owner;
|
||||
}
|
||||
this.userName = this.$store.state.user.name;
|
||||
let userId = this.$store.state.user.id;
|
||||
getUser(userId).then(response => {
|
||||
|
|
|
@ -148,7 +148,8 @@
|
|||
<el-table-column label="关联APP用户" align="center" key="appUserName" prop="appUserName" v-if="columns[5].visible" width="120" >
|
||||
<template slot-scope="scope">
|
||||
<span class="link-type" @click="handleBandSysUser(scope.row.userId)">
|
||||
{{ appUserNameFormatter(scope.row.appUserName) }}
|
||||
<div v-html="appUserNameFormatter(scope.row.appUserName)"></div>
|
||||
<!-- {{ appUserNameFormatter(scope.row.appUserName) }}-->
|
||||
</span>
|
||||
</template>
|
||||
</el-table-column>
|
||||
|
@ -580,7 +581,7 @@ export default {
|
|||
});
|
||||
},
|
||||
appUserNameFormatter(value){
|
||||
return value ? value : '去绑定';
|
||||
return value ? value.split(',').join('<br>') : '去绑定';
|
||||
},
|
||||
/** 查询用户列表 */
|
||||
getList() {
|
||||
|
|
|
@ -76,9 +76,15 @@
|
|||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column label="区域" align="center" prop="areaName" />
|
||||
<el-table-column label="所属人" align="center" prop="owner" />
|
||||
<el-table-column label="关联订单号" width="260" align="center" prop="orderNo" />
|
||||
<el-table-column label="第三方交易单号" width="250" align="center" prop="outTradeNo" />
|
||||
<el-table-column label="所属人" align="center" prop="owner" >
|
||||
<template slot-scope="scope">
|
||||
<router-link :to="'/system/dept/index/' + scope.row.owner" class="link-type">
|
||||
<span>{{ scope.row.owner }}</span>
|
||||
</router-link>
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column label="关联订单号" width="180" align="center" prop="orderNo" />
|
||||
<el-table-column label="第三方交易单号" width="180" align="center" prop="outTradeNo" />
|
||||
<el-table-column label="收支类型" align="center" prop="type">
|
||||
<template slot-scope="scope">
|
||||
<dict-tag :options="dict.type.et_flow_type" :value="scope.row.type"/>
|
||||
|
|
Loading…
Reference in New Issue
Block a user