array:35 [▼
"meta" => array:5 [▶]
"id" => "3a02f9a9-494b-11ec-0a80-049c001500ef"
"accountId" => "1f0bdfa9-17e6-11e7-7a69-971100006cd4"
"owner" => array:1 [▶]
"shared" => false
"group" => array:1 [▶]
"updated" => "2021-11-28 09:45:54.581"
"name" => "03559"
"description" => """
сбер .онлайн
"""
"externalCode" => "8N65fnRWiM-7CSENefwbW1"
"moment" => "2021-11-19 18:11:00.000"
"applicable" => true
"rate" => array:1 [▶]
"sum" => 439000,0
"store" => array:1 [▶]
"agent" => array:1 [▶]
"organization" => array:1 [▶]
"organizationAccount" => array:1 [▶]
"state" => array:7 [▶]
"attributes" => array:1 [▶]
"created" => "2021-11-19 18:13:18.629"
"printed" => true
"published" => false
"files" => array:1 [▶]
"positions" => array:2 [▶]
"vatEnabled" => true
"vatIncluded" => true
"vatSum" => 73167,0
"deliveryPlannedMoment" => "2021-11-29 09:45:00.000"
"payedSum" => 439000,0
"shippedSum" => 439000,0
"invoicedSum" => 439000,0
"reservedSum" => 439000,0
"demands" => array:1 [▶]
"invoicesOut" => array:1 [▼
0 => array:27 [▶]
]
]
<span v-if="box.fefco == '0201'" <b>v-if=true ?</b> data-toggle="tooltip" data-html="true" data-title="<img class='d-block m-1 mx auto' src='/img/0201.jpg'>">Fefco 0201 — четырехклапанная</span>
var app = new Vue({
el: '#app',
delimiters: ['{%', '%}'],
data: {
// Служебные переменные
errors: [], // массив с ошибками
alert: '', // обложка текста с ошибками
error_length: '', // подсвечивание инпута длина
boxes: [], // массив с коробками
// Данные из формы
length: '',
width: '',
height: '',
range: '30',
},
mounted() {
axios.get('/api/get_boxes')
.then(function(response) {
this.boxes = response.data;
console.log(this.boxes);
})
.catch(function(error) {
console.log(error);
});
},
watch: {
width: function () {
if(this.length < this.width) {
this.errors = []; // убираем предыдущие сообщения об ошибках
this.errors.push('Ширина должна быть меньше длины, поменяйте местами');
this.error_length = true;
} else {
this.errors = [];
this.error_length = false;
}
// Обложка текста
if(this.errors.length == 0) { this.alert = false; }
else { this.alert = true; }
},
}
});