telephone-clients 4.0.0-1-28 → 4.0.0-1-29

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,87 +1,87 @@
1
- <template>
2
- <div id="pc-finduser-page">
3
- <criteria-paged :model="model" v-ref:paged >
4
- <data-grid :model="model" partial='list' v-ref:grid
5
- class="list_area table_sy">
6
- <template partial='head'>
7
- <tr>
8
- <th><nobr>类型</nobr></th>
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
- <th><nobr>收费状态</nobr></th>
16
- <th><nobr>服务人员</nobr></th>
17
- <th><nobr>操作人</nobr></th>
18
- <th><nobr>操作日期</nobr></th>
19
- <th><nobr>备注</nobr></th>
20
- </tr>
21
- </template>
22
- <template partial='body'>
23
- <td><nobr>{{row.f_brand_spec}}</nobr></td>
24
- <td><nobr>{{row.f_typename}}</nobr></td>
25
- <td><nobr>{{row.f_typenumber}}</nobr></td>
26
- <td><nobr>{{row.f_number}}</nobr></td>
27
- <td><nobr>{{row.f_unitprice}}</nobr></td>
28
- <td><nobr>{{row.f_device_state}}</nobr></td>
29
- <td><nobr>{{row.f_payment}}</nobr></td>
30
- <td><nobr>{{row.f_state}}</nobr></td>
31
- <td><nobr>{{row.f_service_person}}</nobr></td>
32
- <td><nobr>{{row.f_operator}}</nobr></td>
33
- <td><nobr>{{row.f_operate_date}}</nobr></td>
34
- <td><nobr>{{row.f_comments}}</nobr></td>
35
- </template>
36
- </data-grid>
37
- </criteria-paged>
38
- </div>
39
- </template>
40
-
41
- <script>
42
- /**
43
- *用户档案相关信息组件
44
- */
45
- import { PagedList } from 'vue-client'
46
- export default {
47
- title: '其他收费记录',
48
- data () {
49
- return {
50
- model: new PagedList('af-telephone/rs/sql/tel_singleTable_OrderBy', 8, {
51
- items: '"t2.f_brand_spec,t2.f_typename,t2.f_typenumber,t2.f_number,t2.f_unitprice,t2.f_device_state,t1.f_payment,t1.f_state,t1.f_operator,t1.f_operate_date,t1.f_comments,t1.f_service_person"',
52
- tablename: '"t_othercharge t1 left join t_othercharge_detail t2 on t1.id = t2.f_othercharge_id"',
53
- orderitem: '"t1.id desc"'
54
- }),
55
- row: Object,
56
- show:false,
57
- }
58
- },
59
- props: {
60
- user: {
61
- type: Object
62
- },
63
- callObj:{
64
- type: Object
65
- },
66
- clearflg:0
67
- },
68
- methods: {
69
- },
70
- watch : {
71
- 'user' (val) {
72
- this.model.rows = []
73
- this.model.search(`f_userinfo_id = '${this.user.f_userinfo_id}'`)
74
-
75
- },
76
-
77
- 'clearflg'(){
78
- this.model.rows = []
79
- }
80
- },
81
- ready () {
82
- if (this.user && this.user.f_userinfo_id) {
83
- this.model.search(`f_userinfo_id = '${this.user.f_userinfo_id}'`)
84
- }
85
- }
86
- }
87
- </script>
1
+ <template>
2
+ <div id="pc-finduser-page">
3
+ <criteria-paged :model="model" v-ref:paged >
4
+ <data-grid :model="model" partial='list' v-ref:grid
5
+ class="list_area table_sy">
6
+ <template partial='head'>
7
+ <tr>
8
+ <th><nobr>类型</nobr></th>
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
+ <th><nobr>收费状态</nobr></th>
16
+ <th><nobr>服务人员</nobr></th>
17
+ <th><nobr>操作人</nobr></th>
18
+ <th><nobr>操作日期</nobr></th>
19
+ <th><nobr>备注</nobr></th>
20
+ </tr>
21
+ </template>
22
+ <template partial='body'>
23
+ <td><nobr>{{row.f_brand_spec}}</nobr></td>
24
+ <td><nobr>{{row.f_typename}}</nobr></td>
25
+ <td><nobr>{{row.f_typenumber}}</nobr></td>
26
+ <td><nobr>{{row.f_number}}</nobr></td>
27
+ <td><nobr>{{row.f_unitprice}}</nobr></td>
28
+ <td><nobr>{{row.f_device_state}}</nobr></td>
29
+ <td><nobr>{{row.f_payment}}</nobr></td>
30
+ <td><nobr>{{row.f_state}}</nobr></td>
31
+ <td><nobr>{{row.f_service_person}}</nobr></td>
32
+ <td><nobr>{{row.f_operator}}</nobr></td>
33
+ <td><nobr>{{row.f_operate_date}}</nobr></td>
34
+ <td><nobr>{{row.f_comments}}</nobr></td>
35
+ </template>
36
+ </data-grid>
37
+ </criteria-paged>
38
+ </div>
39
+ </template>
40
+
41
+ <script>
42
+ /**
43
+ *用户档案相关信息组件
44
+ */
45
+ import { PagedList } from 'vue-client'
46
+ export default {
47
+ title: '其他收费记录',
48
+ data () {
49
+ return {
50
+ model: new PagedList('af-telephone/rs/sql/tel_singleTable_OrderBy', 8, {
51
+ items: '"t2.f_brand_spec,t2.f_typename,t2.f_typenumber,t2.f_number,t2.f_unitprice,t2.f_device_state,t1.f_payment,t1.f_state,t1.f_operator,t1.f_operate_date,t1.f_comments,t1.f_service_person"',
52
+ tablename: '"t_othercharge t1 left join t_othercharge_detail t2 on t1.id = t2.f_othercharge_id"',
53
+ orderitem: '"t1.id desc"'
54
+ }),
55
+ row: Object,
56
+ show:false,
57
+ }
58
+ },
59
+ props: {
60
+ user: {
61
+ type: Object
62
+ },
63
+ callObj:{
64
+ type: Object
65
+ },
66
+ clearflg:0
67
+ },
68
+ methods: {
69
+ },
70
+ watch : {
71
+ 'user' (val) {
72
+ this.model.rows = []
73
+ this.model.search(`f_userinfo_id = '${this.user.f_userinfo_id}'`)
74
+
75
+ },
76
+
77
+ 'clearflg'(){
78
+ this.model.rows = []
79
+ }
80
+ },
81
+ ready () {
82
+ if (this.user && this.user.f_userinfo_id) {
83
+ this.model.search(`f_userinfo_id = '${this.user.f_userinfo_id}'`)
84
+ }
85
+ }
86
+ }
87
+ </script>