centaline-data-driven 1.6.26 → 1.6.27
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
package/release-log.md
CHANGED
|
@@ -216,7 +216,7 @@
|
|
|
216
216
|
|
|
217
217
|
<div slot="file" slot-scope="{ file }" :title="file.fileName">
|
|
218
218
|
<div class="cover-list-item">
|
|
219
|
-
<div @click="viewerfile(file)"
|
|
219
|
+
<div @click="viewerfile(file)">
|
|
220
220
|
<div v-if="file.progressFlag" v-loading="file.progressFlag" style="width: 100px; height: 100px"
|
|
221
221
|
element-loading-spinner="el-icon-loading">
|
|
222
222
|
</div>
|
|
@@ -477,47 +477,32 @@ export default {
|
|
|
477
477
|
},
|
|
478
478
|
handleDownload(file) {
|
|
479
479
|
},
|
|
480
|
-
handleChange(file, fileList) {
|
|
481
|
-
debugger
|
|
482
|
-
console.log(file, 'handleChange')
|
|
483
|
-
|
|
480
|
+
handleChange(file, fileList) {
|
|
484
481
|
this.changeHandler(this.model.value);
|
|
485
482
|
},
|
|
486
483
|
//上传之前的钩子
|
|
487
484
|
beforeUploadProcess(file) {
|
|
488
|
-
debugger
|
|
489
|
-
console.log(file, 'beforeUploadProcess')
|
|
490
485
|
return true;
|
|
491
486
|
},
|
|
492
487
|
|
|
493
488
|
//文件上传时的钩子
|
|
494
489
|
uploadProcess(event, file, fileList) {
|
|
495
|
-
debugger
|
|
496
|
-
console.log(file, "++++++++++++++++");
|
|
497
490
|
file.progressFlag = true; // 显示进度条
|
|
498
491
|
file.loadProgress = parseInt(event.percent); // 动态获取文件上传进度
|
|
499
|
-
|
|
500
|
-
console.log(file, fileList);
|
|
501
|
-
|
|
502
492
|
if (file.loadProgress >= 100) {
|
|
503
493
|
file.loadProgress = 100;
|
|
504
494
|
setTimeout(() => {
|
|
505
|
-
console.log(file, "---------------");
|
|
506
495
|
file.progressFlag = false;
|
|
507
496
|
}, 1000); // 一秒后关闭进度条
|
|
508
497
|
}
|
|
509
498
|
},
|
|
510
499
|
//上传完成钩子
|
|
511
500
|
handleAvatarSuccess(res, file, fileList) {
|
|
512
|
-
debugger
|
|
513
|
-
console.log(file, 'handleAvatarSuccess')
|
|
514
501
|
this.model.handleAvatarSuccess(res, file, fileList);
|
|
515
502
|
this.QRFileList = fileList;
|
|
516
503
|
this.QRCodeLocate();
|
|
517
504
|
},
|
|
518
505
|
handleAvatarError(res, file, fileList) {
|
|
519
|
-
debugger
|
|
520
|
-
console.log(file, 'handleAvatarError')
|
|
521
506
|
if (res.status === 404) {
|
|
522
507
|
let m = JSON.parse(res.message);
|
|
523
508
|
if (m.error) {
|
|
@@ -53987,33 +53987,22 @@ if (typeof window !== "undefined" && "Vue" in window) {
|
|
|
53987
53987
|
},
|
|
53988
53988
|
handleDownload: function handleDownload(file) {},
|
|
53989
53989
|
handleChange: function handleChange(file, fileList) {
|
|
53990
|
-
debugger;
|
|
53991
|
-
console.log(file, 'handleChange');
|
|
53992
|
-
|
|
53993
53990
|
this.changeHandler(this.model.value);
|
|
53994
53991
|
},
|
|
53995
53992
|
|
|
53996
53993
|
//上传之前的钩子
|
|
53997
53994
|
beforeUploadProcess: function beforeUploadProcess(file) {
|
|
53998
|
-
debugger;
|
|
53999
|
-
console.log(file, 'beforeUploadProcess');
|
|
54000
53995
|
return true;
|
|
54001
53996
|
},
|
|
54002
53997
|
|
|
54003
53998
|
|
|
54004
53999
|
//文件上传时的钩子
|
|
54005
54000
|
uploadProcess: function uploadProcess(event, file, fileList) {
|
|
54006
|
-
debugger;
|
|
54007
|
-
console.log(file, "++++++++++++++++");
|
|
54008
54001
|
file.progressFlag = true; // 显示进度条
|
|
54009
54002
|
file.loadProgress = parseInt(event.percent); // 动态获取文件上传进度
|
|
54010
|
-
|
|
54011
|
-
console.log(file, fileList);
|
|
54012
|
-
|
|
54013
54003
|
if (file.loadProgress >= 100) {
|
|
54014
54004
|
file.loadProgress = 100;
|
|
54015
54005
|
setTimeout(function () {
|
|
54016
|
-
console.log(file, "---------------");
|
|
54017
54006
|
file.progressFlag = false;
|
|
54018
54007
|
}, 1000); // 一秒后关闭进度条
|
|
54019
54008
|
}
|
|
@@ -54021,15 +54010,11 @@ if (typeof window !== "undefined" && "Vue" in window) {
|
|
|
54021
54010
|
|
|
54022
54011
|
//上传完成钩子
|
|
54023
54012
|
handleAvatarSuccess: function handleAvatarSuccess(res, file, fileList) {
|
|
54024
|
-
debugger;
|
|
54025
|
-
console.log(file, 'handleAvatarSuccess');
|
|
54026
54013
|
this.model.handleAvatarSuccess(res, file, fileList);
|
|
54027
54014
|
this.QRFileList = fileList;
|
|
54028
54015
|
this.QRCodeLocate();
|
|
54029
54016
|
},
|
|
54030
54017
|
handleAvatarError: function handleAvatarError(res, file, fileList) {
|
|
54031
|
-
debugger;
|
|
54032
|
-
console.log(file, 'handleAvatarError');
|
|
54033
54018
|
if (res.status === 404) {
|
|
54034
54019
|
var m = JSON.parse(res.message);
|
|
54035
54020
|
if (m.error) {
|
|
@@ -81215,7 +81200,7 @@ if (typeof window !== 'undefined' && window.Vue) {
|
|
|
81215
81200
|
"use strict";
|
|
81216
81201
|
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__babel_loader_node_modules_vue_loader_lib_selector_type_script_index_0_dynamicFile_vue__ = __webpack_require__(342);
|
|
81217
81202
|
/* unused harmony namespace reexport */
|
|
81218
|
-
/* harmony import */ var
|
|
81203
|
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__node_modules_vue_loader_lib_template_compiler_index_id_data_v_98486b1a_hasScoped_false_buble_transforms_node_modules_vue_loader_lib_selector_type_template_index_0_dynamicFile_vue__ = __webpack_require__(708);
|
|
81219
81204
|
function injectStyle (ssrContext) {
|
|
81220
81205
|
__webpack_require__(701)
|
|
81221
81206
|
}
|
|
@@ -81235,7 +81220,7 @@ var __vue_scopeId__ = null
|
|
|
81235
81220
|
var __vue_module_identifier__ = null
|
|
81236
81221
|
var Component = normalizeComponent(
|
|
81237
81222
|
__WEBPACK_IMPORTED_MODULE_0__babel_loader_node_modules_vue_loader_lib_selector_type_script_index_0_dynamicFile_vue__["a" /* default */],
|
|
81238
|
-
|
|
81223
|
+
__WEBPACK_IMPORTED_MODULE_1__node_modules_vue_loader_lib_template_compiler_index_id_data_v_98486b1a_hasScoped_false_buble_transforms_node_modules_vue_loader_lib_selector_type_template_index_0_dynamicFile_vue__["a" /* default */],
|
|
81239
81224
|
__vue_template_functional__,
|
|
81240
81225
|
__vue_styles__,
|
|
81241
81226
|
__vue_scopeId__,
|
|
@@ -81256,7 +81241,7 @@ var content = __webpack_require__(702);
|
|
|
81256
81241
|
if(typeof content === 'string') content = [[module.i, content, '']];
|
|
81257
81242
|
if(content.locals) module.exports = content.locals;
|
|
81258
81243
|
// add the styles to the DOM
|
|
81259
|
-
var update = __webpack_require__(3)("
|
|
81244
|
+
var update = __webpack_require__(3)("30c45535", content, true, {});
|
|
81260
81245
|
|
|
81261
81246
|
/***/ }),
|
|
81262
81247
|
/* 702 */
|
|
@@ -81362,7 +81347,7 @@ var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._sel
|
|
|
81362
81347
|
var file = ref.file;
|
|
81363
81348
|
return _c('div',{attrs:{"title":file.fileName}},[_c('div',{staticClass:"cover-list-item"},[_c('div',{on:{"click":function($event){_vm.viewerfile(file)}}},[(file.progressFlag)?_c('div',{directives:[{name:"loading",rawName:"v-loading",value:(file.progressFlag),expression:"file.progressFlag"}],staticStyle:{"width":"100px","height":"100px"},attrs:{"element-loading-spinner":"el-icon-loading"}}):_c('el-image',{staticStyle:{"width":"100px","height":"100px"},attrs:{"fit":"fill","src":file.url ? file.url : file.mediaUrl ? file.mediaUrl + '/100/100' : __webpack_require__(344),"z-index":_vm.previewZIndex}})],1),_vm._v(" "),((_vm.model.lock && file.flagDefault) || (_vm.model.rightDefault && _vm.model.rightDefault == 1 && file.mediaTypeID == 2))?_c('span',{staticClass:"cover-list-item-span-Default"},[_c('i',[_c('el-radio',{class:{ 'browseDefault': _vm.model.lock },attrs:{"label":true,"disabled":_vm.model.lock,"title":"设为封面"},on:{"change":function($event){_vm.handleDefault($event, file)}},model:{value:(file.flagDefault),callback:function ($$v) {_vm.$set(file, "flagDefault", $$v)},expression:"file.flagDefault"}},[_vm._v(" ")])],1)]):_vm._e(),_vm._v(" "),(!_vm.model.lock && file.rightCrop && file.mediaTypeID == 2)?_c('span',{staticClass:"cover-list-item-span-edit"},[_c('i',{staticClass:"el-icon-edit-outline",on:{"click":function($event){_vm.handleEdit(file)}}})]):_vm._e(),_vm._v(" "),(!_vm.model.lock && file.rightDel)?_c('span',{staticClass:"cover-list-item-span-delete"},[_c('i',{staticClass:"el-icon-delete",on:{"click":function($event){_vm.handleRemove(file)}}})]):_vm._e(),_vm._v(" "),(file.videoPlayIconUrl)?_c('span',{staticClass:"cover-list-item-play"},[_c('div',{staticClass:"swiper-i",on:{"click":function($event){_vm.viewerfile(file)}}},[_c('img',{staticClass:"hous-icon",attrs:{"src":file.videoPlayIconUrl}})])]):(file.mediaTypeID == 4 && (file.videoPlayIconUrl || _vm.model.videoPlayIconUrl))?_c('span',{staticClass:"cover-list-item-play"},[_c('div',{staticClass:"swiper-i",on:{"click":function($event){_vm.viewerfile(file)}}},[_c('img',{staticClass:"hous-icon",attrs:{"src":(file.videoPlayIconUrl || _vm.model.videoPlayIconUrl)}})])]):_vm._e(),_vm._v(" "),((_vm.model.lock && file.mediaLabelName) || _vm.model.paramName)?_c('span',{staticClass:"cover-list-item-span"},[(_vm.model.lock || !file.rightEdit)?_c('span',{staticClass:"el-dropdown-link"},[_c('span',{staticStyle:{"width":"80px","height":"26px","display":"inline-flex"}},[_vm._v(" "+_vm._s(file.mediaLabelName))])]):(_vm.model.isComplexClassify)?_c('span',{staticClass:"el-dropdown-link",on:{"click":function($event){_vm.classifyFormClickHandle(file)}}},[_c('span',{staticStyle:{"width":"80px","height":"26px","display":"inline-flex"}},[_vm._v(" "+_vm._s(file.mediaLabelName))]),_vm._v(" "),_c('i',{staticClass:"el-icon-arrow-down el-icon--right"})]):_c('el-dropdown',{staticClass:"el-upload-list__item-preview",attrs:{"trigger":"click","placement":"top"},on:{"command":_vm.classifySelectedClickHandle}},[_c('span',{staticClass:"el-dropdown-link",on:{"click":_vm.classifyClickHandle}},[_c('span',{staticStyle:{"width":"80px","height":"26px","display":"inline-flex"}},[_vm._v(" "+_vm._s(file.mediaLabelName))]),_vm._v(" "),_c('i',{staticClass:"el-icon-arrow-down el-icon--right"})]),_vm._v(" "),_c('el-dropdown-menu',{staticClass:"el-upload-list__item-preview",attrs:{"slot":"dropdown"},slot:"dropdown"},_vm._l((_vm.model.optionModel.options),function(option,index){return _c('el-dropdown-item',{key:index,attrs:{"command":{ option: option, file: file }}},[_vm._v("\n "+_vm._s(option[_vm.model.optionModel.optionAttrs.label])+"\n ")])}))],1)],1):_vm._e()]),_vm._v(" "),_c('div',[(file.progressFlag)?_c('el-progress',{staticClass:"file-cirle file-cirle-mrLeft",attrs:{"type":"circle","show-text":false,"percentage":typeof file.loadProgress !== 'undefined' && file.loadProgress !== null ? file.loadProgress : 0.00,"width":96,"height":96}}):_vm._e(),_vm._v(" "),(file.progressFlag)?_c('div',{staticClass:"circleCenter"},[_c('div',{staticStyle:{"font-size":"12px","color":"#666"}},[_vm._v(" "+_vm._s(file.loadProgress.toFixed(2))+"%")])]):_vm._e()],1)])}}])},[_c('template',{slot:"default"},[_c('i',{staticClass:"el-icon-plus"})]),_vm._v(" "),_c('div',{directives:[{name:"show",rawName:"v-show",value:(!_vm.valid),expression:"!valid"}],staticClass:"el-upload__tip errorMessage",staticStyle:{"white-space":"pre-wrap"},attrs:{"slot":"tip"},domProps:{"innerHTML":_vm._s(_vm.validMessage)},slot:"tip"}),_vm._v(" "),_c('div',{directives:[{name:"show",rawName:"v-show",value:(_vm.model.description),expression:"model.description"}],attrs:{"slot":"tip"},domProps:{"innerHTML":_vm._s(_vm.model.description)},slot:"tip"}),_vm._v(" "),(_vm.model.QRCodeAction)?_c('img',{ref:"QRCodeRef",staticClass:"qrcode-target",staticStyle:{"width":"35px","height":"35px"},attrs:{"src":__webpack_require__(345),"alt":"扫码上传","title":"扫码上传"},on:{"click":function($event){$event.stopPropagation();return _vm.qrcodeFn($event)}}}):_vm._e(),_vm._v(" "),(_vm.qrcodeVisible)?_c('div',{staticClass:"ScanUploadPhoto",style:({ top: _vm.QRCodeRefTop + 'px', left: _vm.QRCodeRefLeft + 'px' }),on:{"click":function($event){$event.stopPropagation();_vm.qrcodeVisible = true}}},[_c('div',{staticStyle:{"border-bottom":"none"}},[_c('div',{staticStyle:{"text-align":"center","margin-bottom":"10px","margin-top":"5px","color":"#666666","font-size":"14px"}},[_vm._v("扫码上传")]),_vm._v(" "),_c('i',{staticClass:"jiao",style:({ top: _vm.QRCodeRefJiaoTop + 'px' })}),_vm._v(" "),_c('div',{staticStyle:{"width":"200px","height":"200px"}},[(_vm.qrCodeImg)?_c('img',{style:(_vm.isQrCode ? 'opacity: 0.1' : ''),attrs:{"src":_vm.qrCodeImg,"width":"200","height":"200"}}):_vm._e(),_vm._v(" "),(_vm.isQrCode)?_c('div',{staticClass:"div-fail"},[_c('span',{staticClass:"ScanText",staticStyle:{"color":"#666666"}},[_vm._v(_vm._s(_vm.scanStatusDesc))]),_vm._v(" "),(_vm.FlagbtnScan)?_c('div',{staticStyle:{"text-align":"center"}},[_c('el-button',{staticClass:" max-btn-add",attrs:{"type":"success","size":"mini"},on:{"click":function($event){$event.stopPropagation();return _vm.ShowQRcode($event)}}},[_vm._v("扫码上传")])],1):_vm._e()]):_vm._e()])])]):_vm._e(),_vm._v(" "),((_vm.model.lock) || _vm.model.paramName)?_c('span',{staticClass:"Public-classification",staticStyle:{"color":"#fff","border-radius":"0px 0px 4px 4px","text-align":"left","line-height":"26px","display":"inline-flex","overflow":"hidden"}},[(_vm.model.lock)?_c('span',{staticClass:"el-dropdown-link"},[_c('span',{staticStyle:{"width":"80px","height":"26px","display":"inline-flex","overflow":"hidden"}},[_vm._v(" "+_vm._s(_vm.model.mediaLabe.mediaLabelName))])]):(_vm.model.isComplexClassify)?_c('span',{staticClass:"el-dropdown-link",on:{"click":function($event){$event.stopPropagation();_vm.classifyFormClickHandle(_vm.model.mediaLabe)}}},[_c('span',{staticStyle:{"width":"80px","height":"26px","display":"inline-flex","overflow":"hidden"}},[_vm._v(" "+_vm._s(_vm.model.mediaLabe.mediaLabelName))]),_vm._v(" "),_c('i',{staticClass:"el-icon-arrow-down el-icon--right"})]):_c('el-dropdown',{staticClass:"el-upload-list__item-preview",attrs:{"trigger":"click","placement":"top"},on:{"command":_vm.PublicClassifySelectedClickHandle}},[_c('span',{staticClass:"el-dropdown-link",on:{"click":function($event){$event.stopPropagation();return _vm.classifyClickHandle($event)}}},[_c('span',{staticStyle:{"width":"80px","height":"26px","display":"inline-flex","overflow":"hidden"}},[_vm._v(" "+_vm._s(_vm.model.mediaLabe.mediaLabelName))]),_vm._v(" "),_c('i',{staticClass:"el-icon-arrow-down el-icon--right",staticStyle:{"color":"#fff"}})]),_vm._v(" "),_c('el-dropdown-menu',{staticClass:"el-upload-list__item-preview",attrs:{"slot":"dropdown"},slot:"dropdown"},_vm._l((_vm.model.optionModel.options),function(option,index){return _c('el-dropdown-item',{key:index,attrs:{"command":{ option: option, mediaLabe: _vm.model.mediaLabe }}},[_vm._v("\n "+_vm._s(option[_vm.model.optionModel.optionAttrs.label])+"\n ")])}))],1)],1):_vm._e()],2)]:[_c('el-upload',{ref:"upload",class:_vm.disableUpload ? 'ct-upload-display-none' : '',attrs:{"disabled":_vm.model.lock,"accept":_vm.model.fileAccept,"on-change":_vm.handleChange,"list-type":"picture-card","file-list":_vm.model.fileList,"multiple":true,"auto-upload":true,"action":_vm.model.action,"data":_vm.model.uploadData,"headers":_vm.headers,"before-upload":_vm.beforeUploadProcess,"on-success":_vm.handleAvatarSuccess,"on-error":_vm.handleAvatarError,"on-progress":_vm.uploadProcess,"limit":parseInt(_vm.model.max || 999),"on-exceed":_vm.handleExceed},scopedSlots:_vm._u([{key:"file",fn:function(ref){
|
|
81364
81349
|
var file = ref.file;
|
|
81365
|
-
return _c('div',{attrs:{"title":file.fileName}},[_c('div',{staticClass:"cover-list-item"},[_c('div',{
|
|
81350
|
+
return _c('div',{attrs:{"title":file.fileName}},[_c('div',{staticClass:"cover-list-item"},[_c('div',{on:{"click":function($event){_vm.viewerfile(file)}}},[(file.progressFlag)?_c('div',{directives:[{name:"loading",rawName:"v-loading",value:(file.progressFlag),expression:"file.progressFlag"}],staticStyle:{"width":"100px","height":"100px"},attrs:{"element-loading-spinner":"el-icon-loading"}}):_c('el-image',{staticStyle:{"width":"100px","height":"100px"},attrs:{"fit":"fill","src":file.url ? file.url : file.mediaUrl ? file.url : __webpack_require__(344),"z-index":_vm.previewZIndex}})],1),_vm._v(" "),((_vm.model.lock && file.flagDefault) || (_vm.model.rightDefault && _vm.model.rightDefault == 1 && file.mediaTypeID == 2))?_c('span',{staticClass:"cover-list-item-span-Default"},[_c('i',[_c('el-radio',{class:{ 'browseDefault': _vm.model.lock },attrs:{"label":true,"disabled":_vm.model.lock,"title":"设为封面"},on:{"change":function($event){_vm.handleDefault($event, file)}},model:{value:(file.flagDefault),callback:function ($$v) {_vm.$set(file, "flagDefault", $$v)},expression:"file.flagDefault"}},[_vm._v(" ")])],1)]):_vm._e(),_vm._v(" "),(!_vm.model.lock && file.rightCrop && file.mediaTypeID == 2)?_c('span',{staticClass:"cover-list-item-span-edit"},[_c('i',{staticClass:"el-icon-edit-outline",on:{"click":function($event){_vm.handleEdit(file)}}})]):_vm._e(),_vm._v(" "),(!_vm.model.lock && file.rightDel)?_c('span',{staticClass:"cover-list-item-span-delete"},[_c('i',{staticClass:"el-icon-delete",on:{"click":function($event){_vm.handleRemove(file)}}})]):_vm._e(),_vm._v(" "),(file.videoPlayIconUrl)?_c('span',{staticClass:"cover-list-item-play"},[_c('div',{staticClass:"swiper-i",on:{"click":function($event){_vm.viewerfile(file)}}},[_c('img',{staticClass:"hous-icon",attrs:{"src":file.videoPlayIconUrl}})])]):(file.mediaTypeID == 4 && (file.videoPlayIconUrl || _vm.model.videoPlayIconUrl))?_c('span',{staticClass:"cover-list-item-play"},[_c('div',{staticClass:"swiper-i",on:{"click":function($event){_vm.viewerfile(file)}}},[_c('img',{staticClass:"hous-icon",attrs:{"src":(file.videoPlayIconUrl || _vm.model.videoPlayIconUrl)}})])]):_vm._e(),_vm._v(" "),((_vm.model.lock && file.mediaLabelName) || _vm.model.paramName)?_c('span',{staticClass:"cover-list-item-span"},[(_vm.model.lock || !file.rightEdit)?_c('span',{staticClass:"el-dropdown-link"},[_c('span',{staticStyle:{"width":"80px","height":"26px","display":"inline-flex"}},[_vm._v(" "+_vm._s(file.mediaLabelName))])]):(_vm.model.isComplexClassify)?_c('span',{staticClass:"el-dropdown-link",on:{"click":function($event){_vm.classifyFormClickHandle(file)}}},[_c('span',{staticStyle:{"width":"80px","height":"26px","display":"inline-flex"}},[_vm._v(" "+_vm._s(file.mediaLabelName))]),_vm._v(" "),_c('i',{staticClass:"el-icon-arrow-down el-icon--right"})]):_c('el-dropdown',{staticClass:"el-upload-list__item-preview",attrs:{"trigger":"click","placement":"top"},on:{"command":_vm.classifySelectedClickHandle}},[_c('span',{staticClass:"el-dropdown-link",on:{"click":_vm.classifyClickHandle}},[_c('span',{staticStyle:{"width":"80px","height":"26px","display":"inline-flex"}},[_vm._v(" "+_vm._s(file.mediaLabelName))]),_vm._v(" "),_c('i',{staticClass:"el-icon-arrow-down el-icon--right"})]),_vm._v(" "),_c('el-dropdown-menu',{staticClass:"el-upload-list__item-preview",attrs:{"slot":"dropdown"},slot:"dropdown"},_vm._l((_vm.model.optionModel.options),function(option,index){return _c('el-dropdown-item',{key:index,attrs:{"command":{ option: option, file: file }}},[_vm._v("\n "+_vm._s(option[_vm.model.optionModel.optionAttrs.label])+"\n ")])}))],1)],1):_vm._e()]),_vm._v(" "),_c('div',[(file.progressFlag)?_c('el-progress',{staticClass:"file-cirle file-cirle-mrLeft",attrs:{"type":"circle","show-text":false,"percentage":typeof file.loadProgress !== 'undefined' && file.loadProgress !== null ? file.loadProgress : 0.00,"width":96,"height":96}}):_vm._e(),_vm._v(" "),(file.progressFlag)?_c('div',{staticClass:"circleCenter"},[_c('div',{staticStyle:{"font-size":"12px","color":"#666"}},[_vm._v(" "+_vm._s(file.loadProgress.toFixed(2))+"%")])]):_vm._e()],1)])}}])},[_c('i',{staticClass:"el-icon-plus",attrs:{"slot":"default"},slot:"default"}),_vm._v(" "),_c('div',{directives:[{name:"show",rawName:"v-show",value:(!_vm.valid),expression:"!valid"}],staticClass:"el-upload__tip errorMessage",staticStyle:{"white-space":"pre-wrap"},attrs:{"slot":"tip"},domProps:{"innerHTML":_vm._s(_vm.validMessage)},slot:"tip"}),_vm._v(" "),_c('div',{directives:[{name:"show",rawName:"v-show",value:(_vm.model.description),expression:"model.description"}],attrs:{"slot":"tip"},domProps:{"innerHTML":_vm._s(_vm.model.description)},slot:"tip"}),_vm._v(" "),(_vm.model.QRCodeAction)?_c('img',{ref:"QRCodeRef",staticClass:"qrcode-target",staticStyle:{"width":"35px","height":"35px"},attrs:{"src":__webpack_require__(345),"alt":"扫码上传","title":"扫码上传"},on:{"click":function($event){$event.stopPropagation();return _vm.qrcodeFn($event)}}}):_vm._e(),_vm._v(" "),(_vm.qrcodeVisible)?_c('div',{staticClass:"ScanUploadPhoto",style:({ top: _vm.QRCodeRefTop + 'px', left: _vm.QRCodeRefLeft + 'px' }),on:{"click":function($event){$event.stopPropagation();_vm.qrcodeVisible = true}}},[_c('div',{staticStyle:{"border-bottom":"none"}},[_c('div',{staticStyle:{"text-align":"center","margin-bottom":"10px","margin-top":"5px","color":"#666666","font-size":"14px"}},[_vm._v("扫码上传")]),_vm._v(" "),_c('i',{staticClass:"jiao",style:({ top: _vm.QRCodeRefJiaoTop + 'px' })}),_vm._v(" "),_c('div',{staticStyle:{"width":"200px","height":"200px"}},[(_vm.qrCodeImg)?_c('img',{style:(_vm.isQrCode ? 'opacity: 0.1' : ''),attrs:{"src":_vm.qrCodeImg,"width":"200","height":"200"}}):_vm._e(),_vm._v(" "),(_vm.isQrCode)?_c('div',{staticClass:"div-fail"},[_c('span',{staticClass:"ScanText",staticStyle:{"color":"#666666"}},[_vm._v(_vm._s(_vm.scanStatusDesc))]),_vm._v(" "),(_vm.FlagbtnScan)?_c('div',{staticStyle:{"text-align":"center"}},[_c('el-button',{staticClass:" max-btn-add",attrs:{"type":"success","size":"mini"},on:{"click":function($event){$event.stopPropagation();return _vm.ShowQRcode($event)}}},[_vm._v("扫码上传")])],1):_vm._e()]):_vm._e()])])]):_vm._e(),_vm._v(" "),((_vm.model.lock) || _vm.model.paramName)?_c('span',{staticClass:"Public-classification",staticStyle:{"color":"#fff","border-radius":"0px 0px 4px 4px","text-align":"left","line-height":"26px","display":"inline-flex","overflow":"hidden"}},[(_vm.model.lock)?_c('span',{staticClass:"el-dropdown-link"},[_c('span',{staticStyle:{"width":"80px","height":"26px","display":"inline-flex","overflow":"hidden"}},[_vm._v(" "+_vm._s(_vm.model.mediaLabe.mediaLabelName))])]):(_vm.model.isComplexClassify)?_c('span',{staticClass:"el-dropdown-link",on:{"click":function($event){$event.stopPropagation();_vm.classifyFormClickHandle(_vm.model.mediaLabe)}}},[_c('span',{staticStyle:{"width":"80px","height":"26px","display":"inline-flex","overflow":"hidden"}},[_vm._v(" "+_vm._s(_vm.model.mediaLabe.mediaLabelName))]),_vm._v(" "),_c('i',{staticClass:"el-icon-arrow-down el-icon--right"})]):_c('el-dropdown',{staticClass:"el-upload-list__item-preview",attrs:{"trigger":"click","placement":"top"},on:{"command":_vm.PublicClassifySelectedClickHandle}},[_c('span',{staticClass:"el-dropdown-link",on:{"click":function($event){$event.stopPropagation();return _vm.classifyClickHandle($event)}}},[_c('span',{staticStyle:{"width":"80px","height":"26px","display":"inline-flex","overflow":"hidden"}},[_vm._v(" "+_vm._s(_vm.model.mediaLabe.mediaLabelName))]),_vm._v(" "),_c('i',{staticClass:"el-icon-arrow-down el-icon--right",staticStyle:{"color":"#fff"}})]),_vm._v(" "),_c('el-dropdown-menu',{staticClass:"el-upload-list__item-preview",attrs:{"slot":"dropdown"},slot:"dropdown"},_vm._l((_vm.model.optionModel.options),function(option,index){return _c('el-dropdown-item',{key:index,attrs:{"command":{ option: option, mediaLabe: _vm.model.mediaLabe }}},[_vm._v("\n "+_vm._s(option[_vm.model.optionModel.optionAttrs.label])+"\n ")])}))],1)],1):_vm._e()])]],2):_vm._e()}
|
|
81366
81351
|
var staticRenderFns = []
|
|
81367
81352
|
var esExports = { render: render, staticRenderFns: staticRenderFns }
|
|
81368
81353
|
/* harmony default export */ __webpack_exports__["a"] = (esExports);
|