safecheck-client 3.0.32-25 → 3.0.32-27

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.
@@ -1,61 +1,66 @@
1
- <template>
2
- <div id='checkbookEntry' class="flex-row binary">
3
- <div class="binary-left">
4
- <tabset v-ref:tabs :close="false" class="nav-tabss">
5
- <tab header="用户查询">
6
- <check-book-search-user @book-list="setBookList" @book-all="setBookAll" @book-condition="setCondition"></check-book-search-user>
7
- </tab>
8
- <tab header="小区查询">
9
- <check-book-search-area @book-list="setBookList" @book-all="setBookAll" @book-condition="setCondition"></check-book-search-area>
10
- </tab>
11
- <!-- <tab header="单位查询">-->
12
- <!-- <check-book-search-unit @book-list="setBookList" @book-all="setBookAll" @book-condition="setCondition"></check-book-search-unit>-->
13
- <!-- </tab>-->
14
- </tabset>
15
- </div>
16
- <div class="binary-right">
17
- <add-to-check-book @book-list="setBookList" @book-all="setBookAll" @book-condition="setCondition"></add-to-check-book>
18
- </div>
19
- </div>
20
- </template>
21
-
22
- <script>
23
-
24
- export default {
25
- name: 'checkBookEntry',
26
- title: '添加用户到片区',
27
- data () {
28
- return {
29
- bookList: [],
30
- bookCondition:"",
31
- bookAll: false
32
- }
33
- },
34
- created () {
35
- },
36
- ready () {
37
- },
38
- methods: {
39
- setBookList(val){
40
- console.log("555555")
41
- // console.log("66666",val)
42
- this.bookList = val
43
- },
44
- setBookAll(val){
45
- this.bookAll = val
46
- },
47
- setCondition(val){
48
- this.bookCondition = val
49
- },
50
- },
51
- events: {
52
-
53
- }
54
- }
55
- </script>
56
-
57
- <style lang="less">
58
- #checkbookEntry {
59
- height: 700px;
60
- }
61
- </style>
1
+ <template>
2
+ <div id='checkbookEntry' class="flex-row binary">
3
+ <div class="binary-left">
4
+ <tabset v-ref:tabs :close="false" class="nav-tabss">
5
+ <tab header="用户查询">
6
+ <check-book-search-user @book-list="setBookList" @book-all="setBookAll" @book-condition="setCondition" :showtype="showtype"></check-book-search-user>
7
+ </tab>
8
+ <tab header="小区查询">
9
+ <check-book-search-area @book-list="setBookList" @book-all="setBookAll" @book-condition="setCondition"></check-book-search-area>
10
+ </tab>
11
+ <!-- <tab header="单位查询">-->
12
+ <!-- <check-book-search-unit @book-list="setBookList" @book-all="setBookAll" @book-condition="setCondition"></check-book-search-unit>-->
13
+ <!-- </tab>-->
14
+ </tabset>
15
+ </div>
16
+ <div class="binary-right">
17
+ <add-to-check-book @book-list="setBookList" @book-all="setBookAll" @book-condition="setCondition"></add-to-check-book>
18
+ </div>
19
+ </div>
20
+ </template>
21
+
22
+ <script>
23
+
24
+ export default {
25
+ name: 'checkBookEntry',
26
+ title: '添加用户到片区',
27
+ data () {
28
+ return {
29
+ bookList: [],
30
+ bookCondition:"",
31
+ bookAll: false
32
+ }
33
+ },
34
+ props: {
35
+ showtype:{
36
+ type: String
37
+ }
38
+ },
39
+ created () {
40
+ },
41
+ ready () {
42
+ },
43
+ methods: {
44
+ setBookList(val){
45
+ console.log("555555")
46
+ // console.log("66666",val)
47
+ this.bookList = val
48
+ },
49
+ setBookAll(val){
50
+ this.bookAll = val
51
+ },
52
+ setCondition(val){
53
+ this.bookCondition = val
54
+ },
55
+ },
56
+ events: {
57
+
58
+ }
59
+ }
60
+ </script>
61
+
62
+ <style lang="less">
63
+ #checkbookEntry {
64
+ height: 700px;
65
+ }
66
+ </style>