阅行客电子档案
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

59 lines
1.5 KiB

  1. <template>
  2. <!-- EEP包 -->
  3. <el-dialog title="eep包" :close-on-click-modal="false" :modal-append-to-body="false" append-to-body :visible.sync="eepDetialVisible">
  4. <div class="setting-dialog">
  5. <ul class="hitch-info">
  6. <li><span>接收编号</span>230c4a438fa84b2c9a0405c99e7f5cb1</li>
  7. <li><span>接收状态</span><i class="row-state end-state">成功</i></li>
  8. <li><span>接收人员</span>admin</li>
  9. <li><span>接收时间</span>2016-09-21 08:50:08</li>
  10. <li><span>挂接结果</span>请检查zip包格式是否正确</li>
  11. </ul>
  12. <el-table ref="table" :data="tableData" style="width: 100%;">
  13. <el-table-column type="index" align="center" width="55" label="序号" />
  14. <el-table-column prop="name" label="文件名称" />
  15. <el-table-column prop="reason" label="原因" />
  16. </el-table>
  17. </div>
  18. </el-dialog>
  19. </template>
  20. <script>
  21. const data = [
  22. {
  23. 'id': '005E76FEC5A2AAB368CA1F',
  24. 'name': '档号+题名',
  25. 'reason': '成功'
  26. },
  27. {
  28. 'id': '005E76FEC5A2AAB368CA1F2',
  29. 'name': '档号+题名',
  30. 'reason': '成功'
  31. }
  32. ]
  33. export default {
  34. name: 'EepDetail',
  35. components: { },
  36. mixins: [],
  37. data() {
  38. return {
  39. eepDetialVisible: false,
  40. tableData: []
  41. }
  42. },
  43. created() {
  44. },
  45. mounted() {
  46. this.tableData = data
  47. },
  48. methods: {
  49. }
  50. }
  51. </script>
  52. <style lang='scss' scoped>
  53. @import "~@/assets/styles/collect-reorganizi.scss";
  54. .row-state{
  55. font-style: normal;
  56. }
  57. </style>