manage-client 3.2.142 → 3.2.145
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 +1 -1
- package/package.json +1 -1
- package/src/components/SellReport/UserFillmoney.vue +1 -1
- package/src/components/sale/businessquery/AccountQuery/AccountListManage.vue +2 -2
- package/src/components/sale/businessquery/AccountQuery/OverdueList.vue +4 -4
- package/src/components/sale/businessquery/ArrearsQuery.vue +10 -10
- package/src/components/sale/businessquery/ChargeQuery.vue +2 -2
- package/src/components/sale/businessquery/GroupChargeQuery.vue +2 -2
- package/src/components/sale/businessquery/HandplanQuery.vue +1 -1
- package/src/components/sale/businessquery/InspectListGas.vue +238 -246
- package/src/components/sale/businessquery/ProceedsOper.vue +4 -4
- package/src/components/sale/businessquery/SellOrgnameQuery.vue +2 -2
- package/src/components/sale/businessquery/SellPeopleQuery.vue +2 -2
- package/src/components/sale/businessquery/UserSellHeadDetail.vue +4 -4
- package/src/components/sale/config/exportConfig.js +12 -12
- package/src/components/sale/filesquery/UserQuery.vue +6 -0
- package/src/components/sale/filesquery/filequerydetail/ChargeQueryDetail.vue +1 -1
- package/src/components/webmeter/DrillData/LostContactAnalysisList.vue +2 -1
- package/src/components/webmeter/DrillData/UserGasEform.vue +1 -1
- package/src/components/webmeter/DrillData/UserLostContactAnalysis.vue +2 -1
- package/src/components/webmeter/recharge/RechargeList.vue +1 -1
- package/src/filiale/WEINAN/manage/ChangeMeterQuery.vue +26 -26
- package/src/filiale/dongguan/components/SellReport/BankManager.vue +146 -0
- package/src/filiale/dongguan/components/SellReport/SiteManager.vue +147 -0
- package/src/filiale/dongguan/components/WebReport/BussinessType.vue +137 -0
- package/src/filiale/dongguan/components/WebReport/Paymentpie.vue +157 -0
- package/src/filiale/dongguan/reportManage.js +21 -0
- package/src/filiale/kelai/UserQuery.vue +963 -0
- package/src/filiale/kelai/exportConfig.js +1062 -0
- package/src/filiale/kelai/sale.js +8 -0
- package/src/filiale/qianneng/ArrearsQuery.vue +2 -2
- package/src/filiale/qianneng/ChargeQuery.vue +2 -2
- package/src/filiale/qianneng/HandplanQuery.vue +1 -1
- package/src/filiale/qianneng/exportConfig.js +3 -3
- package/src/filiale/rongcheng/exportConfig.js +2 -2
- package/.gradle/4.4/fileContent/fileContent.lock +0 -0
- package/.gradle/4.4/taskHistory/taskHistory.bin +0 -0
- package/.gradle/buildOutputCleanup/outputFiles.bin +0 -0
- package/build/libs/ManageClient-3.1.0-17.jar +0 -0
- package/build/tmp/jar/MANIFEST.MF +0 -2
|
@@ -2,260 +2,252 @@
|
|
|
2
2
|
<div id="unit" class="flex-row">
|
|
3
3
|
<div class="basic-main">
|
|
4
4
|
<div class="flex" v-if="!show">
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
<div class="row">
|
|
9
|
-
<div class="col-sm-2">
|
|
10
|
-
<label class="font_normal_body">公  司</label>
|
|
11
|
-
<right-tree @re-res="$parent.$parent.getorg"
|
|
12
|
-
:initresid='$parent.$parent.org'></right-tree>
|
|
13
|
-
</div>
|
|
14
|
-
|
|
15
|
-
<div class="col-sm-2 ">
|
|
16
|
-
<label v-if="$parent.$parent.meter_classify == '卡表'" for="startDate" class="font_normal_body"> 购气开始</label>
|
|
17
|
-
<label v-else for="startDate" class="font_normal_body"> 抄表开始</label>
|
|
18
|
-
<datepicker id="startDate" placeholder="开始日期"
|
|
19
|
-
v-model="model.startDate"
|
|
20
|
-
style="width:60%"
|
|
21
|
-
:value.sync="model.startDate"
|
|
22
|
-
:disabled-days-of-Week="[]"
|
|
23
|
-
:format="'yyyy-MM-dd'"
|
|
24
|
-
:show-reset-button="reset">
|
|
25
|
-
</datepicker>
|
|
26
|
-
</div>
|
|
27
|
-
<div class="col-sm-2 ">
|
|
28
|
-
<label v-if="$parent.$parent.meter_classify == '卡表'" for="startDate" class="font_normal_body"> 购气结束</label>
|
|
29
|
-
<label v-else for="startDate" class="font_normal_body"> 抄表结束</label>
|
|
30
|
-
<datepicker id="endDate" placeholder="结束日期"
|
|
31
|
-
v-model="model.endDate"
|
|
32
|
-
style="width:60%"
|
|
33
|
-
:value.sync="model.endDate"
|
|
34
|
-
:disabled-days-of-Week="[]"
|
|
35
|
-
:format="'yyyy-MM-dd'"
|
|
36
|
-
:show-reset-button="reset">
|
|
37
|
-
</datepicker>
|
|
38
|
-
</div>
|
|
39
|
-
|
|
40
|
-
<div class="col-sm-2 ">
|
|
41
|
-
<label for="f_gasproperties"class="font_normal_body"> 用气性质</label>
|
|
42
|
-
<v-select id="f_gasproperties"
|
|
43
|
-
style="width:60%"
|
|
44
|
-
v-model="model.f_gasproperties"
|
|
45
|
-
placeholder='用气性质'
|
|
46
|
-
:value.sync="model.f_gasproperties"
|
|
47
|
-
:options='$parent.$parent.gasproperties'
|
|
48
|
-
condition="f_gasproperties = '{}'"
|
|
49
|
-
close-on-select >
|
|
50
|
-
</v-select>
|
|
51
|
-
</div>
|
|
52
|
-
|
|
53
|
-
<div class="span" style="float:right;">
|
|
54
|
-
<button class="btn button_search" @click="search()">查询</button>
|
|
55
|
-
<button class="btn button_clear" @click="$parent.$parent.clear()">清空</button>
|
|
56
|
-
<export-excel :data="$parent.$parent.getCondition"
|
|
57
|
-
:field="$parent.$parent.getfield"
|
|
58
|
-
:footer="$parent.$parent.footer"
|
|
59
|
-
:header="$parent.$parent.other"
|
|
60
|
-
sqlurl="rs/logic/exportfile"
|
|
61
|
-
:sql-name="$parent.$parent.sqlName"
|
|
62
|
-
template-name='购气稽查导出' :choose-col="true"></export-excel>
|
|
63
|
-
<print-data :model="$parent.model" :field="$parent.$parent.getfield" :defaultfield="$parent.$parent.defaultfield" print-name="稽查查询打印" :sumsmodel="$parent.$parent.sumsmodel" ></print-data>
|
|
64
|
-
<div style="float: right" class="button_spacing" :class="{'button_shrink_top':$parent.$parent.criteriaShow,'button_shrink_bottom':!$parent.$parent.criteriaShow}" @click="$parent.$parent.hidden()"></div>
|
|
65
|
-
|
|
66
|
-
</div>
|
|
67
|
-
</div>
|
|
68
|
-
<div class="row" v-show="$parent.$parent.criteriaShow">
|
|
69
|
-
<div class="col-sm-2 flex-row">
|
|
70
|
-
<label class="font_normal_body" title="旧客户编号">档案编号</label>
|
|
71
|
-
<input type="text" style="width:60%" class="input_search" v-model="model.f_olduserinfo_code"
|
|
72
|
-
condition="f_olduserinfo_code = '{}' " placeholder="档案编号">
|
|
73
|
-
</div>
|
|
74
|
-
<div v-if="$parent.$parent.meter_classify == '卡表'" class="col-sm-2 flex-row" style="white-space: nowrap">
|
|
75
|
-
<label class="font_normal_body"> 期间次数 </label>
|
|
5
|
+
<criteria-paged :model="model" v-ref:paged>
|
|
6
|
+
<criteria partial='criteria' @condition-changed='$parent.selfSearch' v-ref:cri>
|
|
7
|
+
<div novalidate class="form-horizontal select-overspread container-fluid auto" partial >
|
|
76
8
|
<div class="row">
|
|
77
|
-
<
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
</div>
|
|
9
|
+
<div class="col-sm-2">
|
|
10
|
+
<label class="font_normal_body">公   司</label>
|
|
11
|
+
<right-tree @re-res="$parent.$parent.getorg"
|
|
12
|
+
:initresid='$parent.$parent.org'></right-tree>
|
|
13
|
+
</div>
|
|
83
14
|
|
|
15
|
+
<div class="col-sm-2 ">
|
|
16
|
+
<label v-if="$parent.$parent.meter_classify == '卡表'" for="startDate" class="font_normal_body"> 购气开始</label>
|
|
17
|
+
<label v-else for="startDate" class="font_normal_body"> 抄表开始</label>
|
|
18
|
+
<datepicker id="startDate" placeholder="开始日期"
|
|
19
|
+
v-model="model.startDate"
|
|
20
|
+
style="width:60%"
|
|
21
|
+
:value.sync="model.startDate"
|
|
22
|
+
:disabled-days-of-Week="[]"
|
|
23
|
+
:format="'yyyy-MM-dd'"
|
|
24
|
+
:show-reset-button="reset">
|
|
25
|
+
</datepicker>
|
|
26
|
+
</div>
|
|
27
|
+
<div class="col-sm-2 ">
|
|
28
|
+
<label v-if="$parent.$parent.meter_classify == '卡表'" for="startDate" class="font_normal_body"> 购气结束</label>
|
|
29
|
+
<label v-else for="startDate" class="font_normal_body"> 抄表结束</label>
|
|
30
|
+
<datepicker id="endDate" placeholder="结束日期"
|
|
31
|
+
v-model="model.endDate"
|
|
32
|
+
style="width:60%"
|
|
33
|
+
:value.sync="model.endDate"
|
|
34
|
+
:disabled-days-of-Week="[]"
|
|
35
|
+
:format="'yyyy-MM-dd'"
|
|
36
|
+
:show-reset-button="reset">
|
|
37
|
+
</datepicker>
|
|
38
|
+
</div>
|
|
39
|
+
<div class="col-sm-2 ">
|
|
40
|
+
<label for="f_meter_classify"class="font_normal_body">  表类型</label>
|
|
41
|
+
<v-select id="f_meter_classify"
|
|
42
|
+
v-model="$parent.$parent.meter_classify"
|
|
43
|
+
placeholder='表类型'
|
|
44
|
+
style="width:70%"
|
|
45
|
+
:value.sync="$parent.$parent.meter_classify"
|
|
46
|
+
:options='$parent.$parent.f_meter_classify'
|
|
47
|
+
condition="f_meter_type like '%{}'"
|
|
48
|
+
:value-single="true"
|
|
49
|
+
close-on-select >
|
|
50
|
+
</v-select>
|
|
51
|
+
</div>
|
|
52
|
+
<div class="span" style="float:right;">
|
|
53
|
+
<button class="btn button_search" @click="search()">查询</button>
|
|
54
|
+
<button class="btn button_clear" @click="$parent.$parent.clear()">清空</button>
|
|
55
|
+
<export-excel :data="$parent.$parent.getCondition"
|
|
56
|
+
:field="$parent.$parent.getfield"
|
|
57
|
+
:footer="$parent.$parent.footer"
|
|
58
|
+
:header="$parent.$parent.other"
|
|
59
|
+
sqlurl="rs/logic/exportfile"
|
|
60
|
+
:sql-name="$parent.$parent.sqlName"
|
|
61
|
+
template-name='购气稽查导出' :choose-col="true"></export-excel>
|
|
62
|
+
<print-data :model="$parent.model" :field="$parent.$parent.getfield" :defaultfield="$parent.$parent.defaultfield" print-name="稽查查询打印" :sumsmodel="$parent.$parent.sumsmodel" ></print-data>
|
|
63
|
+
<div style="float: right" class="button_spacing" :class="{'button_shrink_top':$parent.$parent.criteriaShow,'button_shrink_bottom':!$parent.$parent.criteriaShow}" @click="$parent.$parent.hidden()"></div>
|
|
84
64
|
|
|
85
|
-
|
|
86
|
-
<div v-if="$parent.$parent.meter_classify == '机表'" class="col-sm-2 flex-row" style="white-space: nowrap">
|
|
87
|
-
<label class="font_normal_body"> 期间次数 </label>
|
|
88
|
-
<div class="row">
|
|
89
|
-
<input type="text" style="width:30%" class="input_search" v-model="model.handsellcishumin"
|
|
90
|
-
condition="sellcishu >= {} " placeholder="">
|
|
91
|
-
<label class="font_normal_body"> ≤ x ≤ </label>
|
|
92
|
-
<input type="text" style="width:30%" class="input_search" v-model="model.handsellcishumax"
|
|
93
|
-
condition="sellcishu <= {} " placeholder="">
|
|
65
|
+
</div>
|
|
94
66
|
</div>
|
|
67
|
+
<div class="row" v-show="$parent.$parent.criteriaShow">
|
|
68
|
+
<div class="col-sm-2 ">
|
|
69
|
+
<label for="f_gasproperties"class="font_normal_body"> 用气性质</label>
|
|
70
|
+
<v-select id="f_gasproperties"
|
|
71
|
+
style="width:60%"
|
|
72
|
+
v-model="model.f_gasproperties"
|
|
73
|
+
placeholder='用气性质'
|
|
74
|
+
:value.sync="model.f_gasproperties"
|
|
75
|
+
:options='$parent.$parent.gasproperties'
|
|
76
|
+
condition="f_gasproperties = '{}'"
|
|
77
|
+
close-on-select >
|
|
78
|
+
</v-select>
|
|
79
|
+
</div>
|
|
80
|
+
<div class="col-sm-2">
|
|
81
|
+
<label class="font_normal_body" title="旧客户编号"> 档案编号</label>
|
|
82
|
+
<input type="text" style="width:60%" class="input_search" v-model="model.f_olduserinfo_code"
|
|
83
|
+
condition="f_olduserinfo_code = '{}' " placeholder="档案编号">
|
|
84
|
+
</div>
|
|
85
|
+
<div class="col-sm-2 ">
|
|
86
|
+
<label for="contain_newfile" class="font_normal_body">包含新开户</label>
|
|
87
|
+
<v-select id="contain_newfile"
|
|
88
|
+
v-model="model.contain_newfile"
|
|
89
|
+
style="width:60%"
|
|
90
|
+
:value.sync="model.contain_newfile"
|
|
91
|
+
:options='$parent.$parent.contain_newfiles'
|
|
92
|
+
:value-single="true"
|
|
93
|
+
close-on-select >
|
|
94
|
+
</v-select>
|
|
95
|
+
</div>
|
|
96
|
+
<div class="col-sm-2" >
|
|
97
|
+
<label for="f_user_state" class="font_normal_body"> 客户状态</label>
|
|
98
|
+
<v-select :value.sync="model.f_user_state"
|
|
99
|
+
v-model="model.f_user_state"
|
|
100
|
+
:options='$parent.$parent.userstate' placeholder='请选择'
|
|
101
|
+
condition="f_user_state = '{}'"
|
|
102
|
+
close-on-select></v-select>
|
|
103
|
+
</div>
|
|
104
|
+
<div class="col-sm-2 ">
|
|
105
|
+
<label for="f_table_state"class="font_normal_body">  表状态</label>
|
|
106
|
+
<v-select id="f_table_state"
|
|
107
|
+
style="width:60%"
|
|
108
|
+
v-model="model.f_table_state"
|
|
109
|
+
placeholder='表状态'
|
|
110
|
+
:value.sync="model.f_table_state"
|
|
111
|
+
:options='$parent.$parent.tablestate'
|
|
112
|
+
condition="f_table_state = '{}'"
|
|
113
|
+
close-on-select >
|
|
114
|
+
</v-select>
|
|
115
|
+
</div>
|
|
95
116
|
|
|
96
|
-
|
|
117
|
+
<div class="col-sm-2">
|
|
118
|
+
<label class="font_normal_body">   表号</label>
|
|
119
|
+
<input type="text" style="width:60%" class="input_search" v-model="model.f_meternumber"
|
|
120
|
+
condition="f_meternumber = '{}'" placeholder='表号'>
|
|
121
|
+
</div>
|
|
122
|
+
<div class="col-sm-2 ">
|
|
123
|
+
<label class="font_normal_body"> 用户类型</label>
|
|
124
|
+
<v-select :value.sync="model.f_user_type"
|
|
125
|
+
@change="$parent.$parent.userTypeChange()"
|
|
126
|
+
:options='$parent.$parent.usertypes' placeholder='请选择' v-model="model.f_user_type"
|
|
127
|
+
condition="f_user_type = '{}'"
|
|
128
|
+
close-on-select></v-select>
|
|
129
|
+
</div>
|
|
97
130
|
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
<
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
131
|
+
<div class="col-sm-2">
|
|
132
|
+
<label class="font_normal_body"> 客户名称</label>
|
|
133
|
+
<input type="text" style="width:60%" class="input_search" v-model="model.f_user_name"
|
|
134
|
+
condition="f_user_name like '%{}%'" placeholder="客户名称">
|
|
135
|
+
</div>
|
|
136
|
+
<div class="col-sm-2">
|
|
137
|
+
<label class="font_normal_body"> 客户编号</label>
|
|
138
|
+
<input type="text" style="width:60%" class="input_search" v-model="model.f_userinfo_code"
|
|
139
|
+
condition="f_userinfo_code = '{}' " placeholder="客户编号">
|
|
140
|
+
</div>
|
|
141
|
+
<div class="col-sm-2">
|
|
142
|
+
<label class="font_normal_body"> 客户地址</label>
|
|
143
|
+
<input type="text" style="width:60%" class="input_search" v-model="model.f_address"
|
|
144
|
+
condition="f_address like '%{}%'" placeholder='客户地址'>
|
|
145
|
+
</div>
|
|
146
|
+
<div class="col-sm-2">
|
|
147
|
+
<label class="font_normal_body"> 客户电话</label>
|
|
148
|
+
<input type="text" style="width:60%" class="input_search" v-model="model.f_user_phone"
|
|
149
|
+
condition="f_user_phone like '%{}%'" placeholder="客户电话">
|
|
150
|
+
</div>
|
|
107
151
|
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
152
|
+
<div v-if="$parent.$parent.meter_classify == '卡表'" class="col-sm-2 flex-row" style="white-space: nowrap">
|
|
153
|
+
<label class="font_normal_body"> 期间次数</label>
|
|
154
|
+
<div class="row">
|
|
155
|
+
<input type="text" style="width:30%" class="input_search" v-model="model.sellcishumin"
|
|
156
|
+
condition="sellcishu >= {} " placeholder="">
|
|
157
|
+
<label class="font_normal_body"> ≤ x ≤ </label>
|
|
158
|
+
<input type="text" style="width:30%" class="input_search" v-model="model.sellcishumax"
|
|
159
|
+
condition="sellcishu <= {} " placeholder="">
|
|
160
|
+
</div>
|
|
161
|
+
</div>
|
|
162
|
+
<div v-if="$parent.$parent.meter_classify == '机表'" class="col-sm-2 flex-row" style="white-space: nowrap">
|
|
163
|
+
<label class="font_normal_body"> 期间次数</label>
|
|
164
|
+
<div class="row">
|
|
165
|
+
<input type="text" style="width:30%" class="input_search" v-model="model.handsellcishumin"
|
|
166
|
+
condition="sellcishu >= {} " placeholder="">
|
|
167
|
+
<label class="font_normal_body"> ≤ x ≤ </label>
|
|
168
|
+
<input type="text" style="width:30%" class="input_search" v-model="model.handsellcishumax"
|
|
169
|
+
condition="sellcishu <= {} " placeholder="">
|
|
170
|
+
</div>
|
|
171
|
+
</div>
|
|
172
|
+
<div v-if="$parent.$parent.meter_classify == '卡表'" class="col-sm-2 flex-row" style="white-space: nowrap">
|
|
173
|
+
<label class="font_normal_body">期间购气量</label>
|
|
174
|
+
<div class="row">
|
|
175
|
+
<input type="text" style="width:30%" class="input_search" v-model="model.sellpregasmin"
|
|
176
|
+
condition="sellpregas >= {} " placeholder="">
|
|
177
|
+
<label class="font_normal_body"> ≤ x ≤ </label>
|
|
178
|
+
<input type="text" style="width:30%" class="input_search" v-model="model.sellpregasmax"
|
|
179
|
+
condition="sellpregas <= {} " placeholder="">
|
|
180
|
+
</div>
|
|
181
|
+
</div>
|
|
182
|
+
<div v-if="$parent.$parent.meter_classify == '机表'" class="col-sm-2 flex-row" style="white-space: nowrap">
|
|
183
|
+
<label class="font_normal_body">期间用气量</label>
|
|
184
|
+
<div class="row">
|
|
185
|
+
<input type="text" style="width:30%" class="input_search" v-model="model.handsellpregasmin"
|
|
186
|
+
condition="sellpregas >= {} " placeholder="">
|
|
187
|
+
<label class="font_normal_body"> ≤ x ≤ </label>
|
|
188
|
+
<input type="text" style="width:30%" class="input_search" v-model="model.handsellpregasmax"
|
|
189
|
+
condition="sellpregas <= {} " placeholder="">
|
|
190
|
+
</div>
|
|
191
|
+
</div>
|
|
117
192
|
</div>
|
|
118
193
|
</div>
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
<
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
<
|
|
166
|
-
<
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
<
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
</div>
|
|
177
|
-
|
|
178
|
-
<div class="col-sm-2">
|
|
179
|
-
<label class="font_normal_body"> 客户名称</label>
|
|
180
|
-
<input type="text" style="width:60%" class="input_search" v-model="model.f_user_name"
|
|
181
|
-
condition="f_user_name like '%{}%'" placeholder="客户名称">
|
|
182
|
-
</div>
|
|
183
|
-
<div class="col-sm-2">
|
|
184
|
-
<label class="font_normal_body"> 客户编号</label>
|
|
185
|
-
<input type="text" style="width:60%" class="input_search" v-model="model.f_userinfo_code"
|
|
186
|
-
condition="f_userinfo_code = '{}' " placeholder="客户编号">
|
|
187
|
-
</div>
|
|
188
|
-
<div class="col-sm-2">
|
|
189
|
-
<label class="font_normal_body"> 客户地址</label>
|
|
190
|
-
<input type="text" style="width:60%" class="input_search" v-model="model.f_address"
|
|
191
|
-
condition="f_address like '%{}%'" placeholder='客户地址'>
|
|
192
|
-
</div>
|
|
193
|
-
<div class="col-sm-2">
|
|
194
|
-
<label class="font_normal_body"> 客户电话</label>
|
|
195
|
-
<input type="text" style="width:60%" class="input_search" v-model="model.f_user_phone"
|
|
196
|
-
condition="f_user_phone like '%{}%'" placeholder="客户电话">
|
|
197
|
-
</div>
|
|
198
|
-
|
|
199
|
-
</div>
|
|
200
|
-
|
|
201
|
-
</div>
|
|
202
|
-
</criteria>
|
|
203
|
-
<data-grid :model="model" partial='list' class="list_area table_sy" v-ref:grid>
|
|
204
|
-
<template partial='head'>
|
|
205
|
-
<tr>
|
|
206
|
-
<th><nobr>序号</nobr></th>
|
|
207
|
-
<th><nobr>客户编号</nobr></th>
|
|
208
|
-
<th><nobr>客户电话</nobr></th>
|
|
209
|
-
<th><nobr>档案编号</nobr></th>
|
|
210
|
-
<th><nobr>表号</nobr></th>
|
|
211
|
-
<th><nobr>客户名称</nobr></th>
|
|
212
|
-
<th><nobr>客户状态</nobr></th>
|
|
213
|
-
<th><nobr>地址</nobr></th>
|
|
214
|
-
<th><nobr>用户类型</nobr></th>
|
|
215
|
-
<th><nobr>用气性质</nobr></th>
|
|
216
|
-
<th><nobr>表具状态</nobr></th>
|
|
217
|
-
<th><nobr>气表品牌</nobr></th>
|
|
218
|
-
<th><nobr>气价名称</nobr></th>
|
|
219
|
-
<th><nobr>最后购气日期</nobr></th>
|
|
220
|
-
<!-- <th v-show="$parent.$parent.$parent.meter_classify == '卡表'"><nobr>总购气次数</nobr></th>-->
|
|
221
|
-
<!-- <th v-show="$parent.$parent.$parent.meter_classify == '机表'"><nobr>总抄表次数</nobr></th>-->
|
|
222
|
-
<!-- <th v-show="$parent.$parent.$parent.meter_classify == '卡表'"><nobr>总购气量</nobr></th>-->
|
|
223
|
-
<!-- <th v-show="$parent.$parent.$parent.meter_classify == '机表'"><nobr>总抄表气量</nobr></th>-->
|
|
224
|
-
<th v-show="$parent.$parent.$parent.meter_classify == '卡表' || $parent.$parent.$parent.meter_classify =='物联网表'"><nobr>期间购气次数</nobr></th>
|
|
225
|
-
<th v-show="$parent.$parent.$parent.meter_classify == '机表'"><nobr>期间抄表次数</nobr></th>
|
|
226
|
-
<th v-show="$parent.$parent.$parent.meter_classify == '卡表' || $parent.$parent.$parent.meter_classify == '物联网表'"><nobr>期间购气量</nobr></th>
|
|
227
|
-
<th v-show="$parent.$parent.$parent.meter_classify == '机表'"><nobr>期间抄表气量</nobr></th>
|
|
228
|
-
<!-- <th v-show="$parent.$parent.$parent.meter_classify == '卡表'"><nobr>累计未购气天数</nobr></th>-->
|
|
229
|
-
<!-- <th v-show="$parent.$parent.$parent.meter_classify == '机表'"><nobr>累计未抄表天数</nobr></th>-->
|
|
230
|
-
<th><nobr>组织机构</nobr></th>
|
|
231
|
-
</tr>
|
|
232
|
-
</template>
|
|
233
|
-
<template partial='body'>
|
|
234
|
-
<td style="text-align: center;"><nobr>{{$index+1}}</nobr></td>
|
|
235
|
-
<td style="text-align: center;"><nobr>
|
|
236
|
-
<span @click="$parent.$parent.$parent.showmsg(row)"><a>{{row.f_userinfo_code}}</a></span>
|
|
237
|
-
</nobr> </td>
|
|
238
|
-
<td style="text-align: center;"><nobr>{{row.f_user_phone}}</nobr></td>
|
|
239
|
-
<td style="text-align: center;"><nobr>{{row.f_olduserinfo_code}}</nobr></td>
|
|
240
|
-
<td style="text-align: center;"><nobr>{{row.f_meternumber}}</nobr></td>
|
|
241
|
-
<th style="text-align: center;"><nobr>{{row.f_user_name}}</nobr></th>
|
|
242
|
-
<th style="text-align: center;"><nobr>{{row.f_user_state}}</nobr></th>
|
|
243
|
-
<th style="text-align: center;"><nobr>{{row.f_address}}</nobr></th>
|
|
244
|
-
<th style="text-align: center;"><nobr>{{row.f_user_type}}</nobr></th>
|
|
245
|
-
<th style="text-align: center;"><nobr>{{row.f_gasproperties}}</nobr></th>
|
|
246
|
-
<th style="text-align: center;"><nobr>{{row.f_table_state}}</nobr></th>
|
|
247
|
-
<th style="text-align: center;"><nobr>{{row.f_meter_brand}}</nobr></th>
|
|
248
|
-
<th style="text-align: center;"><nobr>{{row.f_price_name}}</nobr></th>
|
|
249
|
-
<th style="text-align: center;"><nobr>{{row.delivery_date}}</nobr></th>
|
|
250
|
-
<!-- <th style="text-align: center;"><nobr>{{row.cishu}}</nobr></th>-->
|
|
251
|
-
<!-- <th style="text-align: center;"><nobr>{{row.pregas}}</nobr></th>-->
|
|
252
|
-
<th style="text-align: center;"><nobr>{{row.sellcishu}}</nobr></th>
|
|
253
|
-
<th style="text-align: center;"><nobr>{{row.sellpregas}}</nobr></th>
|
|
254
|
-
<!-- <th style="text-align: center;"><nobr>{{row.diffday}}</nobr></th>-->
|
|
255
|
-
<th style="text-align: center;"><nobr>{{row.f_orgname}}</nobr></th>
|
|
256
|
-
</template>
|
|
257
|
-
</data-grid>
|
|
258
|
-
</criteria-paged>
|
|
194
|
+
</criteria>
|
|
195
|
+
<data-grid :model="model" partial='list' class="list_area table_sy" v-ref:grid>
|
|
196
|
+
<template partial='head'>
|
|
197
|
+
<tr>
|
|
198
|
+
<th><nobr>序号</nobr></th>
|
|
199
|
+
<th><nobr>客户编号</nobr></th>
|
|
200
|
+
<th><nobr>客户电话</nobr></th>
|
|
201
|
+
<th><nobr>档案编号</nobr></th>
|
|
202
|
+
<th><nobr>表号</nobr></th>
|
|
203
|
+
<th><nobr>客户名称</nobr></th>
|
|
204
|
+
<th><nobr>客户状态</nobr></th>
|
|
205
|
+
<th><nobr>地址</nobr></th>
|
|
206
|
+
<th><nobr>用户类型</nobr></th>
|
|
207
|
+
<th><nobr>用气性质</nobr></th>
|
|
208
|
+
<th><nobr>表具状态</nobr></th>
|
|
209
|
+
<th><nobr>气表品牌</nobr></th>
|
|
210
|
+
<th><nobr>气价名称</nobr></th>
|
|
211
|
+
<th><nobr>最后购气日期</nobr></th>
|
|
212
|
+
<!-- <th v-show="$parent.$parent.$parent.meter_classify == '卡表'"><nobr>总购气次数</nobr></th>-->
|
|
213
|
+
<!-- <th v-show="$parent.$parent.$parent.meter_classify == '机表'"><nobr>总抄表次数</nobr></th>-->
|
|
214
|
+
<!-- <th v-show="$parent.$parent.$parent.meter_classify == '卡表'"><nobr>总购气量</nobr></th>-->
|
|
215
|
+
<!-- <th v-show="$parent.$parent.$parent.meter_classify == '机表'"><nobr>总抄表气量</nobr></th>-->
|
|
216
|
+
<th v-show="$parent.$parent.$parent.meter_classify == '卡表' || $parent.$parent.$parent.meter_classify =='物联网表'"><nobr>期间购气次数</nobr></th>
|
|
217
|
+
<th v-show="$parent.$parent.$parent.meter_classify == '机表'"><nobr>期间抄表次数</nobr></th>
|
|
218
|
+
<th v-show="$parent.$parent.$parent.meter_classify == '卡表' || $parent.$parent.$parent.meter_classify == '物联网表'"><nobr>期间购气量</nobr></th>
|
|
219
|
+
<th v-show="$parent.$parent.$parent.meter_classify == '机表'"><nobr>期间抄表气量</nobr></th>
|
|
220
|
+
<!-- <th v-show="$parent.$parent.$parent.meter_classify == '卡表'"><nobr>累计未购气天数</nobr></th>-->
|
|
221
|
+
<!-- <th v-show="$parent.$parent.$parent.meter_classify == '机表'"><nobr>累计未抄表天数</nobr></th>-->
|
|
222
|
+
<th><nobr>组织机构</nobr></th>
|
|
223
|
+
</tr>
|
|
224
|
+
</template>
|
|
225
|
+
<template partial='body'>
|
|
226
|
+
<td style="text-align: center;"><nobr>{{$index+1}}</nobr></td>
|
|
227
|
+
<td style="text-align: center;"><nobr>
|
|
228
|
+
<span @click="$parent.$parent.$parent.showmsg(row)"><a>{{row.f_userinfo_code}}</a></span>
|
|
229
|
+
</nobr> </td>
|
|
230
|
+
<td style="text-align: center;"><nobr>{{row.f_user_phone}}</nobr></td>
|
|
231
|
+
<td style="text-align: center;"><nobr>{{row.f_olduserinfo_code}}</nobr></td>
|
|
232
|
+
<td style="text-align: center;"><nobr>{{row.f_meternumber}}</nobr></td>
|
|
233
|
+
<th style="text-align: center;"><nobr>{{row.f_user_name}}</nobr></th>
|
|
234
|
+
<th style="text-align: center;"><nobr>{{row.f_user_state}}</nobr></th>
|
|
235
|
+
<th style="text-align: center;"><nobr>{{row.f_address}}</nobr></th>
|
|
236
|
+
<th style="text-align: center;"><nobr>{{row.f_user_type}}</nobr></th>
|
|
237
|
+
<th style="text-align: center;"><nobr>{{row.f_gasproperties}}</nobr></th>
|
|
238
|
+
<th style="text-align: center;"><nobr>{{row.f_table_state}}</nobr></th>
|
|
239
|
+
<th style="text-align: center;"><nobr>{{row.f_meter_brand}}</nobr></th>
|
|
240
|
+
<th style="text-align: center;"><nobr>{{row.f_price_name}}</nobr></th>
|
|
241
|
+
<th style="text-align: center;"><nobr>{{row.delivery_date}}</nobr></th>
|
|
242
|
+
<!-- <th style="text-align: center;"><nobr>{{row.cishu}}</nobr></th>-->
|
|
243
|
+
<!-- <th style="text-align: center;"><nobr>{{row.pregas}}</nobr></th>-->
|
|
244
|
+
<th style="text-align: center;"><nobr>{{row.sellcishu}}</nobr></th>
|
|
245
|
+
<th style="text-align: center;"><nobr>{{row.sellpregas}}</nobr></th>
|
|
246
|
+
<!-- <th style="text-align: center;"><nobr>{{row.diffday}}</nobr></th>-->
|
|
247
|
+
<th style="text-align: center;"><nobr>{{row.f_orgname}}</nobr></th>
|
|
248
|
+
</template>
|
|
249
|
+
</data-grid>
|
|
250
|
+
</criteria-paged>
|
|
259
251
|
<table class="table-hover">
|
|
260
252
|
<tr style="position: relative" class="table-bordered">
|
|
261
253
|
<td style="display: inline-block;width: auto;border-right: 1px solid #F2F6FA;padding: 0px 10px 0px 10px;color: #5CB95C;font-weight: bold">汇总信息</td>
|
|
@@ -265,7 +257,7 @@
|
|
|
265
257
|
<td v-if="meter_classify == '机表'" style="display: inline-block;width: auto;border-right: 1px solid #F2F6FA;padding: 0px 10px 0px 10px;font-weight: bold">期间抄表气量合计: {{sumsmodel.sellpregas}}</td>
|
|
266
258
|
</tr>
|
|
267
259
|
</table>
|
|
268
|
-
|
|
260
|
+
</div>
|
|
269
261
|
<div class="flex" v-if="show">
|
|
270
262
|
<user-info-detail-manage-new :f_userinfo_id="rowdata.f_userinfo_id" @cancel-main="cancel"></user-info-detail-manage-new>
|
|
271
263
|
</div>
|
|
@@ -79,7 +79,7 @@
|
|
|
79
79
|
<nobr>本期结余</nobr>
|
|
80
80
|
</th>
|
|
81
81
|
<th>
|
|
82
|
-
<nobr
|
|
82
|
+
<nobr>气费违约金</nobr>
|
|
83
83
|
</th>
|
|
84
84
|
<th>
|
|
85
85
|
<nobr>退费</nobr>
|
|
@@ -91,7 +91,7 @@
|
|
|
91
91
|
<nobr>冲正金额</nobr>
|
|
92
92
|
</th>
|
|
93
93
|
<th>
|
|
94
|
-
<nobr
|
|
94
|
+
<nobr>冲正违约金</nobr>
|
|
95
95
|
</th>
|
|
96
96
|
<th>
|
|
97
97
|
<nobr>发卡数</nobr>
|
|
@@ -154,7 +154,7 @@
|
|
|
154
154
|
售气金额合计: {{sumsmodel.f_preamount}}
|
|
155
155
|
</td>
|
|
156
156
|
<td style="display: inline-block;width: auto;border-right: 1px solid #F2F6FA;padding: 0px 10px 0px 10px;font-weight: bold">
|
|
157
|
-
|
|
157
|
+
气费违约金合计: {{sumsmodel.f_delaypay}}
|
|
158
158
|
</td>
|
|
159
159
|
<td style="display: inline-block;width: auto;border-right: 1px solid #F2F6FA;padding: 0px 10px 0px 10px;font-weight: bold">
|
|
160
160
|
退费合计: {{sumsmodel.f_returnfee}}
|
|
@@ -166,7 +166,7 @@
|
|
|
166
166
|
冲正金额合计: {{sumsmodel.f_czpreamount}}
|
|
167
167
|
</td>
|
|
168
168
|
<td style="display: inline-block;width: auto;border-right: 1px solid #F2F6FA;padding: 0px 10px 0px 10px;font-weight: bold">
|
|
169
|
-
|
|
169
|
+
冲正违约金合计: {{sumsmodel.f_czdelaypay}}
|
|
170
170
|
</td>
|
|
171
171
|
<td style="display: inline-block;width: auto;border-right: 1px solid #F2F6FA;padding: 0px 10px 0px 10px;font-weight: bold">
|
|
172
172
|
发卡数合计: {{sumsmodel.fkcardnum}}
|
|
@@ -209,7 +209,7 @@
|
|
|
209
209
|
<nobr>退费金额</nobr>
|
|
210
210
|
</th>
|
|
211
211
|
<th>
|
|
212
|
-
<nobr
|
|
212
|
+
<nobr>已交违约金</nobr>
|
|
213
213
|
</th>
|
|
214
214
|
<th title="合计金额 = 实收金额 + 其他费">
|
|
215
215
|
<nobr>合计金额</nobr>
|
|
@@ -309,7 +309,7 @@
|
|
|
309
309
|
退费金额合计: {{sumsmodel.tuifei_fee}}
|
|
310
310
|
</td>
|
|
311
311
|
<td style="display: inline-block;width: auto;border-right: 1px solid #F2F6FA;padding: 0px 10px 0px 10px;font-weight: bold">
|
|
312
|
-
|
|
312
|
+
已交违约金合计: {{sumsmodel.f_delaypay}}
|
|
313
313
|
</td>
|
|
314
314
|
<td style="display: inline-block;width: auto;border-right: 1px solid #F2F6FA;padding: 0px 10px 0px 10px;font-weight: bold">
|
|
315
315
|
总合计: {{sumsmodel.f_heji}}
|
|
@@ -212,7 +212,7 @@
|
|
|
212
212
|
<nobr>退费金额</nobr>
|
|
213
213
|
</th>
|
|
214
214
|
<th>
|
|
215
|
-
<nobr
|
|
215
|
+
<nobr>已交违约金</nobr>
|
|
216
216
|
</th>
|
|
217
217
|
<th title="合计金额 = 实收金额 + 其他费">
|
|
218
218
|
<nobr>合计金额</nobr>
|
|
@@ -312,7 +312,7 @@
|
|
|
312
312
|
退费金额合计: {{sumsmodel.tuifei_fee}}
|
|
313
313
|
</td>
|
|
314
314
|
<td style="display: inline-block;width: auto;border-right: 1px solid #F2F6FA;padding: 0px 10px 0px 10px;font-weight: bold">
|
|
315
|
-
|
|
315
|
+
已交违约金合计: {{sumsmodel.f_delaypay}}
|
|
316
316
|
</td>
|
|
317
317
|
<td style="display: inline-block;width: auto;border-right: 1px solid #F2F6FA;padding: 0px 10px 0px 10px;font-weight: bold">
|
|
318
318
|
总合计: {{sumsmodel.f_heji}}
|
|
@@ -152,10 +152,10 @@
|
|
|
152
152
|
<nobr>未收气费</nobr>
|
|
153
153
|
</th>
|
|
154
154
|
<th>
|
|
155
|
-
<nobr
|
|
155
|
+
<nobr>已收违约金</nobr>
|
|
156
156
|
</th>
|
|
157
157
|
<th>
|
|
158
|
-
<nobr
|
|
158
|
+
<nobr>违约金减免</nobr>
|
|
159
159
|
</th>
|
|
160
160
|
<th>
|
|
161
161
|
<nobr>超用收费</nobr>
|
|
@@ -262,10 +262,10 @@
|
|
|
262
262
|
未收合计: {{sumsmodel.f_w_money}}
|
|
263
263
|
</td>
|
|
264
264
|
<td style="display: inline-block;width: auto;border-right: 1px solid #F2F6FA;padding: 0px 10px 0px 10px;font-weight: bold">
|
|
265
|
-
|
|
265
|
+
已交违约金合计: {{sumsmodel.f_delaypay}}
|
|
266
266
|
</td>
|
|
267
267
|
<td style="display: inline-block;width: auto;border-right: 1px solid #F2F6FA;padding: 0px 10px 0px 10px;font-weight: bold">
|
|
268
|
-
|
|
268
|
+
违约金减免合计: {{sumsmodel.f_reduction_fee}}
|
|
269
269
|
</td>
|
|
270
270
|
<td style="display: inline-block;width: auto;border-right: 1px solid #F2F6FA;padding: 0px 10px 0px 10px;font-weight: bold">
|
|
271
271
|
超用合计: {{sumsmodel.f_h_fee}}
|