centaline-data-driven 1.6.11 → 1.6.13

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.
@@ -50,7 +50,7 @@
50
50
  },
51
51
  methods: {
52
52
  load(data) {
53
- this.model = data;
53
+ this.model = data;
54
54
  },
55
55
  changeSwitchHandler: function (event) {
56
56
  this.changeHandler();
@@ -42,6 +42,10 @@ const box = function (source, fileSourceList, router, optionApi,videoPlayIconUrl
42
42
  get mediaViewPageType() {
43
43
  return data.mediaViewPageType;
44
44
  },
45
+ mediaLabe: {
46
+ mediaLabelID: "",
47
+ mediaLabelName: ""
48
+ },
45
49
  _fileList: [],
46
50
  get fileList() {
47
51
  if (this._fileList.length !== 0) {
@@ -184,7 +188,6 @@ const box = function (source, fileSourceList, router, optionApi,videoPlayIconUrl
184
188
  submit: function (formModel) {
185
189
  file.mediaFormData = formModel.formData.getFormObj();
186
190
  common.closeDialog(dialogOption.dialog);
187
-
188
191
  //设置分类显示
189
192
  var mediaLabelValue = file.mediaFormData['mediaLabelID'];
190
193
  if (typeof mediaLabelValue !== 'undefined') {
@@ -310,16 +313,23 @@ const box = function (source, fileSourceList, router, optionApi,videoPlayIconUrl
310
313
 
311
314
  return fileData;
312
315
  },
316
+ setPublicClassify(classify) {
317
+ rtn.mediaLabe.mediaLabelName = classify.option[rtn.optionModel.optionAttrs.label];
318
+ rtn.mediaLabe.mediaLabelID = classify.option[rtn.optionModel.optionAttrs.value];
319
+ },
313
320
  setClassify(classify) {
314
321
  classify.file.source.mediaLabelName = classify.option[rtn.optionModel.optionAttrs.label];
315
322
  classify.file.source.mediaLabelID = classify.option[rtn.optionModel.optionAttrs.value];
316
323
  },
317
324
  handleAvatarSuccess(res, file, fileList) {
318
325
  if (res.rtnCode === Enum.ReturnCode.Successful) {
326
+ var media = res.content[0];
327
+ media.mediaLabelID =file.mediaLabelID || rtn.mediaLabe.mediaLabelID;
328
+ media.mediaLabelName = file.mediaLabelName || rtn.mediaLabe.mediaLabelName;
319
329
  //下面的方式绑定,会有一些问题 todo 不强与页面关联
320
- fileSourceList.push(res.content[0]);
321
- var data = rtn.getFileData(res.content[0]);
322
-
330
+ fileSourceList.push(media);
331
+ var data = rtn.getFileData(media);
332
+
323
333
 
324
334
  Vue.set(file, "url", data.url);
325
335
  Vue.set(file, "source", data.source);
@@ -337,8 +347,8 @@ const box = function (source, fileSourceList, router, optionApi,videoPlayIconUrl
337
347
  Vue.set(file, "rightDel", data.rightDel);
338
348
  Vue.set(file, "rightEdit", data.rightEdit);
339
349
  Vue.set(file, "rightDownload", data.rightDownload);
340
- Vue.set(file, "mediaLabelID", data.mediaLabelID);
341
- Vue.set(file, "mediaLabelName", data.mediaLabelName);
350
+ Vue.set(file, "mediaLabelID",data.mediaLabelID );
351
+ Vue.set(file, "mediaLabelName", data.mediaLabelName );
342
352
  Vue.set(file, "fileExtension", data.fileExtension);
343
353
  Vue.set(file, "videoPlayIconUrl", data.videoPlayIconUrl);
344
354
  Vue.set(file, "progressFlag", false);
@@ -377,8 +387,8 @@ const box = function (source, fileSourceList, router, optionApi,videoPlayIconUrl
377
387
  "rightDel": "",
378
388
  "rightEdit": "",
379
389
  "rightDownload": "",
380
- "mediaLabelID": "",
381
- "mediaLabelName": "",
390
+ "mediaLabelID": rtn.mediaLabe.mediaLabelID||"",
391
+ "mediaLabelName": rtn.mediaLabe.mediaLabelName||"",
382
392
  "fileExtension": "",
383
393
  "progressFlag": true,
384
394
  "loadProgress": 0,
@@ -418,14 +428,21 @@ const box = function (source, fileSourceList, router, optionApi,videoPlayIconUrl
418
428
  setByPieces(res, Progress, file) {
419
429
  if (res.rtnCode === Enum.ReturnCode.Successful) {
420
430
  //下面的方式绑定,会有一些问题 todo 不强与页面关联
421
- var data = {};
431
+ var data = {
432
+ "mediaLabelID": file.mediaLabelID || rtn.mediaLabe.mediaLabelID,
433
+ "mediaLabelName": file.mediaLabelName || rtn.mediaLabe.mediaLabelName
434
+ };
422
435
  var w;
423
436
  var h;
424
437
  if (res.content.finished == 1) {
425
438
  //下面的方式绑定,会有一些问题 todo 不强与页面关联
426
- fileSourceList.push(res.content.media);
427
439
 
428
- data = rtn.getFileData(res.content.media);
440
+ var media = res.content.media;
441
+ media.mediaLabelID =file.mediaLabelID || rtn.mediaLabe.mediaLabelID;
442
+ media.mediaLabelName = file.mediaLabelName || rtn.mediaLabe.mediaLabelName;
443
+ fileSourceList.push(media);
444
+
445
+ data = rtn.getFileData(media);
429
446
  data.progressFlag = false;
430
447
  data.loadProgress = 100;
431
448
 
@@ -866,7 +866,7 @@ const SearchTable = function (data, callBack, searchModel, flagSearch, defaultSe
866
866
  },
867
867
  doAction(response) {
868
868
  if (response.responseData) {
869
- response = response.responseData;
869
+ response = response.responseData;
870
870
  }
871
871
  switch (response.notification) {
872
872
  case Enum.ActionType.Delete: //删除
package/src/main.js CHANGED
@@ -20,10 +20,11 @@ Vue.use(centaline, {
20
20
  // baseUrl: "http://10.88.22.13:6060/onecard-api/",
21
21
  // baseUrl: "http://10.6.1.163:9000/max-uplink-api/v1/form/router",
22
22
  baseUrl: "http://10.25.10.63:9999/service-api/",
23
+ baseUrl: "http://10.25.10.67:9999/service-api/",
23
24
  // baseUrl: "http://10.25.10.69:8080/",
24
25
  // baseUrl: "https://ccesutest.centaline.com.cn/service-api/v1/form/router",
25
26
  // baseUrl: "http://10.88.22.69:8080/api/",
26
- // baseUrl: "http://10.88.22.46:9999/service-api/",
27
+ baseUrl: "http://10.88.22.46:9999/service-api/",
27
28
  // baseUrl: "http://10.88.22.42:9999/service-api/",
28
29
  // baseUrl: "http://10.1.245.111:31574/service-api/",
29
30
  // baseUrl: "https://tjcptest.centaline.com.cn/",
@@ -64,8 +65,8 @@ Vue.use(centaline, {
64
65
  EstateInfo: '{"estateId":"20191111150458268D9815816AA4E11A","estateName":"%E5%BD%AD%E4%BF%8A%E6%9D%B0%E6%B5%8B%E8%AF%95%E6%A5%BC%E7%9B%98","estDeptPath":"009.001.001"}',
65
66
  estateId: '',
66
67
 
67
- authObject: '{"currentEstate":{"estateId":"20230816143513168CD66AB41E271F67","estateName":"%E4%B8%AD%E5%BB%BA%E5%A4%A7%E5%85%AC%E9%A6%86","estDeptPath":"001.007.001"},"platform":1,"osVersion":"","clientVersion":"","machineCode":"93064b1c23ff74f05770bc9041dce8a0","token":"","random":"9dBswG","time":1719557794814,"sign":"074cc558ae88321e4d2a5757a636af46","systemSource":"CCESU","empNo":"ceshics0","empId":"201804231035296D8646770E1ECD32CD"}',
68
- AuthorizationCode:'Bearer eyJhbGciOiJIUzUxMiJ9.eyJsb2dpbl91c2VyX2tleSI6ImNjMTE2YjNmLWU4ZGEtNDE5Mi1hOTE3LTA3MWMxNzgxOGUzNSJ9.tx8-RFl9Z2Dpq7VjSuxD8zEdo3Zwy1Xub-zzCvWnLVpSIREUM_ahwc-O5eRrOENux-l4SiZCaxo7YS_hyZ6hKg',
68
+ authObject: '{"currentEstate":{"estateId":"1c581b7c-d629-4670-8a7c-6d622860bc58","estateName":"0%E9%87%91%E9%9A%85%E4%BA%91%E7%AD%91%E5%A4%A9%E6%B4%A5","estDeptPath":"009.014.001.001"},"platform":1,"osVersion":"","clientVersion":"","machineCode":"eeb8e2fc88b5bcbc2e4f297777142537","token":"","random":"vcmmdo","time":1720429708212,"sign":"c0308806988b00b3e62b6a0de614ad89","systemSource":"CCESU","empNo":"121728","empId":"202110201430497BB5FE89123A054CCA"}',
69
+ AuthorizationCode:'Bearer eyJhbGciOiJIUzUxMiJ9.eyJsb2dpbl91c2VyX2tleSI6ImM2NmVmNzJiLTU1ZDAtNGE4Ni05ZjRlLTM4OWMxM2ZkMTRkNSJ9.FFG8SC8pYGc2LqsgSfeGPGfoRag70o53abXD6dj_YHiUWz7WD_aAvfZhAN8yp4_g-mCg2AECcEvsDgKeaFSV-Q',
69
70
  };
70
71
  },
71
72
  // 请求完成事件,可判断是否登录过期执行响应操作
@@ -14658,6 +14658,10 @@ var box = function box(source, fileSourceList, router, optionApi, videoPlayIconU
14658
14658
  get mediaViewPageType() {
14659
14659
  return data.mediaViewPageType;
14660
14660
  },
14661
+ mediaLabe: {
14662
+ mediaLabelID: "",
14663
+ mediaLabelName: ""
14664
+ },
14661
14665
  _fileList: [],
14662
14666
  get fileList() {
14663
14667
  var _this = this;
@@ -14805,7 +14809,6 @@ var box = function box(source, fileSourceList, router, optionApi, videoPlayIconU
14805
14809
  submit: function submit(formModel) {
14806
14810
  file.mediaFormData = formModel.formData.getFormObj();
14807
14811
  __WEBPACK_IMPORTED_MODULE_5__common__["default"].closeDialog(dialogOption.dialog);
14808
-
14809
14812
  //设置分类显示
14810
14813
  var mediaLabelValue = file.mediaFormData['mediaLabelID'];
14811
14814
  if (typeof mediaLabelValue !== 'undefined') {
@@ -14933,15 +14936,22 @@ var box = function box(source, fileSourceList, router, optionApi, videoPlayIconU
14933
14936
 
14934
14937
  return fileData;
14935
14938
  },
14939
+ setPublicClassify: function setPublicClassify(classify) {
14940
+ rtn.mediaLabe.mediaLabelName = classify.option[rtn.optionModel.optionAttrs.label];
14941
+ rtn.mediaLabe.mediaLabelID = classify.option[rtn.optionModel.optionAttrs.value];
14942
+ },
14936
14943
  setClassify: function setClassify(classify) {
14937
14944
  classify.file.source.mediaLabelName = classify.option[rtn.optionModel.optionAttrs.label];
14938
14945
  classify.file.source.mediaLabelID = classify.option[rtn.optionModel.optionAttrs.value];
14939
14946
  },
14940
14947
  handleAvatarSuccess: function handleAvatarSuccess(res, file, fileList) {
14941
14948
  if (res.rtnCode === __WEBPACK_IMPORTED_MODULE_3__lib_Enum__["default"].ReturnCode.Successful) {
14949
+ var media = res.content[0];
14950
+ media.mediaLabelID = file.mediaLabelID || rtn.mediaLabe.mediaLabelID;
14951
+ media.mediaLabelName = file.mediaLabelName || rtn.mediaLabe.mediaLabelName;
14942
14952
  //下面的方式绑定,会有一些问题 todo 不强与页面关联
14943
- fileSourceList.push(res.content[0]);
14944
- var data = rtn.getFileData(res.content[0]);
14953
+ fileSourceList.push(media);
14954
+ var data = rtn.getFileData(media);
14945
14955
 
14946
14956
  __WEBPACK_IMPORTED_MODULE_4_vue___default.a.set(file, "url", data.url);
14947
14957
  __WEBPACK_IMPORTED_MODULE_4_vue___default.a.set(file, "source", data.source);
@@ -14998,8 +15008,8 @@ var box = function box(source, fileSourceList, router, optionApi, videoPlayIconU
14998
15008
  "rightDel": "",
14999
15009
  "rightEdit": "",
15000
15010
  "rightDownload": "",
15001
- "mediaLabelID": "",
15002
- "mediaLabelName": "",
15011
+ "mediaLabelID": rtn.mediaLabe.mediaLabelID || "",
15012
+ "mediaLabelName": rtn.mediaLabe.mediaLabelName || "",
15003
15013
  "fileExtension": "",
15004
15014
  "progressFlag": true,
15005
15015
  "loadProgress": 0,
@@ -15037,14 +15047,21 @@ var box = function box(source, fileSourceList, router, optionApi, videoPlayIconU
15037
15047
  setByPieces: function setByPieces(res, Progress, file) {
15038
15048
  if (res.rtnCode === __WEBPACK_IMPORTED_MODULE_3__lib_Enum__["default"].ReturnCode.Successful) {
15039
15049
  //下面的方式绑定,会有一些问题 todo 不强与页面关联
15040
- var data = {};
15050
+ var data = {
15051
+ "mediaLabelID": file.mediaLabelID || rtn.mediaLabe.mediaLabelID,
15052
+ "mediaLabelName": file.mediaLabelName || rtn.mediaLabe.mediaLabelName
15053
+ };
15041
15054
  var w;
15042
15055
  var h;
15043
15056
  if (res.content.finished == 1) {
15044
15057
  //下面的方式绑定,会有一些问题 todo 不强与页面关联
15045
- fileSourceList.push(res.content.media);
15046
15058
 
15047
- data = rtn.getFileData(res.content.media);
15059
+ var media = res.content.media;
15060
+ media.mediaLabelID = file.mediaLabelID || rtn.mediaLabe.mediaLabelID;
15061
+ media.mediaLabelName = file.mediaLabelName || rtn.mediaLabe.mediaLabelName;
15062
+ fileSourceList.push(media);
15063
+
15064
+ data = rtn.getFileData(media);
15048
15065
  data.progressFlag = false;
15049
15066
  data.loadProgress = 100;
15050
15067
 
@@ -18490,7 +18507,7 @@ exports.f = __webpack_require__(30) ? gOPD : function getOwnPropertyDescriptor(O
18490
18507
  if (typeof item.on.loaded === "undefined") {
18491
18508
  item.on.loaded = function (model) {
18492
18509
  mySelf.vmodel.title = model && model.title ? model.title : mySelf.vmodel.title;
18493
- if (model.captionBarButtons) {
18510
+ if (model && model.captionBarButtons) {
18494
18511
  mySelf.captionBarButtons = model.captionBarButtons;
18495
18512
  }
18496
18513
  mySelf.modelSelf = model;
@@ -53506,6 +53523,69 @@ if (typeof window !== "undefined" && "Vue" in window) {
53506
53523
  //
53507
53524
  //
53508
53525
  //
53526
+ //
53527
+ //
53528
+ //
53529
+ //
53530
+ //
53531
+ //
53532
+ //
53533
+ //
53534
+ //
53535
+ //
53536
+ //
53537
+ //
53538
+ //
53539
+ //
53540
+ //
53541
+ //
53542
+ //
53543
+ //
53544
+ //
53545
+ //
53546
+ //
53547
+ //
53548
+ //
53549
+ //
53550
+ //
53551
+ //
53552
+ //
53553
+ //
53554
+ //
53555
+ //
53556
+ //
53557
+ //
53558
+ //
53559
+ //
53560
+ //
53561
+ //
53562
+ //
53563
+ //
53564
+ //
53565
+ //
53566
+ //
53567
+ //
53568
+ //
53569
+ //
53570
+ //
53571
+ //
53572
+ //
53573
+ //
53574
+ //
53575
+ //
53576
+ //
53577
+ //
53578
+ //
53579
+ //
53580
+ //
53581
+ //
53582
+ //
53583
+ //
53584
+ //
53585
+ //
53586
+ //
53587
+ //
53588
+ //
53509
53589
 
53510
53590
 
53511
53591
 
@@ -53692,12 +53772,14 @@ if (typeof window !== "undefined" && "Vue" in window) {
53692
53772
 
53693
53773
  //上传之前的钩子
53694
53774
  beforeUploadProcess: function beforeUploadProcess(file) {
53775
+ debugger;
53695
53776
  return true;
53696
53777
  },
53697
53778
 
53698
53779
 
53699
53780
  //文件上传时的钩子
53700
53781
  uploadProcess: function uploadProcess(event, file, fileList) {
53782
+ debugger;
53701
53783
  file.progressFlag = true; // 显示进度条
53702
53784
  file.loadProgress = parseInt(event.percent); // 动态获取文件上传进度
53703
53785
  if (file.loadProgress >= 100) {
@@ -53843,6 +53925,11 @@ if (typeof window !== "undefined" && "Vue" in window) {
53843
53925
  self.$forceUpdate();
53844
53926
  });
53845
53927
  },
53928
+
53929
+ PublicClassifySelectedClickHandle: function PublicClassifySelectedClickHandle(classify) {
53930
+ this.model.setPublicClassify(classify);
53931
+ this.$forceUpdate();
53932
+ },
53846
53933
  classifySelectedClickHandle: function classifySelectedClickHandle(classify) {
53847
53934
  classify.file.mediaLabelName = classify.option[this.model.optionModel.optionAttrs.label];
53848
53935
  classify.file.mediaLabelID = classify.option[this.model.optionModel.optionAttrs.value];
@@ -54000,7 +54087,7 @@ if (typeof window !== "undefined" && "Vue" in window) {
54000
54087
  v.mediaDescEN = v.mediaDescEN || null;
54001
54088
  v.mediaDescCN = v.mediaDescCN || null;
54002
54089
  v.mediaDataBase64 = v.mediaDataBase64 || null;
54003
- v.mediaCode = v.mediaCode || null;
54090
+ v.mediaLabelID = v.mediaLabelID || model.mediaLabe.mediaLabelID || "", v.mediaLabelName = v.mediaLabelName || model.mediaLabe.mediaLabelName || "", v.mediaCode = v.mediaCode || null;
54004
54091
  v.groupID = v.groupID || null;
54005
54092
  self.model.AddSourceList(v);
54006
54093
  var FileData = self.model.getFileData(v);
@@ -71323,7 +71410,7 @@ var __vue_template_functional__ = false
71323
71410
  /* styles */
71324
71411
  var __vue_styles__ = injectStyle
71325
71412
  /* scopeId */
71326
- var __vue_scopeId__ = "data-v-775065c4"
71413
+ var __vue_scopeId__ = "data-v-2b1a8edf"
71327
71414
  /* moduleIdentifier (server only) */
71328
71415
  var __vue_module_identifier__ = null
71329
71416
  var Component = normalizeComponent(
@@ -71349,7 +71436,7 @@ var content = __webpack_require__(500);
71349
71436
  if(typeof content === 'string') content = [[module.i, content, '']];
71350
71437
  if(content.locals) module.exports = content.locals;
71351
71438
  // add the styles to the DOM
71352
- var update = __webpack_require__(3)("2e8cd53d", content, true, {});
71439
+ var update = __webpack_require__(3)("413c697e", content, true, {});
71353
71440
 
71354
71441
  /***/ }),
71355
71442
  /* 500 */
@@ -71361,7 +71448,7 @@ exports = module.exports = __webpack_require__(2)(false);
71361
71448
 
71362
71449
 
71363
71450
  // module
71364
- exports.push([module.i, ".ct-form .el-main .el-collapse[data-v-775065c4]{border-top:initial;border-bottom:initial}.question-mark[data-v-775065c4]{background:url(" + escape(__webpack_require__(501)) + ") no-repeat;background-size:100% 100%;height:22px;width:22px;display:inline-block;font-weight:700}.question-mark[data-v-775065c4]:hover{background-color:#e4624c;color:fff}.close-mark[data-v-775065c4]{background:url(" + escape(__webpack_require__(502)) + ") no-repeat;background-size:100% 100%;height:26px;width:26px;display:inline-block;font-weight:700}.close-mark[data-v-775065c4]:hover{background-color:#e4624c;color:fff}", ""]);
71451
+ exports.push([module.i, ".ct-form .el-main .el-collapse[data-v-2b1a8edf]{border-top:initial;border-bottom:initial}.question-mark[data-v-2b1a8edf]{background:url(" + escape(__webpack_require__(501)) + ") no-repeat;background-size:100% 100%;height:22px;width:22px;display:inline-block;font-weight:700}.question-mark[data-v-2b1a8edf]:hover{background-color:#e4624c;color:fff}.close-mark[data-v-2b1a8edf]{background:url(" + escape(__webpack_require__(502)) + ") no-repeat;background-size:100% 100%;height:26px;width:26px;display:inline-block;font-weight:700}.close-mark[data-v-2b1a8edf]:hover{background-color:#e4624c;color:fff}", ""]);
71365
71452
 
71366
71453
  // exports
71367
71454
 
@@ -79574,7 +79661,7 @@ if (typeof window !== 'undefined' && window.Vue) {
79574
79661
  "use strict";
79575
79662
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__babel_loader_node_modules_vue_loader_lib_selector_type_script_index_0_dynamicFile_vue__ = __webpack_require__(340);
79576
79663
  /* unused harmony namespace reexport */
79577
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__node_modules_vue_loader_lib_template_compiler_index_id_data_v_07a8e206_hasScoped_false_buble_transforms_node_modules_vue_loader_lib_selector_type_template_index_0_dynamicFile_vue__ = __webpack_require__(704);
79664
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__node_modules_vue_loader_lib_template_compiler_index_id_data_v_5f33e114_hasScoped_false_buble_transforms_node_modules_vue_loader_lib_selector_type_template_index_0_dynamicFile_vue__ = __webpack_require__(704);
79578
79665
  function injectStyle (ssrContext) {
79579
79666
  __webpack_require__(697)
79580
79667
  }
@@ -79594,7 +79681,7 @@ var __vue_scopeId__ = null
79594
79681
  var __vue_module_identifier__ = null
79595
79682
  var Component = normalizeComponent(
79596
79683
  __WEBPACK_IMPORTED_MODULE_0__babel_loader_node_modules_vue_loader_lib_selector_type_script_index_0_dynamicFile_vue__["a" /* default */],
79597
- __WEBPACK_IMPORTED_MODULE_1__node_modules_vue_loader_lib_template_compiler_index_id_data_v_07a8e206_hasScoped_false_buble_transforms_node_modules_vue_loader_lib_selector_type_template_index_0_dynamicFile_vue__["a" /* default */],
79684
+ __WEBPACK_IMPORTED_MODULE_1__node_modules_vue_loader_lib_template_compiler_index_id_data_v_5f33e114_hasScoped_false_buble_transforms_node_modules_vue_loader_lib_selector_type_template_index_0_dynamicFile_vue__["a" /* default */],
79598
79685
  __vue_template_functional__,
79599
79686
  __vue_styles__,
79600
79687
  __vue_scopeId__,
@@ -79615,7 +79702,7 @@ var content = __webpack_require__(698);
79615
79702
  if(typeof content === 'string') content = [[module.i, content, '']];
79616
79703
  if(content.locals) module.exports = content.locals;
79617
79704
  // add the styles to the DOM
79618
- var update = __webpack_require__(3)("3da74c07", content, true, {});
79705
+ var update = __webpack_require__(3)("586241d4", content, true, {});
79619
79706
 
79620
79707
  /***/ }),
79621
79708
  /* 698 */
@@ -79627,7 +79714,7 @@ exports = module.exports = __webpack_require__(2)(false);
79627
79714
 
79628
79715
 
79629
79716
  // module
79630
- exports.push([module.i, ".ct-upload-display-none .el-upload--picture-card{display:none}.el-upload-list__item .is-ready{width:100px;height:100px}.ct-file .cover-list-item{position:-webkit-sticky;position:sticky}.ct-file .cover-list-item-span{position:inherit;bottom:0;left:0;display:block;background-color:#544f48;opacity:.8}.ct-file .el-dropdown-link{position:relative;width:100px;height:26px;display:inline-block}.el-icon--right{position:absolute;right:5px;top:6px}.ct-file .cover-list-item-span-Default{position:inherit;bottom:160px;left:0;text-align:center}.ct-file .cover-list-item-span-edit{position:inherit;bottom:160px;left:65px;color:var(--chinaRed);text-align:center}.cover-list-item-span-edit i{cursor:pointer}.ct-file .cover-list-item-span-delete{position:inherit;bottom:160px;left:130px;color:var(--chinaRed);text-align:center}.cover-list-item-span-delete i{cursor:pointer}.ct-file .el-dropdown-link{cursor:pointer;color:#fff}.ct-file .el-icon-arrow-down{font-size:12px}.el-collapse-item__content{padding-bottom:18px}.el-upload--picture-card{width:100px;height:100px;line-height:normal;padding:34px;position:relative}.el-upload--picture-card i{font-size:30px}.el-upload-list--picture-card .el-upload-list__item{width:100px;height:100px}.el-upload .max-ewmsc{background:url(" + escape(__webpack_require__(699)) + ") no-repeat;content:\"\";display:block;width:30px;height:30px;font-size:30px;background-size:30px;position:absolute;top:-35px;left:35px}.file-cirle-mrLeft .el-progress-circle{margin-left:15px}.circleCenter{position:absolute;top:50%;left:50%;-webkit-transform:translate(-50%,-50%);transform:translate(-50%,-50%)}.browseDefault .el-radio__input.is-checked .el-radio__inner{border-color:var(--centalineBlue);background:var(--centalineBlue)}.ct-file .cover-list-item-play{position:inherit;bottom:50%;display:block;opacity:.8;left:50%}.swiper-i{position:relative}.swiper-i,.swiper-i img{width:100%;height:100%}.swiper-i .hous-icon{width:48px;height:48px;position:absolute;top:50%;left:50%;-webkit-transform:translate(-50%,-50%);transform:translate(-50%,-50%)}.qrcode-target{position:absolute;top:3px;right:3px;width:35px;height:35px}.ScanUploadPhoto{width:220px;height:250px;border:1px solid #ccc;position:fixed;left:120px;background-color:#fff;text-align:center;padding:5px 10px;top:5px;-webkit-box-shadow:0 0 8px #bfbfbf;box-shadow:0 0 8px #bfbfbf;z-index:1899}.ScanUploadPhoto:hover{cursor:default}.jiao{display:inline-block;top:16px;left:-6px;width:0;height:0;content:\"\";border-style:solid;border-width:6px;border-color:transparent transparent #fff #fff;-webkit-transform:rotate(45deg);transform:rotate(45deg);-webkit-box-shadow:-1px 1px 0 #ccc;box-shadow:-1px 1px 0 #ccc}.div-fail,.jiao{position:absolute}.div-fail{width:200px;height:200px;top:60px}.ScanText{width:200px;float:left;margin-top:40px;line-height:40px;font-size:14px;text-align:center}", ""]);
79717
+ exports.push([module.i, ".ct-upload-display-none .el-upload--picture-card{display:none}.el-upload-list__item .is-ready{width:100px;height:100px}.ct-file .cover-list-item{position:-webkit-sticky;position:sticky}.ct-file .cover-list-item-span{position:inherit;bottom:0;left:0;display:block;background-color:#544f48;opacity:.8}.ct-file .el-dropdown-link{position:relative;width:100px;height:26px;display:inline-block}.el-icon--right{position:absolute;right:5px;top:6px}.ct-file .cover-list-item-span-Default{position:inherit;bottom:160px;left:0;text-align:center}.ct-file .cover-list-item-span-edit{position:inherit;bottom:160px;left:65px;color:var(--chinaRed);text-align:center}.cover-list-item-span-edit i{cursor:pointer}.ct-file .cover-list-item-span-delete{position:inherit;bottom:160px;left:130px;color:var(--chinaRed);text-align:center}.cover-list-item-span-delete i{cursor:pointer}.ct-file .el-dropdown-link{cursor:pointer;color:#fff}.ct-file .el-icon-arrow-down{font-size:12px}.el-collapse-item__content{padding-bottom:18px}.el-upload--picture-card{width:100px;height:100px;line-height:normal;padding:34px;position:relative}.el-upload--picture-card i{font-size:30px}.el-upload-list--picture-card .el-upload-list__item{width:100px;height:100px}.el-upload .max-ewmsc{background:url(" + escape(__webpack_require__(699)) + ") no-repeat;content:\"\";display:block;width:30px;height:30px;font-size:30px;background-size:30px;position:absolute;top:-35px;left:35px}.file-cirle-mrLeft .el-progress-circle{margin-left:15px}.circleCenter{position:absolute;top:50%;left:50%;-webkit-transform:translate(-50%,-50%);transform:translate(-50%,-50%)}.browseDefault .el-radio__input.is-checked .el-radio__inner{border-color:var(--centalineBlue);background:var(--centalineBlue)}.ct-file .cover-list-item-play{position:inherit;bottom:50%;display:block;opacity:.8;left:50%}.swiper-i{position:relative}.swiper-i,.swiper-i img{width:100%;height:100%}.swiper-i .hous-icon{width:48px;height:48px;position:absolute;top:50%;left:50%;-webkit-transform:translate(-50%,-50%);transform:translate(-50%,-50%)}.qrcode-target{position:absolute;top:3px;right:3px;width:35px;height:35px}.Public-classification{position:absolute;bottom:0;left:0;display:block;background-color:#544f48;opacity:.8}.ScanUploadPhoto{width:220px;height:250px;border:1px solid #ccc;position:fixed;left:120px;background-color:#fff;text-align:center;padding:5px 10px;top:5px;-webkit-box-shadow:0 0 8px #bfbfbf;box-shadow:0 0 8px #bfbfbf;z-index:1899}.ScanUploadPhoto:hover{cursor:default}.jiao{display:inline-block;top:16px;left:-6px;width:0;height:0;content:\"\";border-style:solid;border-width:6px;border-color:transparent transparent #fff #fff;-webkit-transform:rotate(45deg);transform:rotate(45deg);-webkit-box-shadow:-1px 1px 0 #ccc;box-shadow:-1px 1px 0 #ccc}.div-fail,.jiao{position:absolute}.div-fail{width:200px;height:200px;top:60px}.ScanText{width:200px;float:left;margin-top:40px;line-height:40px;font-size:14px;text-align:center}", ""]);
79631
79718
 
79632
79719
  // exports
79633
79720
 
@@ -79717,11 +79804,11 @@ module.exports = function (object, index, value) {
79717
79804
  /***/ (function(module, __webpack_exports__, __webpack_require__) {
79718
79805
 
79719
79806
  "use strict";
79720
- var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return (_vm.model !== null)?_c('div',{ref:"refupload",staticClass:"block ct-file",class:[_vm.model.attrs.size ? 'ct-checkbox-' + _vm.model.attrs.size : ''],staticStyle:{"width":"100%"}},[(_vm.model.type==51)?[_c('el-upload',{ref:"upload",class:_vm.disableUpload ? 'ct-upload-display-none' : '',attrs:{"http-request":_vm.SliceUpload,"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){
79807
+ var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return (_vm.model !== null)?_c('div',{ref:"refupload",staticClass:"block ct-file",class:[_vm.model.attrs.size ? 'ct-checkbox-' + _vm.model.attrs.size : ''],staticStyle:{"width":"100%"}},[(_vm.model.type == 51)?[_c('el-upload',{ref:"upload",class:_vm.disableUpload ? 'ct-upload-display-none' : '',attrs:{"http-request":_vm.SliceUpload,"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){
79721
79808
  var file = ref.file;
79722
- return _c('div',{attrs:{"title":file.fileName}},[_c('div',{staticClass:"cover-list-item"},[_c('div',{on:{"click":function($event){_vm.viewerfile(file)}}},[_c('el-image',{staticStyle:{"width":"100px","height":"100px"},attrs:{"fit":"fill","src":file.url?file.url:file.mediaUrl?file.mediaUrl+'/100/100':__webpack_require__(342),"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__(343),"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()])]:[_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){
79809
+ return _c('div',{attrs:{"title":file.fileName}},[_c('div',{staticClass:"cover-list-item"},[_c('div',{on:{"click":function($event){_vm.viewerfile(file)}}},[_c('el-image',{staticStyle:{"width":"100px","height":"100px"},attrs:{"fit":"fill","src":file.url ? file.url : file.mediaUrl ? file.mediaUrl + '/100/100' : __webpack_require__(342),"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__(343),"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"},[(_vm.model.lock)?_c('span',{staticClass:"el-dropdown-link"},[_c('span',{staticStyle:{"width":"80px","height":"26px","display":"inline-flex"}},[_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"}},[_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"}},[_vm._v(" "+_vm._s(_vm.model.mediaLabe.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, 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){
79723
79810
  var file = ref.file;
79724
- return _c('div',{attrs:{"title":file.fileName}},[_c('div',{staticClass:"cover-list-item"},[_c('div',{on:{"click":function($event){_vm.viewerfile(file)}}},[_c('el-image',{staticStyle:{"width":"100px","height":"100px"},attrs:{"fit":"fill","src":file.url?file.url:file.mediaUrl?file.url:__webpack_require__(342),"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__(343),"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()])]],2):_vm._e()}
79811
+ return _c('div',{attrs:{"title":file.fileName}},[_c('div',{staticClass:"cover-list-item"},[_c('div',{on:{"click":function($event){_vm.viewerfile(file)}}},[_c('el-image',{staticStyle:{"width":"100px","height":"100px"},attrs:{"fit":"fill","src":file.url ? file.url : file.mediaUrl ? file.url : __webpack_require__(342),"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__(343),"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"},[(_vm.model.lock)?_c('span',{staticClass:"el-dropdown-link"},[_c('span',{staticStyle:{"width":"80px","height":"26px","display":"inline-flex"}},[_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"}},[_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"}},[_vm._v(" "+_vm._s(_vm.model.mediaLabe.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, mediaLabe: _vm.model.mediaLabe }}},[_vm._v("\n "+_vm._s(option[_vm.model.optionModel.optionAttrs.label])+"\n ")])}))],1)],1):_vm._e()])]],2):_vm._e()}
79725
79812
  var staticRenderFns = []
79726
79813
  var esExports = { render: render, staticRenderFns: staticRenderFns }
79727
79814
  /* harmony default export */ __webpack_exports__["a"] = (esExports);
@@ -82772,7 +82859,7 @@ if (typeof window !== 'undefined' && window.Vue) {
82772
82859
  "use strict";
82773
82860
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__babel_loader_node_modules_vue_loader_lib_selector_type_script_index_0_dynamicSw_vue__ = __webpack_require__(413);
82774
82861
  /* unused harmony namespace reexport */
82775
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__node_modules_vue_loader_lib_template_compiler_index_id_data_v_5e7cb5e4_hasScoped_false_buble_transforms_node_modules_vue_loader_lib_selector_type_template_index_0_dynamicSw_vue__ = __webpack_require__(868);
82862
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__node_modules_vue_loader_lib_template_compiler_index_id_data_v_6ffb783a_hasScoped_false_buble_transforms_node_modules_vue_loader_lib_selector_type_template_index_0_dynamicSw_vue__ = __webpack_require__(868);
82776
82863
  function injectStyle (ssrContext) {
82777
82864
  __webpack_require__(866)
82778
82865
  }
@@ -82792,7 +82879,7 @@ var __vue_scopeId__ = null
82792
82879
  var __vue_module_identifier__ = null
82793
82880
  var Component = normalizeComponent(
82794
82881
  __WEBPACK_IMPORTED_MODULE_0__babel_loader_node_modules_vue_loader_lib_selector_type_script_index_0_dynamicSw_vue__["a" /* default */],
82795
- __WEBPACK_IMPORTED_MODULE_1__node_modules_vue_loader_lib_template_compiler_index_id_data_v_5e7cb5e4_hasScoped_false_buble_transforms_node_modules_vue_loader_lib_selector_type_template_index_0_dynamicSw_vue__["a" /* default */],
82882
+ __WEBPACK_IMPORTED_MODULE_1__node_modules_vue_loader_lib_template_compiler_index_id_data_v_6ffb783a_hasScoped_false_buble_transforms_node_modules_vue_loader_lib_selector_type_template_index_0_dynamicSw_vue__["a" /* default */],
82796
82883
  __vue_template_functional__,
82797
82884
  __vue_styles__,
82798
82885
  __vue_scopeId__,
@@ -82813,7 +82900,7 @@ var content = __webpack_require__(867);
82813
82900
  if(typeof content === 'string') content = [[module.i, content, '']];
82814
82901
  if(content.locals) module.exports = content.locals;
82815
82902
  // add the styles to the DOM
82816
- var update = __webpack_require__(3)("d2b7af28", content, true, {});
82903
+ var update = __webpack_require__(3)("f280102e", content, true, {});
82817
82904
 
82818
82905
  /***/ }),
82819
82906
  /* 867 */