ocpview-plus 1.2.4 → 1.2.5
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/README.md +58 -58
- package/dist/ocpviewplus.min.esm.js +183 -173
- package/dist/ocpviewplus.min.js +2 -2
- package/package.json +1 -1
- package/src/components/masterplate/RewriteListdetails/BillListPanelV3.vue +2 -2
- package/src/components/masterplate/RewriteListdetails/BillListPanelV3QueryBar.vue +122 -117
package/package.json
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
:padding="0"
|
|
5
5
|
dis-hover
|
|
6
6
|
:bordered="false"
|
|
7
|
-
style="background: #
|
|
7
|
+
style="background: #FAFCFF; padding: 14px 16px 14px 16px"
|
|
8
8
|
>
|
|
9
9
|
<div ref="toolbar" style="padding-bottom: 14px">
|
|
10
10
|
<!-- 列表覆写开始 -->
|
|
@@ -20,7 +20,7 @@
|
|
|
20
20
|
<Card
|
|
21
21
|
class="billquerygrid"
|
|
22
22
|
:padding="0"
|
|
23
|
-
:bordered="
|
|
23
|
+
:bordered="true"
|
|
24
24
|
dis-hover
|
|
25
25
|
>
|
|
26
26
|
<Dropdown
|
|
@@ -1,134 +1,139 @@
|
|
|
1
1
|
<template>
|
|
2
2
|
<div class="querybar list-details-v3-panel">
|
|
3
|
-
<
|
|
4
|
-
<
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
<
|
|
16
|
-
<
|
|
17
|
-
<
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
<
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
<
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
<
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
3
|
+
<Card :padding="0" style="padding: 14px 16px" dis-hover>
|
|
4
|
+
<Row type="flex" :gutter="0">
|
|
5
|
+
<Col span="16">
|
|
6
|
+
<!-- 列表快捷查询 -->
|
|
7
|
+
<FormBox
|
|
8
|
+
v-if="searchFormListShowType"
|
|
9
|
+
ref="searchFormListVM"
|
|
10
|
+
:config="searchFormList"
|
|
11
|
+
:dictData="dictData"
|
|
12
|
+
/>
|
|
13
|
+
<!-- 列表快捷查询 -->
|
|
14
|
+
</Col>
|
|
15
|
+
<Col span="8">
|
|
16
|
+
<Row type="flex" justify="end" :gutter="0">
|
|
17
|
+
<Col style="margin-right: 10px">
|
|
18
|
+
<Button
|
|
19
|
+
customIcon="iconfont icon-custom-search"
|
|
20
|
+
type="primary"
|
|
21
|
+
@click="search"
|
|
22
|
+
>查询</Button
|
|
23
|
+
>
|
|
24
|
+
</Col>
|
|
25
|
+
<Col>
|
|
26
|
+
<Button
|
|
27
|
+
customIcon="iconfont icon-custom-reset"
|
|
28
|
+
@click="clear"
|
|
29
|
+
>重置</Button
|
|
30
|
+
>
|
|
31
|
+
</Col>
|
|
32
|
+
<Col>
|
|
33
|
+
<Divider type="vertical" class="dividercommon" />
|
|
34
|
+
</Col>
|
|
35
|
+
<Col style="padding-right: 20px">
|
|
36
|
+
<Dropdown
|
|
37
|
+
trigger="custom"
|
|
38
|
+
:visible="filterSceneFlag"
|
|
39
|
+
@on-click="filterAction"
|
|
40
|
+
placement="bottom-start"
|
|
41
|
+
@on-clickoutside="closeFilterScene"
|
|
42
|
+
>
|
|
43
|
+
<Badge
|
|
44
|
+
class-name="badgeclass"
|
|
45
|
+
:count="sceneNum"
|
|
46
|
+
>
|
|
47
|
+
<ButtonGroup>
|
|
48
|
+
<Button
|
|
49
|
+
customIcon="iconfont icon-custom-filter"
|
|
50
|
+
@click="updataFilterScene"
|
|
51
|
+
>高级查询</Button
|
|
52
|
+
>
|
|
53
|
+
<Button
|
|
54
|
+
v-if="!filterSceneFlag && sceneFlag"
|
|
55
|
+
icon="ios-arrow-down"
|
|
56
|
+
@click="openFilterScene"
|
|
57
|
+
>
|
|
58
|
+
</Button>
|
|
59
|
+
<Button
|
|
60
|
+
v-if="filterSceneFlag && sceneFlag"
|
|
61
|
+
icon="ios-arrow-up"
|
|
62
|
+
@click="closeFilterScene"
|
|
63
|
+
>
|
|
64
|
+
</Button>
|
|
65
|
+
</ButtonGroup>
|
|
66
|
+
</Badge>
|
|
67
|
+
<template #list>
|
|
68
|
+
<DropdownMenu>
|
|
69
|
+
<DropdownItem
|
|
70
|
+
v-for="(temp, index) in sceneData"
|
|
71
|
+
:selected="
|
|
72
|
+
temp.scenename == selectedScence
|
|
73
|
+
"
|
|
74
|
+
:name="temp.scenename"
|
|
75
|
+
:key="'scene_' + index"
|
|
76
|
+
>{{ temp.scenename }}</DropdownItem
|
|
77
|
+
>
|
|
78
|
+
</DropdownMenu>
|
|
79
|
+
</template>
|
|
80
|
+
</Dropdown>
|
|
81
|
+
</Col>
|
|
82
|
+
<Col style="padding-right: 10px">
|
|
83
|
+
<Dropdown
|
|
84
|
+
trigger="custom"
|
|
85
|
+
:visible="btnFlag"
|
|
86
|
+
@on-click="action"
|
|
87
|
+
placement="bottom-start"
|
|
88
|
+
@on-clickoutside="closeBtn"
|
|
89
|
+
>
|
|
43
90
|
<ButtonGroup>
|
|
44
91
|
<Button
|
|
45
|
-
customIcon="iconfont icon-custom-
|
|
46
|
-
|
|
47
|
-
|
|
92
|
+
customIcon="iconfont icon-custom-add"
|
|
93
|
+
v-if="addDataBtnFlag"
|
|
94
|
+
@click="addData"
|
|
95
|
+
>新增</Button
|
|
48
96
|
>
|
|
49
97
|
<Button
|
|
50
|
-
v-if="!
|
|
98
|
+
v-if="!btnFlag && moreBtnFlag"
|
|
51
99
|
icon="ios-arrow-down"
|
|
52
|
-
@click="
|
|
100
|
+
@click="openBtn"
|
|
53
101
|
>
|
|
54
102
|
</Button>
|
|
55
103
|
<Button
|
|
56
|
-
v-if="
|
|
104
|
+
v-if="btnFlag && moreBtnFlag"
|
|
57
105
|
icon="ios-arrow-up"
|
|
58
|
-
@click="
|
|
106
|
+
@click="closeBtn"
|
|
59
107
|
>
|
|
60
108
|
</Button>
|
|
61
109
|
</ButtonGroup>
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
temp.scenename == selectedScence
|
|
69
|
-
"
|
|
70
|
-
:name="temp.scenename"
|
|
71
|
-
:key="'scene_' + index"
|
|
72
|
-
>{{ temp.scenename }}</DropdownItem
|
|
73
|
-
>
|
|
74
|
-
</DropdownMenu>
|
|
75
|
-
</template>
|
|
76
|
-
</Dropdown>
|
|
77
|
-
</Col>
|
|
78
|
-
<Col style="padding-right: 10px">
|
|
79
|
-
<Dropdown
|
|
80
|
-
trigger="custom"
|
|
81
|
-
:visible="btnFlag"
|
|
82
|
-
@on-click="action"
|
|
83
|
-
placement="bottom-start"
|
|
84
|
-
@on-clickoutside="closeBtn"
|
|
85
|
-
>
|
|
86
|
-
<ButtonGroup>
|
|
87
|
-
<Button
|
|
88
|
-
customIcon="iconfont icon-custom-add"
|
|
89
|
-
v-if="addDataBtnFlag"
|
|
90
|
-
@click="addData"
|
|
91
|
-
>新增</Button
|
|
92
|
-
>
|
|
93
|
-
<Button
|
|
94
|
-
v-if="!btnFlag && moreBtnFlag"
|
|
95
|
-
icon="ios-arrow-down"
|
|
96
|
-
@click="openBtn"
|
|
97
|
-
>
|
|
98
|
-
</Button>
|
|
99
|
-
<Button
|
|
100
|
-
v-if="btnFlag && moreBtnFlag"
|
|
101
|
-
icon="ios-arrow-up"
|
|
102
|
-
@click="closeBtn"
|
|
103
|
-
>
|
|
104
|
-
</Button>
|
|
105
|
-
</ButtonGroup>
|
|
106
|
-
<template #list>
|
|
107
|
-
<DropdownMenu>
|
|
108
|
-
<DropdownItem
|
|
109
|
-
v-for="(item, index) in btnData"
|
|
110
|
-
style="padding-left: 0px"
|
|
111
|
-
:key="'btn_' + index"
|
|
112
|
-
>
|
|
113
|
-
<Button
|
|
114
|
-
:icon="item.icon"
|
|
115
|
-
type="text"
|
|
116
|
-
:customIcon="item.customIcon"
|
|
117
|
-
@click="action(item.name)"
|
|
118
|
-
>{{ item.text }}</Button
|
|
110
|
+
<template #list>
|
|
111
|
+
<DropdownMenu>
|
|
112
|
+
<DropdownItem
|
|
113
|
+
v-for="(item, index) in btnData"
|
|
114
|
+
style="padding-left: 0px"
|
|
115
|
+
:key="'btn_' + index"
|
|
119
116
|
>
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
117
|
+
<Button
|
|
118
|
+
:icon="item.icon"
|
|
119
|
+
type="text"
|
|
120
|
+
:customIcon="item.customIcon"
|
|
121
|
+
@click="action(item.name)"
|
|
122
|
+
>{{ item.text }}</Button
|
|
123
|
+
>
|
|
124
|
+
</DropdownItem>
|
|
125
|
+
</DropdownMenu>
|
|
126
|
+
</template>
|
|
127
|
+
</Dropdown>
|
|
128
|
+
</Col>
|
|
129
|
+
<Col>
|
|
130
|
+
<PromptMessages style="height: 100%" />
|
|
131
|
+
</Col>
|
|
132
|
+
</Row>
|
|
133
|
+
</Col>
|
|
134
|
+
</Row>
|
|
135
|
+
</Card>
|
|
136
|
+
<div v-show="filterFlag" style="margin-top: 14px">
|
|
132
137
|
<BillConditionsBox
|
|
133
138
|
ref="filter"
|
|
134
139
|
@doAction="doAction"
|
|
@@ -143,7 +148,7 @@
|
|
|
143
148
|
import querybar from "../querybar.vue";
|
|
144
149
|
|
|
145
150
|
export default {
|
|
146
|
-
name: "
|
|
151
|
+
name: "BillListPanelV3QueryBar",
|
|
147
152
|
extends: querybar,
|
|
148
153
|
data() {
|
|
149
154
|
return {
|