look-ui 1.2.3 → 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/CHANGELOG.md CHANGED
@@ -1,17 +1,31 @@
1
1
 
2
2
 
3
- ## [1.2.3](http://192.168.0.66/font-end/look-ui/compare/1.2.2...1.2.3) (2023-12-25)
3
+ ## [1.2.5](http://192.168.0.66/font-end/look-ui/compare/1.2.4...1.2.5) (2023-12-26)
4
4
 
5
5
 
6
- ### Bug Fixes
6
+ ### Features
7
7
 
8
- * ZDRWFJ-1819 任务下达导入查重没有匹配到相似任务,批量创建任务下达后返回,已下达的任务仍显示在未处理任务列表 ([22d4676](http://192.168.0.66/font-end/look-ui/commits/22d4676fc70babe0ad145239f576e375a98b0970))
8
+ * 添加脚本-自动将日志合并到README ([dec855a](http://192.168.0.66/font-end/look-ui/commits/dec855a414e223173ba8bbbaf4e0a41e08252d27))
9
+
10
+ ## [1.2.4](http://192.168.0.66/font-end/look-ui/compare/1.2.3...1.2.4) (2023-12-25)
9
11
 
10
12
 
11
13
  ### Features
12
14
 
13
- * 查重结果显示自定义查重点作为标题 ([e36fb0a](http://192.168.0.66/font-end/look-ui/commits/e36fb0a49cd62490ac3961eb15bae3af3e5a5f66))
14
- * 新增自定义查重点入参 ([4ba6048](http://192.168.0.66/font-end/look-ui/commits/4ba6048b763cd156cc4e8497dd1e302798c4ae21))
15
+ * 操作自定义按钮时,返回当前任务对象 ([50cde79](http://192.168.0.66/font-end/look-ui/commits/50cde797b9d86b743051883519abdb652d2de390))
16
+
17
+ ## [1.2.3](http://192.168.0.66/font-end/look-ui/compare/1.2.2...1.2.3) (2023-12-25)
18
+
19
+
20
+ ### Bug Fixes
21
+
22
+ * ZDRWFJ-1819 任务下达导入查重没有匹配到相似任务,批量创建任务下达后返回,已下达的任务仍显示在未处理任务列表 ([22d4676](http://192.168.0.66/font-end/look-ui/commits/22d4676fc70babe0ad145239f576e375a98b0970))
23
+
24
+
25
+ ### Features
26
+
27
+ * 查重结果显示自定义查重点作为标题 ([e36fb0a](http://192.168.0.66/font-end/look-ui/commits/e36fb0a49cd62490ac3961eb15bae3af3e5a5f66))
28
+ * 新增自定义查重点入参 ([4ba6048](http://192.168.0.66/font-end/look-ui/commits/4ba6048b763cd156cc4e8497dd1e302798c4ae21))
15
29
  * 自定义查重点 ([3dadf01](http://192.168.0.66/font-end/look-ui/commits/3dadf01883e20de46e197ca39e4bad4c52f966fb))
16
30
 
17
31
  ## [1.2.2](http://192.168.0.66/font-end/look-ui/compare/1.2.1...1.2.2) (2023-12-19)
package/README.md CHANGED
@@ -44,4 +44,3 @@
44
44
  1. 先在 look-ui 项目中执行 npm link(执行完毕后, 会在全局的 node_modules 文件夹里生成一个 look-ui 的软连接, 指向实际的 look-ui)
45
45
  2. 在 A 项目里执行 npm link look-ui(执行完毕后, 会在 A 项目里的 node_modules 文件夹里生成一个 look-ui 的软连接, 指向实际的 look-ui) 即可
46
46
 
47
-
package/changelog.js ADDED
@@ -0,0 +1,8 @@
1
+ const fs = require('fs');
2
+
3
+ const changelog = fs.readFileSync('CHANGELOG.md', 'utf-8');
4
+ const readme = fs.readFileSync('README.md', 'utf-8');
5
+
6
+ const updatedReadme = readme + changelog;
7
+
8
+ fs.writeFileSync('README.md', updatedReadme);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "look-ui",
3
- "version": "1.2.3",
3
+ "version": "1.2.5",
4
4
  "description": "a ui library which is based on element-ui",
5
5
  "main": "./dist/look-ui.common.js",
6
6
  "scripts": {
@@ -24,6 +24,7 @@
24
24
  "@release-it/conventional-changelog": "^7.0.2",
25
25
  "@vue/cli-plugin-babel": "~5.0.0",
26
26
  "@vue/cli-service": "~5.0.0",
27
+ "markdown-it": "^14.0.0",
27
28
  "release-it": "^16.2.1",
28
29
  "vue-template-compiler": "^2.6.14"
29
30
  },
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);
package/utils/api.js CHANGED
@@ -5,11 +5,6 @@ export const searchRepeated = function (url, data) {
5
5
  return request({
6
6
  url: `${url}/searchRepeated/batchSearch`,
7
7
  method: 'post',
8
- headers: {
9
- 'Content-Type': 'application/x-www-form-urlencoded; charset=UTF-8',
10
- },
11
- data: Qs.stringify(data),
8
+ data
12
9
  });
13
10
  };
14
-
15
- // http://192.168.10.28:7076