sale-client 3.6.60 → 3.6.61

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,5 +1,5 @@
1
1
  var path = require('path')
2
- const [localUrl, serverRul] = ['https://qnjtkf.cn:8400/', 'https://qnjtkf.cn:8400/']
2
+ const [localUrl, serverRul] = [ 'http://127.0.0.1:8080/', 'http://140.249.18.101:8400/']
3
3
  var merge = require('webpack-merge')
4
4
  var baseConfig = require('./webpack.dev.conf')
5
5
  var devConfig = {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sale-client",
3
- "version": "3.6.60",
3
+ "version": "3.6.61",
4
4
  "description": "收费模块前台组件",
5
5
  "main": "src/index.js",
6
6
  "scripts": {
@@ -14,8 +14,7 @@
14
14
  v-model="model.startDate"
15
15
  :value.sync="model.startDate"
16
16
  :format="'yyyy-MM-dd HH:mm:ss'"
17
- :show-reset-button="true"
18
- condition="f_input_date >= '{}'">
17
+ :show-reset-button="true">
19
18
  </datepicker>
20
19
  </div>
21
20
  <div class="col-sm-2 form-group">
@@ -24,8 +23,7 @@
24
23
  v-model="model.endDate"
25
24
  :value.sync="model.endDate"
26
25
  :format="'yyyy-MM-dd HH:mm:ss'"
27
- :show-reset-button="true"
28
- condition="f_input_date <= '{}'">
26
+ :show-reset-button="true">
29
27
  </datepicker>
30
28
  </div>
31
29
  <div class="col-sm-2 form-group">
@@ -71,13 +69,16 @@
71
69
  <nobr>小区名称</nobr>
72
70
  </th>
73
71
  <th>
74
- <nobr>抄表数</nobr>
72
+ <nobr>应抄户数</nobr>
75
73
  </th>
76
74
  <th>
77
- <nobr>实抄表数</nobr>
75
+ <nobr>未抄户数</nobr>
78
76
  </th>
79
77
  <th>
80
- <nobr>档案户数</nobr>
78
+ <nobr>已抄无用量</nobr>
79
+ </th>
80
+ <th>
81
+ <nobr>实抄户数</nobr>
81
82
  </th>
82
83
  <th>
83
84
  <nobr>用气量</nobr>
@@ -95,13 +96,19 @@
95
96
  <nobr>{{row.f_residential_area}}</nobr>
96
97
  </td>
97
98
  <td style="text-align: center;">
98
- <nobr>{{row.handplannum}}</nobr>
99
+ <nobr>{{row.f_user_number}}</nobr>
100
+ </td>
101
+ <td style="text-align: center;">
102
+ <nobr>{{row.f_no_hand}}</nobr>
99
103
  </td>
100
104
  <td style="text-align: center;">
101
- <nobr>{{row.ishandplan}}</nobr>
105
+ <nobr>{{row.f_no_hand}}</nobr>
102
106
  </td>
103
107
  <td style="text-align: center;">
104
- <nobr>{{row.peoplenum}}</nobr>
108
+ <nobr>{{row.f_out_hand}}</nobr>
109
+ </td>
110
+ <td style="text-align: center;">
111
+ <nobr>{{row.f_hand_num}}</nobr>
105
112
  </td>
106
113
  <td style="text-align: center;">
107
114
  <nobr>{{row.f_oughtamount}}</nobr>
@@ -158,9 +165,9 @@ export default {
158
165
  other: [],
159
166
  footer: [],
160
167
  data: {},
161
- model: new PagedList('rs/sql/salehandplanRate', 20, {}, {
162
- f_oughtamount: 0,
163
- f_oughtfee: 0,
168
+ model: new PagedList('rs/sql/salehandplanRate', 20, {startDate: 'this.model.startDate', endDate: 'this.model.endDate'}, {
169
+ f_oughtamount: 0,
170
+ f_oughtfee: 0
164
171
  }),
165
172
  initres: {
166
173
  org: [this.$login.f.orgid],
@@ -181,13 +188,14 @@ export default {
181
188
  defaultPrint: [],
182
189
  excelHeaders: {
183
190
  'f_residential_area': '小区名称',
184
- 'handplannum': '抄表数',
185
- 'ishandplan': '实抄表数',
186
- 'peoplenum': '档案户数',
191
+ 'f_user_number': '应抄户数',
192
+ 'f_no_hand': '未抄户数',
193
+ 'f_out_hand': '已抄无用量',
194
+ 'f_hand_num': '实抄户数',
187
195
  'f_oughtamount': '用气量',
188
196
  'f_oughtfee': '用气金额',
189
- 'handplansate1':'抄表率'
190
- }
197
+ 'handplansate1': '抄表率'
198
+ }
191
199
  },
192
200
  inputtores: [{label: '全部', value: ''}], // 抄表员
193
201
  condition: ' 1 = 1'
package/src/main.js CHANGED
@@ -3,7 +3,7 @@ import all from 'vue-client/src/all'
3
3
  import App from './App'
4
4
  import system from 'system-clients/src/system'
5
5
  import sale from './sale'
6
- import FilialeSale from './filiale/qianneng/sale'
6
+ import FilialeSale from './filiale/haile/sale'
7
7
  import address from 'address-client/src/address'
8
8
  import ldap from 'ldap-clients/src/ldap'
9
9
  import VueClipboard from 'vue-clipboard2'