look-ui 1.2.3 → 1.2.4
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/CHANGELOG.md +15 -8
- package/package.json +1 -1
- package/src/App.vue +2 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,17 +1,24 @@
|
|
|
1
1
|
|
|
2
2
|
|
|
3
|
-
## [1.2.
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
### Bug Fixes
|
|
7
|
-
|
|
8
|
-
* ZDRWFJ-1819 任务下达导入查重没有匹配到相似任务,批量创建任务下达后返回,已下达的任务仍显示在未处理任务列表 ([22d4676](http://192.168.0.66/font-end/look-ui/commits/22d4676fc70babe0ad145239f576e375a98b0970))
|
|
3
|
+
## [1.2.4](http://192.168.0.66/font-end/look-ui/compare/1.2.3...1.2.4) (2023-12-25)
|
|
9
4
|
|
|
10
5
|
|
|
11
6
|
### Features
|
|
12
7
|
|
|
13
|
-
*
|
|
14
|
-
|
|
8
|
+
* 操作自定义按钮时,返回当前任务对象 ([50cde79](http://192.168.0.66/font-end/look-ui/commits/50cde797b9d86b743051883519abdb652d2de390))
|
|
9
|
+
|
|
10
|
+
## [1.2.3](http://192.168.0.66/font-end/look-ui/compare/1.2.2...1.2.3) (2023-12-25)
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
### Bug Fixes
|
|
14
|
+
|
|
15
|
+
* ZDRWFJ-1819 任务下达导入查重没有匹配到相似任务,批量创建任务下达后返回,已下达的任务仍显示在未处理任务列表 ([22d4676](http://192.168.0.66/font-end/look-ui/commits/22d4676fc70babe0ad145239f576e375a98b0970))
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
### Features
|
|
19
|
+
|
|
20
|
+
* 查重结果显示自定义查重点作为标题 ([e36fb0a](http://192.168.0.66/font-end/look-ui/commits/e36fb0a49cd62490ac3961eb15bae3af3e5a5f66))
|
|
21
|
+
* 新增自定义查重点入参 ([4ba6048](http://192.168.0.66/font-end/look-ui/commits/4ba6048b763cd156cc4e8497dd1e302798c4ae21))
|
|
15
22
|
* 自定义查重点 ([3dadf01](http://192.168.0.66/font-end/look-ui/commits/3dadf01883e20de46e197ca39e4bad4c52f966fb))
|
|
16
23
|
|
|
17
24
|
## [1.2.2](http://192.168.0.66/font-end/look-ui/compare/1.2.1...1.2.2) (2023-12-19)
|
package/package.json
CHANGED
package/src/App.vue
CHANGED
|
@@ -144,8 +144,9 @@ export default {
|
|
|
144
144
|
subscriptionClick(row, instance) {
|
|
145
145
|
console.log('关注', row, instance);
|
|
146
146
|
},
|
|
147
|
-
mergingClick(row) {
|
|
147
|
+
mergingClick(row,row2) {
|
|
148
148
|
console.log('归并', row);
|
|
149
|
+
console.log('归并2', row2);
|
|
149
150
|
},
|
|
150
151
|
nameClick(row) {
|
|
151
152
|
console.log('标题', row);
|