look-ui 1.2.18 → 1.2.20
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 +26 -26
- package/dist/look-ui.common.js +3 -3
- package/dist/look-ui.css +1 -1
- package/dist/look-ui.umd.js +3 -3
- package/dist/look-ui.umd.min.js +3 -3
- package/jsconfig.json +19 -19
- package/package.json +1 -1
- package/src/App.vue +14 -5
package/jsconfig.json
CHANGED
|
@@ -1,19 +1,19 @@
|
|
|
1
|
-
{
|
|
2
|
-
"compilerOptions": {
|
|
3
|
-
"target": "es5",
|
|
4
|
-
"module": "esnext",
|
|
5
|
-
"baseUrl": "./",
|
|
6
|
-
"moduleResolution": "node",
|
|
7
|
-
"paths": {
|
|
8
|
-
"@/*": [
|
|
9
|
-
"src/*"
|
|
10
|
-
]
|
|
11
|
-
},
|
|
12
|
-
"lib": [
|
|
13
|
-
"esnext",
|
|
14
|
-
"dom",
|
|
15
|
-
"dom.iterable",
|
|
16
|
-
"scripthost"
|
|
17
|
-
]
|
|
18
|
-
}
|
|
19
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"compilerOptions": {
|
|
3
|
+
"target": "es5",
|
|
4
|
+
"module": "esnext",
|
|
5
|
+
"baseUrl": "./",
|
|
6
|
+
"moduleResolution": "node",
|
|
7
|
+
"paths": {
|
|
8
|
+
"@/*": [
|
|
9
|
+
"src/*"
|
|
10
|
+
]
|
|
11
|
+
},
|
|
12
|
+
"lib": [
|
|
13
|
+
"esnext",
|
|
14
|
+
"dom",
|
|
15
|
+
"dom.iterable",
|
|
16
|
+
"scripthost"
|
|
17
|
+
]
|
|
18
|
+
}
|
|
19
|
+
}
|
package/package.json
CHANGED
package/src/App.vue
CHANGED
|
@@ -21,11 +21,12 @@
|
|
|
21
21
|
<el-button type="primary"> 创建任务 </el-button>
|
|
22
22
|
</div>
|
|
23
23
|
</el-dialog> -->
|
|
24
|
-
|
|
24
|
+
<look-dulplicate-checking
|
|
25
25
|
:data="data"
|
|
26
26
|
searchRepeatedUrl="http://192.168.230.186:7076"
|
|
27
27
|
isShowCustomSource
|
|
28
28
|
:customSource="customSource"
|
|
29
|
+
:customNames="['taskType']"
|
|
29
30
|
@createTasks="createTasks"
|
|
30
31
|
@merging-click="mergingClick"
|
|
31
32
|
@subscription-click="subscriptionClick"
|
|
@@ -35,12 +36,12 @@
|
|
|
35
36
|
@detail-click="detailClick"
|
|
36
37
|
@relation-click="relationClick"
|
|
37
38
|
@onCancelBtnClick="handleCancelBtnClick">
|
|
38
|
-
|
|
39
|
+
<!-- <template v-slot:operating-btns="slotProps">
|
|
39
40
|
<el-button size="small" @click="handleDiyBtnClick(slotProps)">自定义按钮</el-button>
|
|
40
|
-
</template>
|
|
41
|
-
</look-dulplicate-checking
|
|
41
|
+
</template> -->
|
|
42
|
+
</look-dulplicate-checking>
|
|
42
43
|
<!-- <look-associated-document /> -->
|
|
43
|
-
<look-associated-attachment style="height: 300px;" />
|
|
44
|
+
<!-- <look-associated-attachment style="height: 300px;" /> -->
|
|
44
45
|
</div>
|
|
45
46
|
</template>
|
|
46
47
|
|
|
@@ -103,6 +104,14 @@ export default {
|
|
|
103
104
|
relation:
|
|
104
105
|
'《习近平主席出席金砖国家领导人第十五次会晤并对南非进行国事访问。立足南非和金砖,放眼非洲和世 界。》', // 已处理任务的关联任务的名字
|
|
105
106
|
},
|
|
107
|
+
{
|
|
108
|
+
name: '0131全是重大任务',
|
|
109
|
+
taskId: '1',
|
|
110
|
+
taskType: '101',
|
|
111
|
+
tenantId: '20221129',
|
|
112
|
+
checked: false,
|
|
113
|
+
status: '',
|
|
114
|
+
},
|
|
106
115
|
{
|
|
107
116
|
taskId: '4',
|
|
108
117
|
name: 'chenshiyan',
|