cloud-web-corejs 1.0.54-dev.6 → 1.0.54-dev.8
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 +1 -1
- package/src/components/excelExport/exportFieldDialog.vue +51 -11
- package/src/components/excelExport/index.js +27 -1
- package/src/components/excelExport/index.vue +1 -0
- package/src/components/excelExport/mixins.js +709 -1
- package/src/components/fileLibrary/fileObjAuthEditDialog.vue +6 -1
- package/src/components/fileLibrary/mixins/fileObjAuthDialogMixin.js +5 -4
- package/src/utils/vab.js +1 -963
- package/src/views/bd/setting/bd_attach_setting/edit.vue +1 -1
- package/src/views/bd/setting/bd_attach_setting/mixins/edit.js +1 -1
- package/src/views/user/user/list.vue +15 -8
@@ -13,7 +13,7 @@
|
|
13
13
|
v-el-dialog-center
|
14
14
|
@close="handleClose"
|
15
15
|
>
|
16
|
-
<div class="cont">
|
16
|
+
<div class="cont" style="height: 550px;">
|
17
17
|
<el-form ref="editForm" :model="fileObjAuth" label-width="110px" class="adSearchForm"
|
18
18
|
style="width: 362px;height: auto;">
|
19
19
|
<el-form-item label="文件路径">
|
@@ -150,6 +150,11 @@
|
|
150
150
|
<el-switch v-model="fileObjAuth.shareAuth" :active-value="1" :inactive-value="0"
|
151
151
|
:disabled="fileObjAuth._isParent"/>
|
152
152
|
</el-form-item>
|
153
|
+
<el-form-item prop="downWatermarkAuth" :label="$t1('下载打水印')"
|
154
|
+
:rules="[{ required: false, trigger: 'blur' }]">
|
155
|
+
<el-switch v-model="fileObjAuth.downWatermarkAuth" :active-value="1" :inactive-value="0"
|
156
|
+
:disabled="fileObjAuth._isParent"/>
|
157
|
+
</el-form-item>
|
153
158
|
</el-form>
|
154
159
|
</div>
|
155
160
|
<span slot="footer" class="dialog-footer">
|
@@ -14,7 +14,7 @@ modules = {
|
|
14
14
|
treeNodeArr: Array
|
15
15
|
},
|
16
16
|
components: {
|
17
|
-
editView, userDialog, positionDialog, saleOrgDialog, roleDialog,fileObjAuthEditDialog
|
17
|
+
editView, userDialog, positionDialog, saleOrgDialog, roleDialog, fileObjAuthEditDialog
|
18
18
|
},
|
19
19
|
inject: ['current_prefix'],
|
20
20
|
mounted() {
|
@@ -50,8 +50,8 @@ modules = {
|
|
50
50
|
showSaleOrgAddDialog: false,
|
51
51
|
showPositionAddDialog: false,
|
52
52
|
showRoleAddDialog: false,
|
53
|
-
showDetailDialog:false,
|
54
|
-
currentRow:null,
|
53
|
+
showDetailDialog: false,
|
54
|
+
currentRow: null,
|
55
55
|
|
56
56
|
};
|
57
57
|
},
|
@@ -616,6 +616,7 @@ modules = {
|
|
616
616
|
deleteDirAuth: 1,
|
617
617
|
historyAuth: 1,
|
618
618
|
shareAuth: 1,
|
619
|
+
downWatermarkAuth: 0,
|
619
620
|
fileObjId: this.fileObjId
|
620
621
|
}
|
621
622
|
return row;
|
@@ -626,7 +627,7 @@ modules = {
|
|
626
627
|
this.showDetailDialog = true;
|
627
628
|
},
|
628
629
|
confirmDetailDialog(row) {
|
629
|
-
this.tableData.splice(this.operateIndex,1,row)
|
630
|
+
this.tableData.splice(this.operateIndex, 1, row)
|
630
631
|
this.showDetailDialog = false;
|
631
632
|
}
|
632
633
|
}
|