process-remark-time-line.vue 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  1. <template>
  2. <div class="processRearkTimeLine">
  3. <el-steps
  4. direction="vertical"
  5. :active="options.length"
  6. :space="80"
  7. :finish-status="finishStatus"
  8. :process-status="finishStatus"
  9. >
  10. <el-step
  11. icon="el-icon-success"
  12. v-for="(item, index) in options"
  13. :key="item.time + index"
  14. :finish-status="finishStatus"
  15. :process-status="finishStatus"
  16. style="margin: 0 0 0 150px; position: relative"
  17. >
  18. <div
  19. slot="title"
  20. style="position: absolute; width: 142px; left: -150px; text-align: right"
  21. >
  22. {{ (options8.find((si) => si.id == item.exam_status) || {}).name || "--" }}
  23. </div>
  24. <div slot="description">
  25. <p class="name">操作人: {{ item.exam_name }}</p>
  26. <p class="time" v-if="item.exam_remark">备注: {{ item.exam_remark }}</p>
  27. <p class="time">
  28. {{ item.addtime }}
  29. </p>
  30. </div>
  31. </el-step>
  32. </el-steps>
  33. </div>
  34. </template>
  35. <script>
  36. import asyncRequest from "@/apis/service/goodStore/goodsOnline";
  37. import resToken from "@/mixins/resToken";
  38. import { options8 } from "../columns";
  39. export default {
  40. name: "processRearkTimeLine",
  41. props: ["skuCode", "newTime"],
  42. mixins: [resToken],
  43. data() {
  44. return {
  45. options: [],
  46. loading: false,
  47. options8,
  48. };
  49. },
  50. watch: {
  51. newTime: function (val) {
  52. if (val) {
  53. this.getList();
  54. }
  55. },
  56. },
  57. mounted() {
  58. this.getList();
  59. },
  60. methods: {
  61. async getList() {
  62. if (!this.loading) {
  63. this.loading = true;
  64. this.options = [];
  65. const { code, data } = await asyncRequest.getgoodexamlist({
  66. skuCode: this.skuCode,
  67. page: 1,
  68. size: 1000,
  69. });
  70. if (code === 0) {
  71. const { list } = data ?? {};
  72. this.options = list ?? [];
  73. } else {
  74. this.options = [];
  75. }
  76. this.loading = false;
  77. }
  78. },
  79. },
  80. };
  81. </script>
  82. <style lang="scss">
  83. .date-picker.el-input {
  84. // width: 150px !important;
  85. }
  86. </style>