look-ui 1.1.16 → 1.1.18
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/dist/look-ui.common.js +87 -85
- package/dist/look-ui.css +1 -1
- package/dist/look-ui.umd.js +87 -85
- package/dist/look-ui.umd.min.js +1 -1
- package/package.json +1 -1
- package/src/App.vue +24 -0
package/package.json
CHANGED
package/src/App.vue
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
<template>
|
|
2
2
|
<div class="app">
|
|
3
3
|
<look-dulplicate-checking
|
|
4
|
+
:data="data"
|
|
4
5
|
:noDealMission="noDealMission"
|
|
5
6
|
:hadDealMission="hadDealMission"
|
|
6
7
|
:checkingResultList="checkingResultList"
|
|
@@ -16,6 +17,29 @@ export default {
|
|
|
16
17
|
data() {
|
|
17
18
|
return {
|
|
18
19
|
allCheckingResultList: [],
|
|
20
|
+
data: [
|
|
21
|
+
{
|
|
22
|
+
taskId: '1',
|
|
23
|
+
name: '三亚市第一艘海洋休闲渔船',
|
|
24
|
+
checked: false,
|
|
25
|
+
tenantId: '4602000038',
|
|
26
|
+
checkResultListLength: 0,
|
|
27
|
+
},
|
|
28
|
+
{
|
|
29
|
+
taskId: '2',
|
|
30
|
+
name: '事项工作内容',
|
|
31
|
+
checked: false,
|
|
32
|
+
tenantId: '4602000038',
|
|
33
|
+
checkResultListLength: 0,
|
|
34
|
+
},
|
|
35
|
+
{
|
|
36
|
+
taskId: '3',
|
|
37
|
+
name: '琼海',
|
|
38
|
+
checked: false,
|
|
39
|
+
tenantId: '4602000038',
|
|
40
|
+
checkResultListLength: 0,
|
|
41
|
+
},
|
|
42
|
+
],
|
|
19
43
|
// 未处理任务
|
|
20
44
|
noDealMission: {
|
|
21
45
|
// 存在相似任务列表
|