log.html 786 B

1234567891011121314151617
  1. {include file="/shopro/common/script" /}
  2. <div id="log" class="withdraw-log" v-cloak>
  3. <el-container class="panel-block">
  4. <el-main>
  5. <el-table height="100%" class="sa-table" :data="state.data" stripe>
  6. <el-table-column prop="content" label="事件" min-width="250"></el-table-column>
  7. <el-table-column label="员工" min-width="120">
  8. <template #default="scope">
  9. <sa-user-profile type="oper" :user="scope.row.oper" :id="scope.row.oper_id"></sa-user-profile>
  10. </template>
  11. </el-table-column>
  12. <el-table-column prop="createtime" label="时间" width="172"></el-table-column>
  13. </el-table>
  14. </el-main>
  15. </el-container>
  16. </div>