address-client 3.0.34-aode → 3.0.34-aodeToV4
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/.gradle/buildOutputCleanup/cache.properties +2 -2
- package/AddressClient.iml +12 -12
- package/CHANGELOG.md +12 -12
- package/build/dev-server.js +128 -128
- package/build/webpack.base.conf.js +81 -81
- package/examples/showAdd/App.vue +40 -40
- package/index.html +40 -40
- package/package.json +1 -1
- package/src/address.js +58 -58
- package/src/components/AddAreaMsg.vue +599 -599
- package/src/components/AddStreetOrPcd.vue +231 -231
- package/src/components/AddressAddAddress.vue +479 -479
- package/src/components/AddressFiles.vue +156 -156
- package/src/components/AddressList.vue +323 -307
- package/src/components/AddressManage.vue +117 -117
- package/src/components/AddressTree.vue +501 -501
- package/src/components/AreaFiles.vue +73 -73
- package/src/components/AreaList.vue +28 -5
- package/src/components/AreaManage.vue +101 -101
- package/src/components/AreaTree.vue +508 -508
- package/src/components/Basch.vue +72 -72
- package/src/components/BatchOrders.vue +328 -328
- package/src/components/CityManage.vue +76 -76
- package/src/components/NewAddressInfo.vue +432 -432
- package/src/components/OneCodeList.vue +251 -251
- package/src/components/StreetList.vue +184 -184
- package/src/components/UserAddress.vue +780 -780
- package/src/components/UserAddressChange.vue +58 -58
- package/src/components/addressts/AddressListts.vue +307 -307
- package/src/components/addressts/AddressManagets.vue +117 -117
- package/src/components/addressts/UserAddressChangets.vue +58 -58
- package/src/components/addressts/UserAddressts.vue +739 -739
- package/src/components/areauser/AreaUser.vue +233 -233
- package/src/components/selectAddress/BatchList.vue +326 -326
- package/src/main.js +23 -23
|
@@ -1,58 +1,58 @@
|
|
|
1
|
-
<template>
|
|
2
|
-
<div class="span" style="width: auto;">
|
|
3
|
-
<p class="bg-info text-center" style="padding: 8px;" >{{'地址变更记录'}}</p>
|
|
4
|
-
<partial-view v-ref:pv @condition-changed="search">
|
|
5
|
-
<criteria-paged :model="model" v-ref:paged :pager="false">
|
|
6
|
-
<data-grid :model="model" partial='list' class="list_area table_sy" v-ref:grid >
|
|
7
|
-
<template partial='head'>
|
|
8
|
-
<tr>
|
|
9
|
-
<th>序号</th>
|
|
10
|
-
<th>变更内容</th>
|
|
11
|
-
<th>旧值</th>
|
|
12
|
-
<th>新值</th>
|
|
13
|
-
<th>变更人</th>
|
|
14
|
-
<th>变更日期</th>
|
|
15
|
-
</tr>
|
|
16
|
-
</template>
|
|
17
|
-
<template partial='body'>
|
|
18
|
-
<td style="text-align: center;">{{$index + 1}}</td>
|
|
19
|
-
<td style="text-align:center">{{row.f_field_name}}</td>
|
|
20
|
-
<td style="text-align:center">{{row.f_used_content}}</td>
|
|
21
|
-
<td style="text-align:center">{{row.f_new_content}}</td>
|
|
22
|
-
<td style="text-align:center">{{row.f_operator}}</td>
|
|
23
|
-
<td style="text-align:center">{{row.f_operate_date}}</td>
|
|
24
|
-
</template>
|
|
25
|
-
</data-grid>
|
|
26
|
-
</criteria-paged>
|
|
27
|
-
</partial-view>
|
|
28
|
-
</div>
|
|
29
|
-
</template>
|
|
30
|
-
|
|
31
|
-
<script>
|
|
32
|
-
import { PagedList } from 'vue-client'
|
|
33
|
-
|
|
34
|
-
export default {
|
|
35
|
-
title: '地址变更列表',
|
|
36
|
-
data () {
|
|
37
|
-
return {
|
|
38
|
-
model: new PagedList('
|
|
39
|
-
tablename: `'t_address_change'`,items: `'*'`,
|
|
40
|
-
orderitem: `'f_operate_date desc'`}),
|
|
41
|
-
}
|
|
42
|
-
},
|
|
43
|
-
props: ['address_id'],
|
|
44
|
-
ready () {
|
|
45
|
-
this.search()
|
|
46
|
-
},
|
|
47
|
-
methods: {
|
|
48
|
-
search() {
|
|
49
|
-
this.model.search(`f_address_id = '${this.address_id}'`)
|
|
50
|
-
}
|
|
51
|
-
},
|
|
52
|
-
watch: {
|
|
53
|
-
'address_id' () {
|
|
54
|
-
this.search()
|
|
55
|
-
}
|
|
56
|
-
}
|
|
57
|
-
}
|
|
58
|
-
</script>
|
|
1
|
+
<template>
|
|
2
|
+
<div class="span" style="width: auto;">
|
|
3
|
+
<p class="bg-info text-center" style="padding: 8px;" >{{'地址变更记录'}}</p>
|
|
4
|
+
<partial-view v-ref:pv @condition-changed="search">
|
|
5
|
+
<criteria-paged :model="model" v-ref:paged :pager="false">
|
|
6
|
+
<data-grid :model="model" partial='list' class="list_area table_sy" v-ref:grid >
|
|
7
|
+
<template partial='head'>
|
|
8
|
+
<tr>
|
|
9
|
+
<th>序号</th>
|
|
10
|
+
<th>变更内容</th>
|
|
11
|
+
<th>旧值</th>
|
|
12
|
+
<th>新值</th>
|
|
13
|
+
<th>变更人</th>
|
|
14
|
+
<th>变更日期</th>
|
|
15
|
+
</tr>
|
|
16
|
+
</template>
|
|
17
|
+
<template partial='body'>
|
|
18
|
+
<td style="text-align: center;">{{$index + 1}}</td>
|
|
19
|
+
<td style="text-align:center">{{row.f_field_name}}</td>
|
|
20
|
+
<td style="text-align:center">{{row.f_used_content}}</td>
|
|
21
|
+
<td style="text-align:center">{{row.f_new_content}}</td>
|
|
22
|
+
<td style="text-align:center">{{row.f_operator}}</td>
|
|
23
|
+
<td style="text-align:center">{{row.f_operate_date}}</td>
|
|
24
|
+
</template>
|
|
25
|
+
</data-grid>
|
|
26
|
+
</criteria-paged>
|
|
27
|
+
</partial-view>
|
|
28
|
+
</div>
|
|
29
|
+
</template>
|
|
30
|
+
|
|
31
|
+
<script>
|
|
32
|
+
import { PagedList } from 'vue-client'
|
|
33
|
+
|
|
34
|
+
export default {
|
|
35
|
+
title: '地址变更列表',
|
|
36
|
+
data () {
|
|
37
|
+
return {
|
|
38
|
+
model: new PagedList('api/af-revenue/sql/address_singleTableOrderBy',20, {
|
|
39
|
+
tablename: `'t_address_change'`,items: `'*'`,
|
|
40
|
+
orderitem: `'f_operate_date desc'`}),
|
|
41
|
+
}
|
|
42
|
+
},
|
|
43
|
+
props: ['address_id'],
|
|
44
|
+
ready () {
|
|
45
|
+
this.search()
|
|
46
|
+
},
|
|
47
|
+
methods: {
|
|
48
|
+
search() {
|
|
49
|
+
this.model.search(`f_address_id = '${this.address_id}'`)
|
|
50
|
+
}
|
|
51
|
+
},
|
|
52
|
+
watch: {
|
|
53
|
+
'address_id' () {
|
|
54
|
+
this.search()
|
|
55
|
+
}
|
|
56
|
+
}
|
|
57
|
+
}
|
|
58
|
+
</script>
|