manage-client 3.2.217 → 3.2.219
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/build/dev-server.js +180 -193
- package/manage_lib2022-12-01-14-30-50.zip +0 -0
- package/package.json +3 -3
- package/src/components/daping/CallCenter.vue +8 -8
- package/src/components/daping/DataManagement.vue +5 -7
- package/src/components/daping/ManageMain.vue +8 -4
- package/src/components/daping/SafecheckBarChart.vue +4 -4
- package/src/components/daping/json/dataManage.json +26 -0
- package/src/components/sale/businessquery/ArrearsQuery.vue +7 -8
- package/src/components/sale/businessquery/CardHandplanQuery.vue +10 -1
- package/src/filiale/WEINAN/CancellationQuery.vue +526 -526
- package/src/filiale/WEINAN/ChargeQuery.vue +800 -800
- package/src/filiale/WEINAN/EnableQuery.vue +456 -456
- package/src/filiale/WEINAN/StatisticalAnalysis.vue +270 -270
- package/src/filiale/WEINAN/UserAddress.vue +655 -655
- package/src/filiale/WEINAN/UserAddressChange.vue +58 -58
- package/src/filiale/WEINAN/config/exportConfig.js +824 -824
- package/src/filiale/WEINAN/sale.js +54 -54
- package/src/filiale/meihekou/CardHandplanQuery.vue +10 -0
- package/src/main.js +66 -66
- package/.gradle/4.4/fileHashes/fileHashes.bin +0 -0
- package/.gradle/4.4/fileHashes/fileHashes.lock +0 -0
- package/.gradle/7.1/dependencies-accessors/dependencies-accessors.lock +0 -0
- package/.gradle/7.1/dependencies-accessors/gc.properties +0 -0
- package/.gradle/7.1/executionHistory/executionHistory.bin +0 -0
- package/.gradle/7.1/executionHistory/executionHistory.lock +0 -0
- package/.gradle/7.1/fileChanges/last-build.bin +0 -0
- package/.gradle/7.1/fileHashes/fileHashes.bin +0 -0
- package/.gradle/7.1/fileHashes/fileHashes.lock +0 -0
- package/.gradle/7.1/gc.properties +0 -0
- package/.gradle/buildOutputCleanup/outputFiles.bin +0 -0
|
@@ -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><nobr>序号</nobr></th>
|
|
10
|
-
<th><nobr>变更内容</nobr></th>
|
|
11
|
-
<th><nobr>旧值</nobr></th>
|
|
12
|
-
<th><nobr>新值</nobr></th>
|
|
13
|
-
<th><nobr>变更人</nobr></th>
|
|
14
|
-
<th><nobr>变更日期</nobr></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('rs/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>
|
|
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><nobr>序号</nobr></th>
|
|
10
|
+
<th><nobr>变更内容</nobr></th>
|
|
11
|
+
<th><nobr>旧值</nobr></th>
|
|
12
|
+
<th><nobr>新值</nobr></th>
|
|
13
|
+
<th><nobr>变更人</nobr></th>
|
|
14
|
+
<th><nobr>变更日期</nobr></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('rs/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>
|