liche update for admin order baoxian update load pdf file
This commit is contained in:
@@ -23,6 +23,10 @@ class Upload extends CI_Controller
|
||||
$mark = $this->input->get('mark');
|
||||
$source = $this->input->get('source');
|
||||
|
||||
if('pdf' == $types){
|
||||
return $this->pdf();
|
||||
}
|
||||
|
||||
$data['mode'] = $mode ? $mode : '1';
|
||||
$data['types'] = $types ? $types : 'jpg,png';
|
||||
$data['uptype'] = $uptype ? $uptype : 'qiniu';
|
||||
@@ -35,7 +39,21 @@ class Upload extends CI_Controller
|
||||
$data['mark_id'] = $mark_data[1];
|
||||
$data['mark_url'] = count($mark_data) >= 3 ? $mark_data[2] : '/biz/store/pic/add';
|
||||
}
|
||||
$this->load->view('upload', $data);
|
||||
return $this->load->view('upload', $data);
|
||||
}
|
||||
|
||||
public function pdf(){
|
||||
$mode = $this->input->get('mode');
|
||||
$types = $this->input->get('type');
|
||||
$uptype = $this->input->get('uptype');
|
||||
$source = $this->input->get('source');
|
||||
|
||||
$data['mode'] = $mode ? $mode : '1';
|
||||
$data['types'] = $types;
|
||||
$data['uptype'] = $uptype ? $uptype : 'qiniu';
|
||||
$data['mimes'] = $this->file_mime($data['types']);
|
||||
$data['source'] = $source ? $source : '';
|
||||
$this->load->view('uploadpdf', $data);
|
||||
}
|
||||
|
||||
//文件状态检查
|
||||
@@ -74,6 +92,33 @@ class Upload extends CI_Controller
|
||||
return $this->show_json('NOT_FOUND', $config);
|
||||
}
|
||||
|
||||
//文件状态检查
|
||||
public function upstate_pdf()
|
||||
{
|
||||
$post = $this->input->post();
|
||||
$this->load->library('qiniu');
|
||||
|
||||
$config = $this->qiniu->getConfig();
|
||||
$filename = join('/', str_split($post['md5'], 16)) . '.' . strtolower(pathinfo($post['filename'], PATHINFO_EXTENSION));
|
||||
$filename = $config['attch'] . date('Y/m') . '/' . $filename;
|
||||
|
||||
// 检查文件是否已上传
|
||||
if ($site_url = $this->qiniu->getFileUrl($filename)) {
|
||||
return $this->show_json('IS_FOUND', array(
|
||||
'site_url' => $site_url,
|
||||
'file_url' => $filename,
|
||||
'file_title' => substr($filename, strrpos($filename, '/')+1)
|
||||
));
|
||||
}
|
||||
|
||||
// 需要上传文件,生成上传配置参数
|
||||
$config = array('uptype' => $post['uptype'], 'file_url' => $filename);
|
||||
$config['server'] = $this->qiniu->getUploadQiniuUrl(true);
|
||||
$config['token'] = $this->qiniu->getToken($filename);
|
||||
|
||||
return $this->show_json('NOT_FOUND', $config);
|
||||
}
|
||||
|
||||
//返回json数据
|
||||
protected function show_json($code = '', $data = array())
|
||||
{
|
||||
|
||||
@@ -116,9 +116,11 @@ class Orders extends HD_Controller{
|
||||
if($agent['ins_img']){
|
||||
$ins_img = json_decode($agent['ins_img']);
|
||||
foreach($ins_img as $val){
|
||||
$file_name = substr($val, strrpos($val, '/')+1);
|
||||
$imgs[] = [
|
||||
'src' => build_qiniu_image_url($val),
|
||||
'value' => $val
|
||||
'value' => $val,
|
||||
'title' => $file_name
|
||||
];
|
||||
}
|
||||
}
|
||||
|
||||
@@ -144,7 +144,7 @@
|
||||
<option value="">选择行政区</option>
|
||||
<option :value="v.id" v-for="(v,i) in countyAry">{{v.name}}</option>
|
||||
</select>
|
||||
<select title="地址" name="addr_id" style="display: inline;width: 60%" v-model="info.addr_id">
|
||||
<select title="地址" name="addr_id" style="display: inline;width: 50%" v-model="info.addr_id">
|
||||
<option value="">选择地址</option>
|
||||
<option :value="v.id" v-for="(v,i) in addrAry">{{v.title}}</option>
|
||||
</select>
|
||||
|
||||
@@ -46,16 +46,16 @@
|
||||
</div>
|
||||
</div>
|
||||
<div class="am-form-inline am-u-lg-12">
|
||||
<label class="am-para-label label-width"><span class="span-bold">保险单图片:</span></label>
|
||||
<label class="am-para-label label-width"><span class="span-bold">保险单:</span></label>
|
||||
<div class="am-para-input">
|
||||
<div class="am-form-group am-form-file">
|
||||
<button type="button" class="am-btn am-btn-default am-btn-sm"
|
||||
data-file="5" data-type="jpg,png,gif,png,jpeg" data-params-source="vue_obj.bx_imgs">
|
||||
data-file="5" data-type="pdf" data-params-source="vue_obj.bx_imgs">
|
||||
<i class="am-icon-cloud-upload"></i> 选择要上传的文件
|
||||
</button>
|
||||
<div class="photo-upload mt10">
|
||||
<div class="photo-upload-item" v-for="(v,i) in bx_imgs">
|
||||
<img :src="v.src" class="img-thumbnail" :data-value="v.value" data-tips-image style="width:100px;height:100px;">
|
||||
<a :href="v.src" target="_blank" :data-value='v.value' class="ml10 mt5" style="width:100px;line-height:50px;">{{v.title}}</a>
|
||||
<span class="photo-upload-item-remove">
|
||||
<i class="fa fa-remove" data-rm-vue="vue_obj.bx_imgs" :data-index="i"></i>
|
||||
</span>
|
||||
|
||||
@@ -366,7 +366,6 @@
|
||||
imgs = '';
|
||||
if (this.bx_imgs) {
|
||||
jQuery.each(this.bx_imgs, function (i, val) {
|
||||
console.dir(val)
|
||||
if (imgs) {
|
||||
imgs += "," + val['value'];
|
||||
} else {
|
||||
|
||||
@@ -0,0 +1,560 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="zh-CN">
|
||||
<head>
|
||||
<title></title>
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=0">
|
||||
<link href="/static/js/plugin/uploader/webuploader.css" rel="stylesheet" type="text/css"/>
|
||||
<link href="/static/js/plugin/uploader/theme/uploader.css" rel="stylesheet" type="text/css"/>
|
||||
<script src="/static/js/common/jquery-3.0.0.js" type="text/javascript"></script>
|
||||
<script src="/static/js/plugin/uploader/webuploader.min.js" type="text/javascript"></script>
|
||||
<script src="/static/js/plugin/uploader/theme/upload.js" type="text/javascript"></script>
|
||||
</head>
|
||||
<body>
|
||||
<div id="uploader">
|
||||
<div class="queueList">
|
||||
<div id="dndArea" class="placeholder">
|
||||
<div id="filePicker"></div>
|
||||
文件大小不超过6MB
|
||||
</div>
|
||||
</div>
|
||||
<div class="statusBar" style="display:none;">
|
||||
<div class="progress">
|
||||
<span class="text">0%</span>
|
||||
<span class="percentage"></span>
|
||||
</div>
|
||||
<div class="info"></div>
|
||||
<div class="btns">
|
||||
<?php if ($mode != '1') { ?>
|
||||
<div id="filePicker2"></div>
|
||||
<?php } ?>
|
||||
<div class="uploadBtn">开始上传</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<script>
|
||||
/* global WebUploader */
|
||||
|
||||
/**
|
||||
* 每个文件上传成功调用
|
||||
* @type Function
|
||||
*/
|
||||
function uploaded(ret, file) {
|
||||
var url = ret.url || ret.site_url;
|
||||
var file_url = ret.file_url || url;
|
||||
var file_title = ret.file_title || file.md5;
|
||||
$('#' + file.id).attr('data-md5', file.md5).attr('data-src', url).attr('data-value', file_url).attr('data-title', file_title);
|
||||
}
|
||||
|
||||
function confirmSelected() {
|
||||
var srcs = [], md5s = [], vals = [];
|
||||
var files = [];
|
||||
$('[data-md5] .success').map(function () {
|
||||
var $li = $(this).parents('[data-md5]');
|
||||
md5s.push($li.attr('data-md5'));
|
||||
vals.push($li.attr('data-value'));
|
||||
srcs.push($li.attr('data-src'));
|
||||
files.push({
|
||||
src: $li.attr('data-src'),
|
||||
value: $li.attr('data-value'),
|
||||
title:$li.attr('data-title')
|
||||
});
|
||||
});
|
||||
if (srcs.length < 1) {
|
||||
return top.$.msg.tips('还没有选择文件,请勾选需要使用的文件!');
|
||||
}
|
||||
|
||||
<?if($source){?>
|
||||
//window.parent.<?=$source?>.concat(imgs);可能是数组格式不一致插入不了
|
||||
var source = window.parent.<?=$source?>;
|
||||
var mode = <?=$mode ? $mode : 0?>;
|
||||
files.map(function(v,i){
|
||||
if(0==mode || source.length<mode){
|
||||
source.push(v);
|
||||
}
|
||||
});
|
||||
<?}?>
|
||||
|
||||
var index = top.layer.getFrameIndex(window.name);
|
||||
top.layer.close(index);
|
||||
}
|
||||
|
||||
function completed() {
|
||||
var btnHTML = '完成上传';
|
||||
$('.uploadBtn').html(btnHTML);
|
||||
|
||||
$(document).off("click.uploader").on("click.uploader", ".state-finish", function () {
|
||||
confirmSelected.call(this);
|
||||
})
|
||||
}
|
||||
|
||||
// 当domReady的时候开始初始化
|
||||
$(function () {
|
||||
var $wrap = $('#uploader'),
|
||||
/*文件容器*/
|
||||
$queue = $('<ul class="filelist"></ul>').appendTo($wrap.find('.queueList')),
|
||||
/*状态栏,包括进度和控制按钮*/
|
||||
$statusBar = $wrap.find('.statusBar'),
|
||||
/*文件总体选择信息。*/
|
||||
$info = $statusBar.find('.info'),
|
||||
/*上传按钮*/
|
||||
$upload = $wrap.find('.uploadBtn'),
|
||||
/*没选择文件之前的内容。*/
|
||||
$placeHolder = $wrap.find('.placeholder'),
|
||||
$progress = $statusBar.find('.progress').hide(),
|
||||
/* 添加的文件数量*/
|
||||
fileCount = 0,
|
||||
/*添加的文件总大小*/
|
||||
fileSize = 0,
|
||||
/*优化retina, 在retina下这个值是2*/
|
||||
ratio = window.devicePixelRatio || 1,
|
||||
/*缩略图大小*/
|
||||
thumbnailWidth = 110 * ratio, thumbnailHeight = 110 * ratio,
|
||||
/*可能有pedding, ready, uploading, confirm, done.*/
|
||||
state = 'pedding',
|
||||
/*所有文件的进度信息,key为file id*/
|
||||
percentages = {},
|
||||
/*判断浏览器是否支持文件的base64*/
|
||||
isSupportBase64 = (function () {
|
||||
var data = new Image();
|
||||
var support = true;
|
||||
data.onload = data.onerror = function () {
|
||||
if (this.width != 1 || this.height != 1) {
|
||||
support = false;
|
||||
}
|
||||
};
|
||||
data.src = "data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///ywAAAAAAQABAAACAUwAOw==";
|
||||
return support;
|
||||
}.call(this)),
|
||||
/*检测是否已经安装flash,检测flash的版本*/
|
||||
flashVersion = (function () {
|
||||
var version;
|
||||
try {
|
||||
version = navigator.plugins['Shockwave Flash'];
|
||||
version = version.description;
|
||||
} catch (ex) {
|
||||
try {
|
||||
version = new ActiveXObject('ShockwaveFlash.ShockwaveFlash').GetVariable('$version');
|
||||
} catch (ex2) {
|
||||
version = '0.0';
|
||||
}
|
||||
}
|
||||
version = version.match(/\d+/g);
|
||||
return parseFloat(version[0] + '.' + version[1], 10);
|
||||
})(),
|
||||
supportTransition = (function () {
|
||||
var s = document.createElement('p').style,
|
||||
r = 'transition' in s || 'WebkitTransition' in s || 'MozTransition' in s || 'msTransition' in s || 'OTransition' in s;
|
||||
return (s = null), r;
|
||||
})(),
|
||||
uploader;
|
||||
if (!WebUploader.Uploader.support('flash') && WebUploader.browser.ie) {
|
||||
/*flash 安装了但是版本过低*/
|
||||
if (flashVersion) {
|
||||
(function (container) {
|
||||
window['expressinstallcallback'] = function (state) {
|
||||
switch (state) {
|
||||
case 'Download.Cancelled':
|
||||
alert('您取消了更新!');
|
||||
break;
|
||||
case 'Download.Failed':
|
||||
alert('安装失败');
|
||||
break;
|
||||
default:
|
||||
alert('安装已成功,请刷新!');
|
||||
break;
|
||||
}
|
||||
delete window['expressinstallcallback'];
|
||||
};
|
||||
var swf = '/static/js/plugin/uploader/expressInstall.swf';
|
||||
var html = '<object type="application/' + 'x-shockwave-flash" data="' + swf + '" ';
|
||||
if (WebUploader.browser.ie) {
|
||||
html += 'classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" ';
|
||||
}
|
||||
html += 'width="100%" height="100%" style="outline:0">' +
|
||||
'<param name="movie" value="' + swf + '" />' +
|
||||
'<param name="wmode" value="transparent" />' +
|
||||
'<param name="allowscriptaccess" value="always" />' +
|
||||
'</object>';
|
||||
container.html(html);
|
||||
})($wrap);
|
||||
} else {
|
||||
$wrap.html('<a href="http://www.adobe.com/go/getflashplayer" target="_blank" border="0"><img alt="get flash player" src="http://www.adobe.com/macromedia/style_guide/images/160x41_Get_Flash_Player.jpg" /></a>');
|
||||
}
|
||||
return;
|
||||
} else if (!WebUploader.Uploader.support()) {
|
||||
alert('Web Uploader 不支持您的浏览器!');
|
||||
return;
|
||||
}
|
||||
// 文件上传前的检查
|
||||
WebUploader.Uploader.register({'before-send-file': 'preupload'}, {
|
||||
preupload: function (file) {
|
||||
var me = this, owner = this.owner, deferred = WebUploader.Deferred();
|
||||
owner.md5File(file.source).fail(function () {
|
||||
deferred.reject();
|
||||
}).then(function (md5) {
|
||||
file.md5 = md5;
|
||||
var data = {
|
||||
id: file.id,
|
||||
md5: md5,
|
||||
uptype: '<?=$uptype?>',
|
||||
filename: file.name
|
||||
};
|
||||
$.ajax("/upload/upstate_pdf", {
|
||||
dataType: 'json', method: 'post', data: data, success: function (ret) {
|
||||
file.picHeight = ret.data.picHeight;
|
||||
if (ret.code !== 'NOT_FOUND') {
|
||||
owner.skipFile(file);
|
||||
uploaded.call(uploader, ret.data, file);
|
||||
percentages[file.id] = [file.size, 1];
|
||||
updateTotalProgress();
|
||||
} else {
|
||||
file.md5 = md5;
|
||||
file.token = ret.data.token || '';
|
||||
file.key = ret.data.file_url || '';
|
||||
file.site_url = ret.data.site_url || '';
|
||||
me.options.server = ret.data.server;
|
||||
}
|
||||
|
||||
deferred.resolve();
|
||||
}
|
||||
});
|
||||
});
|
||||
return deferred.promise();
|
||||
}
|
||||
});
|
||||
|
||||
// 实例化
|
||||
uploader = WebUploader.create({
|
||||
pick: {
|
||||
id: '#filePicker',
|
||||
label: '点击选择文件',
|
||||
multiple: <?=$mode == "1" ? 'false' : 'true'?>,
|
||||
},
|
||||
accept: {title: '选择文件', extensions: '<?=$types?>', mimeTypes: '<?=$mimes?>'},
|
||||
formData: {},
|
||||
auto: <?=$mode == "1" ? 'true' : 'false'?>,
|
||||
fileNumLimit: <?=$mode?>,
|
||||
server: '/upload/index',
|
||||
swf: '/static/js/plugin/uploader/Uploader.swf',
|
||||
chunked: false,
|
||||
dnd: '#dndArea',
|
||||
paste: document.body,
|
||||
chunkSize: 512 * 1024,
|
||||
disableGlobalDnd: true,
|
||||
fileSizeLimit: 200 * 1024 * 1024, // 200 M
|
||||
fileSingleSizeLimit: 200 * 1024 * 1024, // 200 M
|
||||
compress: {
|
||||
width: 1600,
|
||||
height: 16000,
|
||||
crop: false, // 是否允许裁剪
|
||||
quality: 90, // 图片质量(只有type为`image/jpeg`的时候才有效)
|
||||
allowMagnify: false, // 是否允许放大(如果想要生成小图的时候不失真,此选项应该设置为false).
|
||||
preserveHeaders: true, // 是否保留头部meta信息
|
||||
noCompressIfLarger: false, // 如果发现压缩后文件大小比原来还大,则使用原来图片
|
||||
compressSize: 1024 * 512, // 单位字节(如果图片大小小于此值,不会采用压缩)
|
||||
}
|
||||
});
|
||||
|
||||
/* 上传开始前的处理 */
|
||||
uploader.on('uploadBeforeSend', function (file, data, header) {
|
||||
header['X_Requested_With'] = 'XMLHttpRequest';
|
||||
data['allowed_types'] = this.options.accept[0].extensions.split(',').join('|');
|
||||
data['token'] = file.file.token;
|
||||
data['md5'] = file.file.md5;
|
||||
data['key'] = file.file.key;
|
||||
});
|
||||
|
||||
/* 处理上传后的结果 */
|
||||
uploader.on('uploadAccept', function (fieldata, ret) {
|
||||
// Qiniu or Local 上传
|
||||
if (ret.code === 'SUCCESS') {
|
||||
uploaded.call(uploader, ret.data, fieldata.file);
|
||||
return true;
|
||||
}
|
||||
|
||||
// 接收服务器返回的错误消息
|
||||
fieldata.file.setStatus('error', ret.msg);
|
||||
return false;
|
||||
});
|
||||
|
||||
// 拖拽时不接受 js, txt 文件。
|
||||
uploader.on('dndAccept', function (items) {
|
||||
var denied = false, len = items.length, unAllowed = 'text/plain;application/javascript ';
|
||||
for (var i = 0; i < len; i++) {
|
||||
if (~unAllowed.indexOf(items[i].type)) {
|
||||
denied = true;
|
||||
break;
|
||||
}
|
||||
}
|
||||
return !denied;
|
||||
});
|
||||
|
||||
// 添加“添加文件”的按钮,
|
||||
uploader.addButton({id: '#filePicker2', label: '继续添加'});
|
||||
uploader.on('ready', function () {
|
||||
window.uploader = uploader;
|
||||
});
|
||||
|
||||
// 当有文件添加进来时执行,负责view的创建
|
||||
function addFile(file) {
|
||||
var $li = $('<li id="' + file.id + '"><p class="title">' + file.name + '</p><p class="imgWrap"></p><p class="progress"><span></span></p></li>'),
|
||||
$btns = $('<div class="file-panel"><span class="cancel">删除</span><span class="rotateRight">向右旋转</span><span class="rotateLeft">向左旋转</span></div>').appendTo($li),
|
||||
$prgress = $li.find('p.progress span'), $wrap = $li.find('p.imgWrap'),
|
||||
$info = $('<p class="error"></p>');
|
||||
var showError = function (code) {
|
||||
var text = '';
|
||||
switch (code) {
|
||||
case 'exceed_size':
|
||||
text = '文件大小超出';
|
||||
break;
|
||||
case 'interrupt':
|
||||
text = '上传暂停';
|
||||
break;
|
||||
case 'http':
|
||||
case 'server':
|
||||
case 'abort':
|
||||
text = '上传失败,请重试';
|
||||
break;
|
||||
default:
|
||||
text = code;
|
||||
break;
|
||||
}
|
||||
$info.text(text).appendTo($li);
|
||||
};
|
||||
if (file.getStatus() === 'invalid') {
|
||||
showError(file.statusText);
|
||||
} else {
|
||||
// @todo lazyload
|
||||
$wrap.text('预览中');
|
||||
uploader.makeThumb(file, function (error, src) {
|
||||
if (error) {
|
||||
return $wrap.text('不能预览');
|
||||
}
|
||||
var img;
|
||||
if (isSupportBase64) {
|
||||
img = $('<img src="' + src + '">');
|
||||
$wrap.empty().append(img);
|
||||
} else {
|
||||
$.ajax('{"plugs/file/preview"|url}', {
|
||||
method: 'post',
|
||||
data: src,
|
||||
dataType: 'json'
|
||||
}).done(function (response) {
|
||||
if (response.result) {
|
||||
img = $('<img src="' + response.result + '">');
|
||||
$wrap.empty().append(img);
|
||||
} else {
|
||||
$wrap.text("预览出错");
|
||||
}
|
||||
});
|
||||
}
|
||||
}, thumbnailWidth, thumbnailHeight);
|
||||
percentages[file.id] = [file.size, 0];
|
||||
file.rotation = 0;
|
||||
$upload.html('开始上传');
|
||||
}
|
||||
// 文件上传状态变化
|
||||
file.on('statuschange', function (cur, prev) {
|
||||
if (prev === 'progress') {
|
||||
$prgress.hide().width(0);
|
||||
} else if (prev === 'queued') {
|
||||
$li.off('mouseenter mouseleave'), $btns.remove();
|
||||
}
|
||||
if (cur === 'error' || cur === 'invalid') {
|
||||
showError(file.statusText);
|
||||
percentages[file.id][1] = 1;
|
||||
} else if (cur === 'interrupt') {
|
||||
showError('interrupt');
|
||||
} else if (cur === 'queued') {
|
||||
percentages[file.id][1] = 0;
|
||||
} else if (cur === 'progress') {
|
||||
$info.remove(), $prgress.css('display', 'block');
|
||||
} else if (cur === 'complete') {
|
||||
$li.append('<span class="success"></span>');
|
||||
}
|
||||
$li.removeClass('state-' + prev).addClass('state-' + cur);
|
||||
});
|
||||
$li.on('mouseenter', function () {
|
||||
$btns.stop().animate({height: 30});
|
||||
}).on('mouseleave', function () {
|
||||
$btns.stop().animate({height: 0});
|
||||
});
|
||||
$btns.on('click', 'span', function () {
|
||||
switch ($(this).index()) {
|
||||
case 0:
|
||||
removeFile(file);
|
||||
return uploader.removeFile(file);
|
||||
case 1:
|
||||
file.rotation += 90;
|
||||
break;
|
||||
case 2:
|
||||
file.rotation -= 90;
|
||||
break;
|
||||
}
|
||||
if (supportTransition) {
|
||||
var deg = 'rotate(' + file.rotation + 'deg)';
|
||||
$wrap.css({'-webkit-transform': deg, '-mos-transform': deg, '-o-transform': deg, 'transform': deg});
|
||||
} else {
|
||||
$wrap.css('filter', 'progid:DXImageTransform.Microsoft.BasicImage(rotation=' + (~~((file.rotation / 90) % 4 + 4) % 4) + ')');
|
||||
}
|
||||
});
|
||||
$li.appendTo($queue);
|
||||
}
|
||||
|
||||
// 负责view的销毁
|
||||
function removeFile(file) {
|
||||
delete percentages[file.id];
|
||||
updateTotalProgress();
|
||||
$('#' + file.id).off().find('.file-panel').off().end().remove();
|
||||
}
|
||||
|
||||
function updateTotalProgress() {
|
||||
var loaded = 0, total = 0, spans = $progress.children(), percent;
|
||||
$.each(percentages, function (k, v) {
|
||||
total += v[0];
|
||||
loaded += v[0] * v[1];
|
||||
});
|
||||
percent = total ? loaded / total : 0;
|
||||
spans.eq(0).text(Math.round(percent * 100) + '%');
|
||||
spans.eq(1).css('width', Math.round(percent * 100) + '%');
|
||||
updateStatus();
|
||||
}
|
||||
|
||||
function updateStatus() {
|
||||
var text = '', stats;
|
||||
if (state === 'ready') {
|
||||
text = '选中' + fileCount + '个文件,共' + WebUploader.formatSize(fileSize) + '。';
|
||||
} else if (state === 'confirm') {
|
||||
stats = uploader.getStats();
|
||||
if (stats.uploadFailNum) {
|
||||
text = '已成功上传' + stats.successNum + '个文件,' + stats.uploadFailNum + '个文件上传失败,<a class="retry" href="#">重新上传</a>失败文件'
|
||||
}
|
||||
} else {
|
||||
stats = uploader.getStats();
|
||||
text = '共' + fileCount + '个(' + WebUploader.formatSize(fileSize) + '),已上传' + stats.successNum + '个';
|
||||
if (stats.uploadFailNum) {
|
||||
text += ',失败' + stats.uploadFailNum + '个';
|
||||
}
|
||||
}
|
||||
$info.html(text);
|
||||
}
|
||||
|
||||
function setState(val) {
|
||||
var stats;
|
||||
if (val === state) {
|
||||
return;
|
||||
}
|
||||
$upload.removeClass('state-' + state);
|
||||
$upload.addClass('state-' + val);
|
||||
state = val;
|
||||
switch (state) {
|
||||
case 'pedding':
|
||||
$placeHolder.removeClass('element-invisible');
|
||||
$queue.hide();
|
||||
$statusBar.addClass('element-invisible');
|
||||
uploader.refresh();
|
||||
break;
|
||||
case 'ready':
|
||||
$placeHolder.addClass('element-invisible');
|
||||
$('#filePicker2').removeClass('element-invisible');
|
||||
$queue.show();
|
||||
$statusBar.removeClass('element-invisible');
|
||||
uploader.refresh();
|
||||
break;
|
||||
case 'uploading':
|
||||
$('#filePicker2').addClass('element-invisible');
|
||||
$progress.show();
|
||||
$upload.text('暂停上传');
|
||||
break;
|
||||
case 'paused':
|
||||
$progress.show();
|
||||
$upload.text('继续上传');
|
||||
break;
|
||||
case 'confirm':
|
||||
$progress.hide();
|
||||
$('#filePicker2').removeClass('element-invisible');
|
||||
$upload.text('开始上传');
|
||||
stats = uploader.getStats();
|
||||
if (stats.successNum && !stats.uploadFailNum) {
|
||||
setState('finish');
|
||||
return;
|
||||
}
|
||||
break;
|
||||
case 'finish':
|
||||
stats = uploader.getStats();
|
||||
if (stats.successNum) {
|
||||
completed.call(this);
|
||||
} else {
|
||||
state = 'done';
|
||||
location.reload();
|
||||
}
|
||||
break;
|
||||
}
|
||||
updateStatus();
|
||||
}
|
||||
|
||||
uploader.onUploadProgress = function (file, percentage) {
|
||||
var $li = $('#' + file.id), $percent = $li.find('.progress span');
|
||||
$percent.css('width', percentage * 100 + '%');
|
||||
percentages[file.id][1] = percentage;
|
||||
updateTotalProgress();
|
||||
};
|
||||
|
||||
uploader.onFileQueued = function (file) {
|
||||
fileCount++;
|
||||
fileSize += file.size;
|
||||
if (fileCount === 1) {
|
||||
$placeHolder.addClass('element-invisible');
|
||||
$statusBar.show();
|
||||
}
|
||||
addFile(file), setState('ready'), updateTotalProgress();
|
||||
};
|
||||
|
||||
uploader.onfieldequeued = function (file) {
|
||||
fileCount--;
|
||||
fileSize -= file.size;
|
||||
!fileCount && setState('pedding');
|
||||
removeFile(file), updateTotalProgress();
|
||||
};
|
||||
|
||||
uploader.on('all', function (type) {
|
||||
switch (type) {
|
||||
case 'uploadFinished':
|
||||
return setState('confirm');
|
||||
case 'startUpload':
|
||||
return setState('uploading');
|
||||
case 'stopUpload':
|
||||
return setState('paused');
|
||||
}
|
||||
});
|
||||
|
||||
uploader.onError = function (code) {
|
||||
// 000alert('Error: ' + code);
|
||||
};
|
||||
|
||||
$upload.on('click', function () {
|
||||
if ($(this).hasClass('disabled')) {
|
||||
return false;
|
||||
}
|
||||
if (state === 'ready') {
|
||||
uploader.upload();
|
||||
} else if (state === 'paused') {
|
||||
uploader.upload();
|
||||
} else if (state === 'uploading') {
|
||||
uploader.stop();
|
||||
}
|
||||
});
|
||||
|
||||
$info.on('click', '.retry', function () {
|
||||
uploader.retry();
|
||||
});
|
||||
|
||||
$upload.addClass('state-' + state);
|
||||
updateTotalProgress();
|
||||
});
|
||||
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user