Browse Source

用户列表修改

marxjaw 4 months ago
parent
commit
a3c535db1a
1 changed files with 8 additions and 18 deletions
  1. 8 18
      src/views/main/userModule/userList.vue

+ 8 - 18
src/views/main/userModule/userList.vue

@@ -7,19 +7,17 @@
     <div class="layout-container">
       <Table @getTableData="changeTableData" v-model:page="page" ref="table" :data="tableData"
         @selection-change="handleSelectionChange">
-        <el-table-column prop="appId" label="应用ID" width="150" />
-        <el-table-column prop="appName" label="应用名称" width="150" />
-        <el-table-column prop="appType" label="应用类型" width="90" />
-        <el-table-column prop="channelOrigin" label="渠道来源" width="90">
-          <template #default="scope">
-            {{ getDictionaryName('channel_origin',scope.row.channelOrigin) }}
-          </template>
-        </el-table-column>
-        <el-table-column prop="channelType" label="渠道类型" width="90">
+        <el-table-column prop="userId" label="用户ID" width="280" />
+        <el-table-column prop="nickName" label="用户昵称" width="90" />
+        <el-table-column prop="userStatus" label="用户状态" width="90">
           <template #default="scope">
-            {{ getDictionaryName('channel_type',Number(scope.row.channelType)) }}
+            {{ getDictionaryName('user_status',Number(scope.row.userStatus)) }}
           </template>
         </el-table-column>
+<!--        <el-table-column prop="userType" label="用户类型" width="90" />-->
+        <el-table-column prop="appId" label="应用ID" width="150" />
+        <el-table-column prop="appName" label="应用名称" width="150" />
+        <el-table-column prop="appType" label="应用类型" width="90" />
         <el-table-column prop="communicationOperator" label="通信运营商" width="100" />
         <el-table-column prop="deviceRepeatCount" label="设备重复数量" width="110" />
         <el-table-column prop="ipRepeatCount" label="IP重复数量" width="100" />
@@ -30,7 +28,6 @@
           </template>
         </el-table-column>
         <el-table-column prop="loginDays" label="登录天数" width="90" />
-        <el-table-column prop="nickName" label="用户昵称" width="90" />
         <el-table-column prop="pointsBalance" label="积分余额" width="90" />
         <el-table-column prop="pointsTotal" label="积分总额" width="90" />
         <el-table-column prop="redPacketAmount" label="红包总额" width="90" />
@@ -43,13 +40,6 @@
         <el-table-column prop="todayVideo" label="今日视频播放数" width="130" />
         <el-table-column prop="totalIncome" label="总收益" width="130" />
         <el-table-column prop="totalVideo" label="视频总播放数" width="110" />
-        <el-table-column prop="userId" label="用户ID" width="280" />
-        <el-table-column prop="userStatus" label="用户状态" width="90">
-          <template #default="scope">
-            {{ getDictionaryName('user_status',Number(scope.row.userStatus)) }}
-          </template>
-        </el-table-column>
-        <el-table-column prop="userType" label="用户类型" width="90" />
         <el-table-column prop="versionCode" label="版本号" />
         <el-table-column prop="withdrawCount" label="提现笔数" width="90" />
         <el-table-column prop="withdrawTotal" label="提现总额" width="90" />