allSelectInput.js 271 B

12345678910111213141516171819
  1. export default {
  2. data() {
  3. return {
  4. };
  5. },
  6. methods: {
  7. // 离开全选input alone
  8. initAloneAllInput(){
  9. this.isAloneAllActive=true;
  10. this.isAloneAllFocus=true;
  11. },
  12. initWeightAllInput(){
  13. this.isWeightActive=true;
  14. this.isWeightFocus=true;
  15. },
  16. }
  17. };