cloud-web-corejs 1.0.54-dev.229 → 1.0.54-dev.230
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/mixins/selectDialog/index.js +1 -245
- package/src/store/config/index.js +6 -99
- package/src/views/bd/setting/config_manage/list.vue +47 -0
- package/src/views/bd/setting/form_script/edit.vue +9 -0
- package/src/views/bd/setting/form_script/edit1.vue +22 -0
- package/src/views/bd/setting/form_script/list1.vue +4 -4
- package/src/views/bd/setting/form_script/mixins/dialog.js +130 -1
- package/src/views/bd/setting/form_script/mixins/edit.js +193 -1
- package/src/views/bd/setting/form_script/mixins/edit1.js +193 -1
- package/src/views/bd/setting/form_script/mixins/list.js +24 -0
- package/src/views/bd/setting/form_script/mixins/list1.js +43 -2
- package/src/views/bd/setting/form_script/mixins/otherAuthDialog.js +186 -0
- package/src/views/bd/setting/form_script/otherAuthDialog.vue +83 -0
- package/src/views/bd/setting/form_template/edit.vue +13 -0
- package/src/views/bd/setting/form_template/list.vue +4 -4
- package/src/views/bd/setting/form_template/mixins/edit.js +199 -1
- package/src/views/bd/setting/form_template/mixins/list.js +19 -3
- package/src/views/bd/setting/form_template/mixins/otherAuthDialog.js +185 -0
- package/src/views/bd/setting/form_template/otherAuthDialog.vue +83 -0
- package/src/views/bd/setting/table_model/edit.vue +332 -304
- package/src/views/bd/setting/table_model/list.vue +4 -4
- package/src/views/bd/setting/table_model/mixins/edit.js +1119 -1
- package/src/views/bd/setting/table_model/mixins/list.js +44 -4
- package/src/views/bd/setting/table_model/mixins/otherAuthDialog.js +193 -0
- package/src/views/bd/setting/table_model/otherAuthDialog.vue +83 -0
- package/src/views/user/fieldTranslation/editDialog.vue +7 -7
- package/src/views/user/fieldTranslation/list.vue +32 -32
@@ -0,0 +1,83 @@
|
|
1
|
+
<template>
|
2
|
+
<div>
|
3
|
+
<el-dialog
|
4
|
+
:title="$t1('表单模板分派')"
|
5
|
+
:append-to-body="true"
|
6
|
+
:modal-append-to-body="true"
|
7
|
+
:close-on-click-modal="false"
|
8
|
+
:visible.sync="showDialog"
|
9
|
+
:modal="false"
|
10
|
+
custom-class="dialog-style list-dialog dialog-checkbox pd_0"
|
11
|
+
width="500px"
|
12
|
+
@close="dialogClose"
|
13
|
+
v-el-drag-dialog
|
14
|
+
v-el-dialog-center
|
15
|
+
>
|
16
|
+
<div class="cont">
|
17
|
+
<div class="grid-height" style="height: 500px">
|
18
|
+
<vxe-grid
|
19
|
+
class="is-pointer"
|
20
|
+
ref="table-m1"
|
21
|
+
:data="tableData"
|
22
|
+
v-bind="vxeOption"
|
23
|
+
@resizable-change="$vxeTableUtil.onColumnWitchChange"
|
24
|
+
@custom="$vxeTableUtil.customHandle"
|
25
|
+
>
|
26
|
+
<template #form>
|
27
|
+
<div class="clearfix screen-btns">
|
28
|
+
<div class="fl">
|
29
|
+
<vxe-button status="primary" class="button-sty" icon="el-icon-plus" @click="openUserAddDialog">
|
30
|
+
{{ $t1('新增用户') }}
|
31
|
+
</vxe-button>
|
32
|
+
</div>
|
33
|
+
</div>
|
34
|
+
</template>
|
35
|
+
<template #user="{row,rowIndex}">
|
36
|
+
<el-input
|
37
|
+
class="search-input"
|
38
|
+
v-model="row.nickName"
|
39
|
+
clearable
|
40
|
+
@clear="
|
41
|
+
row.userId = null;
|
42
|
+
"
|
43
|
+
v-if="!row._isParent"
|
44
|
+
v-el-readonly
|
45
|
+
>
|
46
|
+
<i slot="suffix" class="el-input__icon el-icon-search" @click="openUserRowDialog(row,rowIndex)"></i>
|
47
|
+
</el-input>
|
48
|
+
<template v-else>{{ row.nickName }}</template>
|
49
|
+
</template>
|
50
|
+
<template #switch="{row,column,rowIndex}">
|
51
|
+
<el-switch v-model="row[column.field]" :key="column.field+rowIndex" :active-value="1"
|
52
|
+
:inactive-value="0" :disabled="column.params.disabled"></el-switch>
|
53
|
+
</template>
|
54
|
+
</vxe-grid>
|
55
|
+
</div>
|
56
|
+
</div>
|
57
|
+
<span slot="footer" class="dialog-footer">
|
58
|
+
<el-button type="primary" plain class="button-sty" @click="dialogClose">
|
59
|
+
<i class="el-icon-close el-icon"></i>
|
60
|
+
{{ $t1('取 消') }}
|
61
|
+
</el-button>
|
62
|
+
<el-button type="primary" @click="saveData" class="button-sty">
|
63
|
+
<i class="el-icon-check el-icon"></i>
|
64
|
+
{{ $t1('确 定') }}
|
65
|
+
</el-button>
|
66
|
+
</span>
|
67
|
+
</el-dialog>
|
68
|
+
<userDialog v-if="showUserAddDialog" :visiable.sync="showUserAddDialog" @confirm="confirmtUserAddDialog"
|
69
|
+
multi="true" :param="{flag:8}"/>
|
70
|
+
</div>
|
71
|
+
</template>
|
72
|
+
|
73
|
+
<script>
|
74
|
+
import mixin from "./mixins/otherAuthDialog";
|
75
|
+
|
76
|
+
export default {
|
77
|
+
mixins: [mixin]
|
78
|
+
}
|
79
|
+
</script>
|
80
|
+
|
81
|
+
<style scoped>
|
82
|
+
|
83
|
+
</style>
|