operateLogsDia.vue 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108
  1. <template>
  2. <m-dialog
  3. :show.sync="isShow"
  4. width="750px"
  5. :title="$t('ManualEntryPage.opera_logs')"
  6. @close="closeDialog"
  7. >
  8. <div>
  9. <el-table
  10. :data="tableData"
  11. style="box-shadow: 0px 3px 6px rgba(155, 170, 219, 0.2);margin-top: 20px"
  12. border
  13. ref="table"
  14. >
  15. <el-table-column
  16. v-for="item in tableColums"
  17. :key="item.key"
  18. :label="item.label"
  19. :width="item.widthsty"
  20. :min-width="item.minwidthsty"
  21. align="center"
  22. >
  23. <template slot-scope="{row}">
  24. <span>{{row[item.key]}}</span>
  25. </template>
  26. </el-table-column>
  27. </el-table>
  28. <div style="height:35px;margin: 20px 0;">
  29. <m-page
  30. :page_no="page_no"
  31. :pageSize="pageSize"
  32. :total="total"
  33. @handleCurrentChange="pageChange"
  34. />
  35. </div>
  36. </div>
  37. </m-dialog>
  38. </template>
  39. <script>
  40. import { dataInterence } from '@/api/api.js';
  41. import mDialog from '@/components/mDialog.vue';
  42. import mPage from '@/components/mPage.vue';
  43. export default {
  44. components: { mDialog,mPage },
  45. props: {
  46. isShow: {
  47. type: Boolean
  48. },
  49. edbCode: {
  50. type: String
  51. }
  52. },
  53. watch: {
  54. isShow(nval) {
  55. if(!nval) return
  56. this.getTableData()
  57. }
  58. },
  59. computed: {
  60. tableColums() {
  61. return [
  62. { label: /* '操作时间' */this.$t('ManualEntryPage.opera_time'),key: 'CreateTime' },
  63. { label: /* '操作内容' */this.$t('ManualEntryPage.opera_msg'),key: 'Remark',minwidthsty:'150px' },
  64. { label: /* '操作人' */this.$t('ManualEntryPage.opera_user'),key: 'UserName'},
  65. ]
  66. }
  67. },
  68. data() {
  69. return {
  70. tableData: [],
  71. page_no:1,
  72. pageSize: 8,
  73. total: 0
  74. }
  75. },
  76. mounted(){
  77. },
  78. methods:{
  79. async getTableData() {
  80. const res = await dataInterence.getOperaLogsList({
  81. PageSize: this.pageSize,
  82. CurrentIndex: this.page_no,
  83. TradeCode: this.edbCode
  84. })
  85. if(res.Ret !== 200) return
  86. this.tableData = res.Data.List || [];
  87. this.total = res.Data.Paging.Totals;
  88. },
  89. pageChange(page) {
  90. this.page_no = page;
  91. this.getTableData()
  92. },
  93. closeDialog() {
  94. this.$emit('update:isShow',false)
  95. }
  96. },
  97. }
  98. </script>
  99. <style scoped lang='scss'>
  100. </style>