update
parent
0ec6a2acc7
commit
9abadc86d8
|
|
@ -395,7 +395,6 @@ const pageInfo = reactive({
|
|||
async function getTree() {
|
||||
const { data } = await treeDbList({})
|
||||
tableData.value = data
|
||||
console.log('🚀 ~ file: modify.vue:399 ~ data:', data)
|
||||
const { data: auth = [] } = await fetchReviewAuthCateList()
|
||||
tableDataAuth.value = auth
|
||||
}
|
||||
|
|
|
|||
|
|
@ -245,6 +245,7 @@ async function getInternalUserStat(
|
|||
let itemData: any = {
|
||||
nickName: item.nickName,
|
||||
userId: item.userId,
|
||||
sex: item.sex,
|
||||
...barOption,
|
||||
yAxis: {
|
||||
data: item.moduleStatList.map((item: any) => item.moduleName).reverse(),
|
||||
|
|
@ -620,7 +621,7 @@ getdeptTree()
|
|||
<VChart key="yyy" ref="chartRef1" :option="chartOption1" />
|
||||
</div>
|
||||
<div class="mt-30px">
|
||||
<div class="flex items-center" v-if="isDev">
|
||||
<div class="flex items-center">
|
||||
<span class="text-#000 mr-10px">部门: </span>
|
||||
<!-- <el-select v-model="moduleCode" placeholder="选择部门" clearable>
|
||||
<el-option
|
||||
|
|
@ -673,15 +674,15 @@ getdeptTree()
|
|||
</p>
|
||||
<div class="mx-10px flex-col items-center">
|
||||
<img
|
||||
v-if="i % 2 == 0"
|
||||
v-if="item.sex == 1"
|
||||
class="rounded-md h-150px object-contain"
|
||||
src="@/views/home/images/nan.png"
|
||||
src="@/views/home/images/nv.png"
|
||||
alt=""
|
||||
/>
|
||||
<img
|
||||
v-else
|
||||
class="rounded-md h-150px object-contain"
|
||||
src="@/views/home/images/nv.png"
|
||||
src="@/views/home/images/nan.png"
|
||||
alt=""
|
||||
/>
|
||||
<p class="text-center mt-20px">{{ item.nickName }}</p>
|
||||
|
|
|
|||
Loading…
Reference in New Issue