wsm-in-order-model.vue 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. <template>
  2. <el-dialog
  3. :title="'新建备货入库单'"
  4. :center="true"
  5. align="left"
  6. top="15vh"
  7. width="700px"
  8. @close="showModelThis = false"
  9. :close-on-click-modal="false"
  10. :visible.sync="showModelThis"
  11. v-loading="loading"
  12. element-loading-text="拼命加载中"
  13. element-loading-spinner="el-icon-loading"
  14. element-loading-background="rgba(0, 0, 0, 0.8)"
  15. >
  16. <el-card style="margin-top: -20px">
  17. <el-row :gutter="10">
  18. <el-col :span="24">
  19. <wsm-in-order-addEdit-form
  20. v-if="showModelThis"
  21. :id="'add'"
  22. :newTime="newTime"
  23. :sitem="sitem"
  24. @refresh="(showModelThis = false), $emit('refresh')"
  25. />
  26. </el-col>
  27. </el-row>
  28. </el-card>
  29. </el-dialog>
  30. </template>
  31. <script>
  32. import resToken from "@/mixins/resToken";
  33. import wsmInOrderAddEditForm from "./wsm-in-order-addEdit-form";
  34. export default {
  35. name: "purchaseOrder",
  36. props: ["showModel", "id", "sitem"],
  37. components: { wsmInOrderAddEditForm},
  38. mixins: [resToken],
  39. data() {
  40. return {
  41. showModelThis: this.showModel,
  42. loading: false,
  43. title: "",
  44. sitem: null,
  45. newTime: "",
  46. };
  47. },
  48. watch: {
  49. showModel: function (val) {
  50. this.showModelThis = val;
  51. if (val) {
  52. this.initForm();
  53. }
  54. },
  55. showModelThis(val) {
  56. if (!val) {
  57. this.$emit("cancel");
  58. }
  59. },
  60. },
  61. methods: {
  62. async initForm() {
  63. this.loading = true;
  64. this.loading = false;
  65. },
  66. getNewTime() {
  67. this.newTime = new Date().valueOf();
  68. },
  69. },
  70. };
  71. </script>
  72. <style lang="scss" scoped>
  73. .purchaseOrder {
  74. }
  75. </style>