.main-content ul.list-plus li:before{
/* другие стили */
background-color: transparent; /* убираем серый фон у маркера */
}
SELECT
case LENGTH(phone)
WHEN 10
THEN CONCAT('7', phone)
WHEN 11
THEN IF( SUBSTRING(phone, 1, 1) = '8', CONCAT( '7', SUBSTRING(phone, 2, 11) ), phone )
ELSE phone
END as phone
FROM phones
fetchBuilder: function (url, property)
{
var vm = this;
this.$http.get(url).then(function (responce) {
return response.data[property];
}).catch(function (error) {
if (error.response.status == 403) {
vm.redirectLogin();
}
});
};
var messages = vm.fetchBuilder('/api/messages?uid=' + uid, "messages" );
var comments= vm.fetchBuilder('/api/comments?uid=' + uid, "comments" );
var stats = vm.fetchBuilder('/api/stats ?uid=' + uid, "stats" );