ProjectDialog.vue 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107
  1. <template>
  2. <el-dialog :lock-scroll="false"
  3. :visible.sync="visible"
  4. width="500px"
  5. :before-close="handleClose"
  6. :show-close="false"
  7. center
  8. top="0">
  9. <div class="content">
  10. <el-select
  11. v-model="keyword" filterable allow-create
  12. clearable style=" width: 100% " default-first-option :filter-method="filterMethod"
  13. placeholder="Please choose your job name">
  14. <el-option
  15. v-for="option in selList"
  16. :label="option.label_type"
  17. :value="option.label_type"
  18. :key="option.label_type"
  19. ></el-option>
  20. </el-select>
  21. </div>
  22. <div slot="footer" class="dialog-footer">
  23. <el-button type="danger" @click="handleSend">Add To My Project</el-button>
  24. <el-button type="info" @click="handleClose" plain>CANCEL</el-button>
  25. </div>
  26. </el-dialog>
  27. </template>
  28. <script>
  29. export default {
  30. props: {
  31. visible: {
  32. type: Boolean,
  33. default: false,
  34. },
  35. id:[Number,String],
  36. projectObj:{
  37. type: Object,
  38. default: () => {}
  39. },
  40. isCopy:{
  41. type: Boolean,
  42. default: true
  43. }
  44. },
  45. data() {
  46. return {
  47. keyword:"",
  48. selList:[]
  49. }
  50. },
  51. mounted(){
  52. if(this.$utils.checkLogin()){
  53. this.getSelect();
  54. }
  55. },
  56. methods: {
  57. getSelect(){
  58. this.$axios.post("/api/goods_cart/cartLabelLists", { keyword:this.keyword }).then(res =>{
  59. this.selList=res.result
  60. })
  61. },
  62. filterMethod(val){
  63. this.keyword = val
  64. },
  65. handleSend() {
  66. if(!this.keyword){
  67. this.$message({
  68. message: 'Please choose your job name',
  69. type: "warning",
  70. });
  71. return
  72. }
  73. if(this.isCopy){
  74. this.$axios.post("/api/goods_cart/cartLabelGoodsCopy",{
  75. id: this.id,
  76. label_type_new: this.keyword})
  77. .then((res) => {
  78. this.$message.success("Added successfully")
  79. this.$emit('sendFinish')
  80. })
  81. return
  82. }
  83. let data = { ...{label_type:this.keyword,goods_id: this.id},...this.projectObj}
  84. this.$axios.post("/api/goods_cart/cartAdd", data).then(res =>{
  85. this.$message.success("Add success")
  86. this.$emit("update:visible", false);
  87. })
  88. },
  89. handleClose() {
  90. this.$emit("update:visible", false);
  91. },
  92. },
  93. };
  94. </script>
  95. <style lang="scss" scoped>
  96. .el-dialog__wrapper {
  97. display: flex;
  98. justify-content: center;
  99. align-items: center;
  100. }
  101. .content {
  102. text-align: center;
  103. }
  104. </style>