单图片上传
// 监听 input 的 onchange 事件
// 当有图片上传时,会触发 change 事件
require(['jquery'], function () {
$('[name="file_1"]').on('change', function () {
$(this).parent().css('backgroundImage', 'url(' + this.value + ')');
$(this).parent().attr('data-tips-image', this.value);
});
});
{/block}