allSelectInput.js 500 B

123456789101112131415161718192021222324252627
  1. export default {
  2. data() {
  3. return {
  4. };
  5. },
  6. methods: {
  7. // // 离开全选input alone
  8. // moveAloneAllInput(e){
  9. // this.isAloneAllActive=false;
  10. // this.isAloneAllFocus=false;
  11. // if(e==''){return}
  12. // this.changeAutoPrice = e;
  13. // },
  14. // //input点击删除按键
  15. // deleteAloneInputVal(){
  16. // this.isAloneAllActive=false;
  17. // this.changeAutoPrice = '';
  18. // },
  19. // 选中input
  20. initAloneAllInput(){
  21. this.isAloneAllActive=true;
  22. this.isAloneAllFocus=true;
  23. },
  24. }
  25. };