cloud-web-corejs 1.0.54-dev.265 → 1.0.54-dev.267
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/baseAttachment/index.vue +49 -49
- package/src/components/baseAttachment/mixins.js +266 -1
- package/src/components/wf/content.vue +90 -4
- package/src/components/wf/wf.js +126 -1
- package/src/components/xform/form-designer/setting-panel/property-editor/container-data-table/table-column-dialog.vue +17 -2
- package/src/components/xform/form-render/container-item/data-table-mixin.js +25 -0
- package/src/layout/components/TagsView/index.vue +2 -2
- package/src/views/bd/setting/push_data/edit.vue +28 -10
- package/src/views/bd/setting/push_data/list.vue +64 -84
- package/src/views/bd/setting/push_data_h/edit.vue +50 -187
- package/src/views/bd/setting/push_data_h/list.vue +123 -94
- package/src/views/bd/setting/request_async_setting/list.vue +20 -10
- package/src/views/user/wf/wf_manage/list.vue +28 -0
- package/src/views/user/wf/wf_obj_config/itemEdit.vue +16 -2
- package/src/views/user/wf/wf_obj_config/list.vue +14 -0
package/package.json
CHANGED
|
@@ -1,49 +1,49 @@
|
|
|
1
|
-
<template>
|
|
2
|
-
<span class="p10">
|
|
3
|
-
<template v-if="edit || !!imageUrl">
|
|
4
|
-
<el-tooltip :enterable="false" effect="dark" :content="fileName" placement="top"
|
|
5
|
-
popper-class="tooltip-skin" :disabled="!fileName">
|
|
6
|
-
<a class="a-link img num1" @click="openPreview()">
|
|
7
|
-
<el-image v-if="!!imageUrl" :key="imageUrl" :src="imageUrl" :lazy="
|
|
8
|
-
<span class="num" v-if="size>1">{{ size }}</span>
|
|
9
|
-
</a>
|
|
10
|
-
</el-tooltip>
|
|
11
|
-
<template v-if="showViewButton">
|
|
12
|
-
<el-tooltip :enterable="false" effect="dark" :content="title" placement="top" popper-class="tooltip-skin">
|
|
13
|
-
<a href="javascript:void(0);" class="a-link nums" @click="openAttachmentDialog">
|
|
14
|
-
<i class="iconfont icon-fujian3"/>
|
|
15
|
-
</a>
|
|
16
|
-
</el-tooltip>
|
|
17
|
-
<template v-if="edit && isUploadEnabled">
|
|
18
|
-
<el-tooltip :enterable="false" effect="dark" :content="$t1('上传')" placement="top"
|
|
19
|
-
popper-class="tooltip-skin"
|
|
20
|
-
>
|
|
21
|
-
<a href="javascript:void(0);" class="a-link nums" @click="uploadFile">
|
|
22
|
-
<i class="el-icon-upload2"/>
|
|
23
|
-
</a>
|
|
24
|
-
</el-tooltip>
|
|
25
|
-
</template>
|
|
26
|
-
|
|
27
|
-
</template>
|
|
28
|
-
<uploadDialog v-if="showUploadDialog" :visiable.sync="showUploadDialog"
|
|
29
|
-
:rows.sync="rows" :title="title" :edit="edit" :param.sync="option.uploadConfig"
|
|
30
|
-
:onConfirm="confirmInsertAttachment"/>
|
|
31
|
-
</template>
|
|
32
|
-
</span>
|
|
33
|
-
</template>
|
|
34
|
-
|
|
35
|
-
<script>
|
|
36
|
-
import {indexMixin} from './mixins'
|
|
37
|
-
|
|
38
|
-
export default {
|
|
39
|
-
name: "baseAttachment",
|
|
40
|
-
components: {
|
|
41
|
-
uploadDialog: () => import('./uploadDialog')
|
|
42
|
-
},
|
|
43
|
-
mixins: [indexMixin]
|
|
44
|
-
}
|
|
45
|
-
</script>
|
|
46
|
-
|
|
47
|
-
<style scoped>
|
|
48
|
-
.p10 .a-link{padding-right:10px;margin-right:10px;}
|
|
49
|
-
</style>
|
|
1
|
+
<template>
|
|
2
|
+
<span class="p10">
|
|
3
|
+
<template v-if="edit || !!imageUrl">
|
|
4
|
+
<el-tooltip :enterable="false" effect="dark" :content="fileName" placement="top"
|
|
5
|
+
popper-class="tooltip-skin" :disabled="!fileName">
|
|
6
|
+
<a class="a-link img num1" @click="openPreview()">
|
|
7
|
+
<el-image v-if="!!imageUrl" :key="imageUrl" :src="imageUrl" :lazy="imageLazy"/>
|
|
8
|
+
<span class="num" v-if="size>1">{{ size }}</span>
|
|
9
|
+
</a>
|
|
10
|
+
</el-tooltip>
|
|
11
|
+
<template v-if="showViewButton">
|
|
12
|
+
<el-tooltip :enterable="false" effect="dark" :content="title" placement="top" popper-class="tooltip-skin">
|
|
13
|
+
<a href="javascript:void(0);" class="a-link nums" @click="openAttachmentDialog">
|
|
14
|
+
<i class="iconfont icon-fujian3"/>
|
|
15
|
+
</a>
|
|
16
|
+
</el-tooltip>
|
|
17
|
+
<template v-if="edit && isUploadEnabled">
|
|
18
|
+
<el-tooltip :enterable="false" effect="dark" :content="$t1('上传')" placement="top"
|
|
19
|
+
popper-class="tooltip-skin"
|
|
20
|
+
>
|
|
21
|
+
<a href="javascript:void(0);" class="a-link nums" @click="uploadFile">
|
|
22
|
+
<i class="el-icon-upload2"/>
|
|
23
|
+
</a>
|
|
24
|
+
</el-tooltip>
|
|
25
|
+
</template>
|
|
26
|
+
|
|
27
|
+
</template>
|
|
28
|
+
<uploadDialog v-if="showUploadDialog" :visiable.sync="showUploadDialog"
|
|
29
|
+
:rows.sync="rows" :title="title" :edit="edit" :param.sync="option.uploadConfig"
|
|
30
|
+
:onConfirm="confirmInsertAttachment"/>
|
|
31
|
+
</template>
|
|
32
|
+
</span>
|
|
33
|
+
</template>
|
|
34
|
+
|
|
35
|
+
<script>
|
|
36
|
+
import {indexMixin} from './mixins'
|
|
37
|
+
|
|
38
|
+
export default {
|
|
39
|
+
name: "baseAttachment",
|
|
40
|
+
components: {
|
|
41
|
+
uploadDialog: () => import('./uploadDialog')
|
|
42
|
+
},
|
|
43
|
+
mixins: [indexMixin]
|
|
44
|
+
}
|
|
45
|
+
</script>
|
|
46
|
+
|
|
47
|
+
<style scoped>
|
|
48
|
+
.p10 .a-link{padding-right:10px;margin-right:10px;}
|
|
49
|
+
</style>
|