const a = document.querySelector('.a'),
b = document.querySelector('.b'),
c = document.querySelector('.c');
const input = document.querySelector('.input')
const array = [a,b,c]
let pup = []
for (let element of array) {
element.addEventListener('click', ({target})=>{
if(['a','b'].includes(target.value)) {
pup.push(target.value)
} else {
pup.pop()
}
input.value = pup.join('')
})
}
const express = require('express');
const PORT = 8000;
const app = express();
app.use(express.json());
app.use(express.urlencoded({extended: false}))
app.listen(PORT, () =>{
console.log(`Server works on port ${PORT}`);
});
app.get('/', (req, res) =>{
res.send('server works, PORT is ' + PORT);
});
app.post("/pos", function (request, response) {
if(!request.body) return response.sendStatus(400);
console.log(request.body);
response.send(`${request.body.userName} - ${request.body.userAge}`);
});
getField() {
BX24.callMethod('entity.item.get', {
ENTITY: 'wheelfortune', SORT: {'ID': 'ASC'}
},
(result) => {
let sections = result.data();
const newSections = sections.map((field) => ({
ID: field.ID,
NAME: field.NAME,
SECTION: field.SECTION,
'IS_EDITFIELD': false
}))
this.fields.join(...newSections)
console.log(this.fields);
if (result.more()) {
result.next();
}
});
},
const simpleString = '7911xxxxxxx';
const validateStr = (str) => {
let result = '';
if (typeof str !== 'string') throw 'Parameter is not a string!';
if (str.length >= 10) throw 'Phone is incorrect!';
if (str[0] === '7') result = '+' + str;
return str;
}
addAnswer(answer){
this.answer.id = Date.now();
this.answers.push(answer);
}
this.answers у тебя props нельзя модифицировать props нужно, одавать данные на ружу, чтобы родитель их обработал и вернул новое значение в props.this.answer.id
откуда у тебя взялась вообще это свойство answer, в коде его нет.props: {
answers: {
type: Array,
required: true,
}
},
data(){
return {
answers: [
]
}
},
пропа и свойство в data не могут иметь одинаковые имена<answer
v-for="answer in answers"
:answer="answer"
:key="answer.id"
/>
$('.menu__item').click(function(){
$('.menu__item').each(function() {
$(this).removeClass('active')
})
$(this).toggleClass('active');
// от кода ниже вообще можно избавится и прописать все на css
if($(this).hasClass('active')){
$(this).css({'background': 'linear-gradient(90deg, rgba(255,0,0,1) 0%, rgba(136,0,255,1) 1%, rgba(255,0,0,1) 100%)'});
$(this).next('.sub_menu__list').css({'opacity': 1, 'visibility': 'visible'});
} else{
$(this).css({'background': 'inherit'});
$(this).next('.sub_menu__list').css({'opacity': 0, 'visibility': 'hidden'});
}
})
.user__img
.user__header
.user__text
.user__btn