address-client 3.0.17 → 3.0.19-wsd

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,67 +1,67 @@
1
- <template>
2
- <div style="width: auto;">
3
- <criteria-paged :model="model" v-ref:paged :pager="false">
4
- <criteria partial='criteria' @condition-changed='$parent.selfsearch' v-ref:criteria >
5
- <div novalidate class="form-horizontal select-overspread container-fluid auto" partial>
6
- <div class="col-sm-9 ">
7
- <input type="text" class="input_search button_spacing" v-model="model.f_residential_area"
8
- condition="f_residential_area like '%{}%'" placeholder='小区名称'>
9
- </div>
10
- <div class="span" style="float:right;"id='filesArea'>
11
- <button class="button_search button_spacing" @click="search()">查询</button>
12
- </div>
13
- </div>
14
- </criteria>
15
- <data-grid :model="model" partial='list' v-ref:grid class="list_area table_sy" >
16
- <template partial='head'>
17
- <tr>
18
- <th>序号</th>
19
- <th>小区详细地址</th>
20
- <th>操作</th>
21
- </tr>
22
- </template>
23
- <template partial='body'>
24
- <td id = "1" style="text-align: center;">{{$index + 1}}</td>
25
- <td>{{row.f_area_address}}-{{row.f_residential_area}}</td>
26
- <td style="text-align: center;">
27
- <button type="button" name="button" class="btn btn-link" @click.stop="$parent.$parent.$parent.$parent.foundFile(row)">建档</button>
28
- </td>
29
- </template>
30
- </data-grid>
31
- </criteria-paged>
32
- </div>
33
- </template>
34
-
35
- <script>
36
- import { PagedList } from 'vue-client'
37
- export default {
38
- title: '小区列表',
39
- data () {
40
- return {
41
- model: new PagedList('rs/sql/address_getArea', 20)
42
- }
43
- },
44
- props: ['f_filialeid'],
45
- ready () {
46
- this.search()
47
- },
48
- methods: {
49
- foundFile (row) {
50
- console.log('小区建档', row)
51
- this.$emit('re-ref', row)
52
- },
53
- search () {
54
- this.$refs.paged.$refs.criteria.search()
55
- },
56
- selfsearch (datas) {
57
- datas.condition += ` and a.f_filialeid = '${this.f_filialeid}'`
58
- this.$refs.paged.$refs.grid.$el.scrollTop = 0
59
- this.model.search(datas.condition, this.model)
60
- },
61
- // 主要提供外部组件调用,刷新数据
62
- reflash () {
63
- this.$refs.paged.$refs.criteria.search()
64
- }
65
- }
66
- }
67
- </script>
1
+ <template>
2
+ <div style="width: auto;">
3
+ <criteria-paged :model="model" v-ref:paged :pager="false">
4
+ <criteria partial='criteria' @condition-changed='$parent.selfsearch' v-ref:criteria >
5
+ <div novalidate class="form-horizontal select-overspread container-fluid auto" partial>
6
+ <div class="col-sm-9 ">
7
+ <input type="text" class="input_search button_spacing" v-model="model.f_residential_area"
8
+ condition="f_residential_area like '%{}%'" placeholder='小区名称'>
9
+ </div>
10
+ <div class="span" style="float:right;"id='filesArea'>
11
+ <button class="button_search button_spacing" @click="search()">查询</button>
12
+ </div>
13
+ </div>
14
+ </criteria>
15
+ <data-grid :model="model" partial='list' v-ref:grid class="list_area table_sy" >
16
+ <template partial='head'>
17
+ <tr>
18
+ <th>序号</th>
19
+ <th>小区详细地址</th>
20
+ <th>操作</th>
21
+ </tr>
22
+ </template>
23
+ <template partial='body'>
24
+ <td id = "1" style="text-align: center;">{{$index + 1}}</td>
25
+ <td>{{row.f_area_address}}-{{row.f_residential_area}}</td>
26
+ <td style="text-align: center;">
27
+ <button type="button" name="button" class="btn btn-link" @click.stop="$parent.$parent.$parent.foundFile(row)">建档</button>
28
+ </td>
29
+ </template>
30
+ </data-grid>
31
+ </criteria-paged>
32
+ </div>
33
+ </template>
34
+
35
+ <script>
36
+ import { PagedList } from 'vue-client'
37
+ export default {
38
+ title: '小区列表',
39
+ data () {
40
+ return {
41
+ model: new PagedList('rs/sql/address_getArea', 20)
42
+ }
43
+ },
44
+ props: ['f_filialeid'],
45
+ ready () {
46
+ this.search()
47
+ },
48
+ methods: {
49
+ foundFile (row) {
50
+ console.log('小区建档', row)
51
+ this.$emit('re-ref', row)
52
+ },
53
+ search () {
54
+ this.$refs.paged.$refs.criteria.search()
55
+ },
56
+ selfsearch (datas) {
57
+ datas.condition += ` and a.f_filialeid = '${this.f_filialeid}'`
58
+ this.$refs.paged.$refs.grid.$el.scrollTop = 0
59
+ this.model.search(datas.condition, this.model)
60
+ },
61
+ // 主要提供外部组件调用,刷新数据
62
+ reflash () {
63
+ this.$refs.paged.$refs.criteria.search()
64
+ }
65
+ }
66
+ }
67
+ </script>
@@ -1,210 +1,210 @@
1
- <template>
2
- <div class="flex">
3
- <criteria-paged :model="model" v-ref:paged>
4
- <criteria partial='criteria' @condition-changed='$parent.selfSearch' v-ref:cri>
5
- <div novalidate class="form-horizontal select-overspread container-fluid auto" partial>
6
- <div class="row">
7
- <div :class="$parent.$parent.style">
8
- <label class="font_normal_body">组织机构</label>
9
- <res-select restype='organization'
10
- @res-select="$parent.$parent.getorg"
11
- is-mul="false"
12
- :initresid='$parent.$parent.curorgid'>
13
- </res-select>
14
- </div>
15
- <div :class="$parent.$parent.style">
16
- <label class="font_normal_body">&nbsp;&nbsp;&nbsp;省份&nbsp;&nbsp;&nbsp;</label>
17
- <input type="text" class="input_search" style="width:60%" v-model="model.f_province"
18
- condition="f_province like '%{}%'" placeholder="省份"
19
- :size="model.f_province ? model.f_province.length*2 : 6"/>
20
- </div>
21
- <div :class="$parent.$parent.style">
22
- <label class="font_normal_body">&nbsp;&nbsp;&nbsp;城市&nbsp;&nbsp;&nbsp;</label>
23
- <input type="text" class="input_search" style="width:60%" v-model="model.f_city"
24
- condition="f_city like '%{}%'" placeholder="城市"
25
- :size="model.f_city ? model.f_city.length*2 : 6"/>
26
- </div>
27
- <div :class="$parent.$parent.style">
28
- <label class="font_normal_body">&nbsp;&nbsp;&nbsp;区县&nbsp;&nbsp;&nbsp;</label>
29
- <input type="text" class="input_search" style="width:60%" v-model="model.f_district"
30
- condition="f_district like '%{}%'" placeholder="区县"
31
- :size="model.f_district ? model.f_district.length*2 : 6"/>
32
- </div>
33
- <div :class="$parent.$parent.style">
34
- <label class="font_normal_body">&nbsp;&nbsp;&nbsp;街道&nbsp;&nbsp;&nbsp;</label>
35
- <input type="text" class="input_search" style="width:60%" v-model="model.f_street"
36
- condition="f_street like '%{}%'" placeholder="街道"
37
- :size="model.f_street ? model.f_street.length*2 : 6"/>
38
- </div>
39
- <div :class="$parent.$parent.style">
40
- <label class="font_normal_body">&nbsp;&nbsp;&nbsp;小区&nbsp;&nbsp;&nbsp;</label>
41
- <input type="text" class="input_search" style="width:60%" v-model="model.f_residential_area"
42
- condition="f_residential_area like '%{}%'" placeholder="小区"
43
- :size="model.f_residential_area ? model.f_residential_area.length*2 : 6"/>
44
- </div>
45
- <div style="float:right;">
46
- <button class="button_search button_spacing" @click="search()" >查询</button>
47
- <button v-if="!$parent.$parent.f_special" class="button_new button_spacing" style="width: max-content;" @click="$parent.$parent.add('小区')">添加小区</button>
48
- <button v-if="$parent.$parent.f_special"class="button_new button_spacing" style="width: max-content;" @click="$parent.$parent.add('单位')">添加单位</button>
49
- <button class="button_clear button_spacing" @click="$parent.$parent.clear()">清空</button>
50
- </div>
51
- </div>
52
- </div>
53
-
54
-
55
- </criteria>
56
- <data-grid :model="model" partial='list' class="list_area table_sy" v-ref:grid>
57
- <template partial='head'>
58
- <tr>
59
- <th><nobr>序号</nobr></th>
60
- <th><nobr>省份</nobr></th>
61
- <th><nobr>城市</nobr></th>
62
- <th><nobr>区/县</nobr></th>
63
- <th><nobr>街道名称</nobr></th>
64
- <!--民用小区信息开始-->
65
- <th v-if="!$parent.$parent.$parent.f_special"><nobr>小区名称</nobr></th>
66
- <th v-if="!$parent.$parent.$parent.f_special"><nobr>详细地址</nobr></th>
67
- <!--民用小区信息结束-->
68
- <!--非民用单位信息开始-->
69
- <th v-if="$parent.$parent.$parent.f_special"><nobr>单位名称</nobr></th>
70
- <th v-if="$parent.$parent.$parent.f_special"><nobr>单位地址</nobr></th>
71
- <th v-if="$parent.$parent.$parent.f_special"><nobr>联系人</nobr></th>
72
- <th v-if="$parent.$parent.$parent.f_special"><nobr>联系电话</nobr></th>
73
- <!--非民用单位信息结束-->
74
- <th><nobr>片区/管理站 </nobr></th>
75
- <th><nobr>操作人</nobr></th>
76
- <th><nobr>操作日期</nobr></th>
77
- <th><nobr>操作</nobr></th>
78
-
79
- </tr>
80
- </template>
81
- <template partial='body'>
82
- <tr>
83
- <td style="text-align:center"><nobr>{{$index + 1}}</nobr></td>
84
- <td style="text-align:center"><nobr>{{row.f_province}}</nobr></td>
85
- <td style="text-align:center"><nobr>{{row.f_city}}</nobr></td>
86
- <td style="text-align:center"><nobr>{{row.f_district}}</nobr></td>
87
- <td style="text-align:center"><nobr>{{row.f_street}}</nobr></td>
88
- <td style="text-align:center"><nobr>{{row.f_residential_area}}</nobr></td>
89
- <td style="text-align:center"><nobr>{{row.f_area_address}}{{row.f_residential_area}}</nobr></td>
90
- <!--非民用单位信息开始-->
91
- <td v-if="$parent.$parent.$parent.f_special" style="text-align:center"><nobr>{{row.f_linkname}}</nobr></td>
92
- <td v-if="$parent.$parent.$parent.f_special" style="text-align:center"><nobr>{{row.f_linkphone}}</nobr></td>
93
- <!--非民用单位信息结束-->
94
- <td style="text-align:center"><nobr>{{row.f_slice_area}}</nobr></td>
95
- <td style="text-align:center"><nobr>{{row.f_operator}}</nobr></td>
96
- <td style="text-align:center"><nobr>{{row.f_operate_date}}</nobr></td>
97
- <td><nobr>
98
- <!--<button type="button" name="button" class="btn btn-link"
99
- @click.stop="$parent.$parent.$parent.modify(row)">修改</button>-->
100
- <button type="button" name="button" class="btn btn-link"
101
- @click.stop="$parent.$parent.$parent.delete(row)">删除</button>
102
- </nobr></td>
103
- </tr>
104
- </template>
105
- <template partial='foot'></template>
106
- </data-grid>
107
- </criteria-paged>
108
- </div>
109
- </template>
110
-
111
- <script>
112
- import { PagedList } from 'vue-client'
113
-
114
- export default {
115
-
116
- data () {
117
- return {
118
- criteriaShow: false,
119
- model: new PagedList('rs/sql/address_getarealist',20),
120
- addflag: false,
121
- addtitle:'',
122
-
123
- // 公司下拉
124
- curorgid: [this.$login.f.orgid],
125
- f_orgid: ''
126
- }
127
- },
128
- title: '小区管理',
129
- props:{
130
- f_filialeids:{
131
- type: String
132
- },
133
- style: {
134
- type: String,
135
- default: 'col-sm-2'
136
- },
137
- f_special:{
138
- type: String
139
- }
140
- },
141
- ready(){
142
- this.search()
143
- },
144
- methods: {
145
- hidden() {
146
- this.criteriaShow = !this.criteriaShow
147
- },
148
- search() {
149
- this.$refs.paged.$refs.cri.search()
150
- },
151
-
152
- async delete(row){
153
- if(row.id){
154
- var id = row.id
155
- let useraredss = await this.$resetpost('rs/sql/address_singleTable',
156
- {data: {
157
- items: 'f_residential_area_id',
158
- tablename: 't_user_address',
159
- condition: `f_residential_area_id='${id}'`}
160
- },
161
- {resolveMsg: null, rejectMsg: null})
162
- if(useraredss.data.length>0){
163
- this.$showAlert('该小区下已有地址信息,无法删除!','warning',1000)
164
- }else{
165
- this.$resetdelete('rs/entity/t_area', {id: id}, {resolveMsg: '删除成功', rejectMsg: '删除失败'}).then((res) => {
166
- this.$dispatch('cancel')
167
- })
168
- }
169
- }
170
- },
171
- add(val){
172
- if (this.f_filialeids) {
173
- this.$refs.paged.$refs.grid.selectStore.selected = null
174
- this.$dispatch('add')
175
- } else {
176
- this.$showAlert('请先选择左上角的所在分公司', 'warning', 2000)
177
- }
178
- },
179
- modify(val){
180
- this.$refs.paged.$refs.grid.selectStore.selected = null
181
- this.$dispatch('modify',val)
182
- },
183
- selfSearch (args) {
184
-
185
- if (!this.f_orgid) {
186
- this.getorg([this.$login.f.orgid])
187
- }
188
- console.log('查询。。。', this.f_orgid)
189
- if(this.f_special){
190
- args.condition = `${args.condition} and s.f_special='1' and s.f_filialeid = '${this.f_filialeids}'`
191
- }else{
192
- args.condition = `${args.condition} and s.f_filialeid = ${this.f_orgid}`
193
- }
194
- this.model.search(args.condition, args.model)
195
- },
196
- //清空
197
- clear(){
198
- this.$refs.paged.$refs.cri.model = {}
199
- },
200
- getorg (val) {
201
- this.f_orgid = this.$login.convertToIn(val)
202
- this.f_filialeids = val[0]
203
- }
204
- },
205
- watch:{
206
-
207
- }
208
-
209
- }
210
- </script>
1
+ <template>
2
+ <div class="flex">
3
+ <criteria-paged :model="model" v-ref:paged>
4
+ <criteria partial='criteria' @condition-changed='$parent.selfSearch' v-ref:cri>
5
+ <div novalidate class="form-horizontal select-overspread container-fluid auto" partial>
6
+ <div class="row">
7
+ <div :class="$parent.$parent.style">
8
+ <label class="font_normal_body">组织机构</label>
9
+ <res-select restype='organization'
10
+ @res-select="$parent.$parent.getorg"
11
+ is-mul="false"
12
+ :initresid='$parent.$parent.curorgid'>
13
+ </res-select>
14
+ </div>
15
+ <div :class="$parent.$parent.style">
16
+ <label class="font_normal_body">&nbsp;&nbsp;&nbsp;省份&nbsp;&nbsp;&nbsp;</label>
17
+ <input type="text" class="input_search" style="width:60%" v-model="model.f_province"
18
+ condition="f_province like '%{}%'" placeholder="省份"
19
+ :size="model.f_province ? model.f_province.length*2 : 6"/>
20
+ </div>
21
+ <div :class="$parent.$parent.style">
22
+ <label class="font_normal_body">&nbsp;&nbsp;&nbsp;城市&nbsp;&nbsp;&nbsp;</label>
23
+ <input type="text" class="input_search" style="width:60%" v-model="model.f_city"
24
+ condition="f_city like '%{}%'" placeholder="城市"
25
+ :size="model.f_city ? model.f_city.length*2 : 6"/>
26
+ </div>
27
+ <div :class="$parent.$parent.style">
28
+ <label class="font_normal_body">&nbsp;&nbsp;&nbsp;区县&nbsp;&nbsp;&nbsp;</label>
29
+ <input type="text" class="input_search" style="width:60%" v-model="model.f_district"
30
+ condition="f_district like '%{}%'" placeholder="区县"
31
+ :size="model.f_district ? model.f_district.length*2 : 6"/>
32
+ </div>
33
+ <div :class="$parent.$parent.style">
34
+ <label class="font_normal_body">&nbsp;&nbsp;&nbsp;街道&nbsp;&nbsp;&nbsp;</label>
35
+ <input type="text" class="input_search" style="width:60%" v-model="model.f_street"
36
+ condition="f_street like '%{}%'" placeholder="街道"
37
+ :size="model.f_street ? model.f_street.length*2 : 6"/>
38
+ </div>
39
+ <div :class="$parent.$parent.style">
40
+ <label class="font_normal_body">&nbsp;&nbsp;&nbsp;小区&nbsp;&nbsp;&nbsp;</label>
41
+ <input type="text" class="input_search" style="width:60%" v-model="model.f_residential_area"
42
+ condition="f_residential_area like '%{}%'" placeholder="小区"
43
+ :size="model.f_residential_area ? model.f_residential_area.length*2 : 6"/>
44
+ </div>
45
+ <div style="float:right;">
46
+ <button class="button_search button_spacing" @click="search()" >查询</button>
47
+ <button v-if="!$parent.$parent.f_special" class="button_new button_spacing" style="width: max-content;" @click="$parent.$parent.add('小区')">添加小区</button>
48
+ <button v-if="$parent.$parent.f_special"class="button_new button_spacing" style="width: max-content;" @click="$parent.$parent.add('单位')">添加单位</button>
49
+ <button class="button_clear button_spacing" @click="$parent.$parent.clear()">清空</button>
50
+ </div>
51
+ </div>
52
+ </div>
53
+
54
+
55
+ </criteria>
56
+ <data-grid :model="model" partial='list' class="list_area table_sy" v-ref:grid>
57
+ <template partial='head'>
58
+ <tr>
59
+ <th><nobr>序号</nobr></th>
60
+ <th><nobr>省份</nobr></th>
61
+ <th><nobr>城市</nobr></th>
62
+ <th><nobr>区/县</nobr></th>
63
+ <th><nobr>街道名称</nobr></th>
64
+ <!--民用小区信息开始-->
65
+ <th v-if="!$parent.$parent.$parent.f_special"><nobr>小区名称</nobr></th>
66
+ <th v-if="!$parent.$parent.$parent.f_special"><nobr>详细地址</nobr></th>
67
+ <!--民用小区信息结束-->
68
+ <!--非民用单位信息开始-->
69
+ <th v-if="$parent.$parent.$parent.f_special"><nobr>单位名称</nobr></th>
70
+ <th v-if="$parent.$parent.$parent.f_special"><nobr>单位地址</nobr></th>
71
+ <th v-if="$parent.$parent.$parent.f_special"><nobr>联系人</nobr></th>
72
+ <th v-if="$parent.$parent.$parent.f_special"><nobr>联系电话</nobr></th>
73
+ <!--非民用单位信息结束-->
74
+ <th><nobr>片区/管理站 </nobr></th>
75
+ <th><nobr>操作人</nobr></th>
76
+ <th><nobr>操作日期</nobr></th>
77
+ <th><nobr>操作</nobr></th>
78
+
79
+ </tr>
80
+ </template>
81
+ <template partial='body'>
82
+ <tr>
83
+ <td style="text-align:center"><nobr>{{$index + 1}}</nobr></td>
84
+ <td style="text-align:center"><nobr>{{row.f_province}}</nobr></td>
85
+ <td style="text-align:center"><nobr>{{row.f_city}}</nobr></td>
86
+ <td style="text-align:center"><nobr>{{row.f_district}}</nobr></td>
87
+ <td style="text-align:center"><nobr>{{row.f_street}}</nobr></td>
88
+ <td style="text-align:center"><nobr>{{row.f_residential_area}}</nobr></td>
89
+ <td style="text-align:center"><nobr>{{row.f_area_address}}{{row.f_residential_area}}</nobr></td>
90
+ <!--非民用单位信息开始-->
91
+ <td v-if="$parent.$parent.$parent.f_special" style="text-align:center"><nobr>{{row.f_linkname}}</nobr></td>
92
+ <td v-if="$parent.$parent.$parent.f_special" style="text-align:center"><nobr>{{row.f_linkphone}}</nobr></td>
93
+ <!--非民用单位信息结束-->
94
+ <td style="text-align:center"><nobr>{{row.f_slice_area}}</nobr></td>
95
+ <td style="text-align:center"><nobr>{{row.f_operator}}</nobr></td>
96
+ <td style="text-align:center"><nobr>{{row.f_operate_date}}</nobr></td>
97
+ <td><nobr>
98
+ <!--<button type="button" name="button" class="btn btn-link"
99
+ @click.stop="$parent.$parent.$parent.modify(row)">修改</button>-->
100
+ <button type="button" name="button" class="btn btn-link"
101
+ @click.stop="$parent.$parent.$parent.delete(row)">删除</button>
102
+ </nobr></td>
103
+ </tr>
104
+ </template>
105
+ <template partial='foot'></template>
106
+ </data-grid>
107
+ </criteria-paged>
108
+ </div>
109
+ </template>
110
+
111
+ <script>
112
+ import { PagedList } from 'vue-client'
113
+
114
+ export default {
115
+
116
+ data () {
117
+ return {
118
+ criteriaShow: false,
119
+ model: new PagedList('rs/sql/address_getarealist',20),
120
+ addflag: false,
121
+ addtitle:'',
122
+
123
+ // 公司下拉
124
+ curorgid: [this.$login.f.orgid],
125
+ f_orgid: ''
126
+ }
127
+ },
128
+ title: '小区管理',
129
+ props:{
130
+ f_filialeids:{
131
+ type: String
132
+ },
133
+ style: {
134
+ type: String,
135
+ default: 'col-sm-2'
136
+ },
137
+ f_special:{
138
+ type: String
139
+ }
140
+ },
141
+ ready(){
142
+ this.search()
143
+ },
144
+ methods: {
145
+ hidden() {
146
+ this.criteriaShow = !this.criteriaShow
147
+ },
148
+ search() {
149
+ this.$refs.paged.$refs.cri.search()
150
+ },
151
+
152
+ async delete(row){
153
+ if(row.id){
154
+ var id = row.id
155
+ let useraredss = await this.$resetpost('rs/sql/address_singleTable',
156
+ {data: {
157
+ items: 'f_residential_area_id',
158
+ tablename: 't_user_address',
159
+ condition: `f_residential_area_id='${id}'`}
160
+ },
161
+ {resolveMsg: null, rejectMsg: null})
162
+ if(useraredss.data.length>0){
163
+ this.$showAlert('该小区下已有地址信息,无法删除!','warning',1000)
164
+ }else{
165
+ this.$resetdelete('rs/entity/t_area', {id: id}, {resolveMsg: '删除成功', rejectMsg: '删除失败'}).then((res) => {
166
+ this.$dispatch('cancel')
167
+ })
168
+ }
169
+ }
170
+ },
171
+ add(val){
172
+ if (this.f_filialeids) {
173
+ this.$refs.paged.$refs.grid.selectStore.selected = null
174
+ this.$dispatch('add')
175
+ } else {
176
+ this.$showAlert('请先选择左上角的所在分公司', 'warning', 2000)
177
+ }
178
+ },
179
+ modify(val){
180
+ this.$refs.paged.$refs.grid.selectStore.selected = null
181
+ this.$dispatch('modify',val)
182
+ },
183
+ selfSearch (args) {
184
+
185
+ if (!this.f_orgid) {
186
+ this.getorg([this.$login.f.orgid])
187
+ }
188
+ console.log('查询。。。', this.f_orgid)
189
+ if(this.f_special){
190
+ args.condition = `${args.condition} and s.f_special='1' and s.f_filialeid = '${this.f_filialeids}'`
191
+ }else{
192
+ args.condition = `${args.condition} and s.f_filialeid = ${this.f_orgid}`
193
+ }
194
+ this.model.search(args.condition, args.model)
195
+ },
196
+ //清空
197
+ clear(){
198
+ this.$refs.paged.$refs.cri.model = {}
199
+ },
200
+ getorg (val) {
201
+ this.f_orgid = this.$login.convertToIn(val)
202
+ this.f_filialeids = val[0]
203
+ }
204
+ },
205
+ watch:{
206
+
207
+ }
208
+
209
+ }
210
+ </script>