manage-client 4.0.69 → 4.0.71

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.
@@ -168,6 +168,17 @@
168
168
  <input type="text" style="width:60%" class="input_search" v-model="model.f_meternumber"
169
169
  condition="f_meternumber = '{}' " placeholder="表号">
170
170
  </div>
171
+ <div class="col-sm-2 form-group">
172
+ <label class="font_normal_body">使用类型</label>
173
+ <v-select :value.sync="model.f_usetype"
174
+ v-model="model.f_usetype"
175
+ :options='$parent.$parent.usetype'
176
+ placeholder='使用类型'
177
+ style="width:60%"
178
+ close-on-select
179
+ condition="f_usetype = '{}'">
180
+ </v-select>
181
+ </div>
171
182
  <!-- <div class="col-sm-2 form-group">-->
172
183
  <!-- <label class="font_normal_body">气表品牌</label>-->
173
184
  <!-- <v-select :value.sync="model.f_meter_brand" multiple-->
@@ -204,6 +215,7 @@
204
215
  <th><nobr>用气金额</nobr></th>
205
216
  <th><nobr>期间实收金额</nobr></th>
206
217
  <th><nobr>期末余额</nobr></th>
218
+ <th><nobr>使用类型</nobr></th>
207
219
  <th><nobr>公司</nobr></th>
208
220
  </tr>
209
221
  </template>
@@ -260,6 +272,9 @@
260
272
  <td>
261
273
  <nobr>{{row.f_curbalance}}</nobr>
262
274
  </td>
275
+ <td>
276
+ <nobr>{{row.f_usetype}}</nobr>
277
+ </td>
263
278
  <td style="text-align: center;">
264
279
  <nobr>{{row.f_orgname}}</nobr>
265
280
  </td>
@@ -757,6 +772,9 @@ export default {
757
772
  usertypes() {
758
773
  return [{label: '全部', value: ''}, ...this.$appdata.getParam('用户类型')]
759
774
  },
775
+ usetype() {
776
+ return [{label: '全部', value: ''}, ...this.$appdata.getParam('使用类型')]
777
+ },
760
778
  // meterstate() {
761
779
  // return [{label: '全部', value: ''}, ...this.$appdata.getParam('抄表状态')]
762
780
  // },
package/src/main.js CHANGED
@@ -1,70 +1,70 @@
1
- import Vue from 'vue'
2
- import App from './App'
3
- import { all } from 'vue-client'
4
-
5
- // import { sale } from 'sale-client'
6
- import { system } from 'system-clients'
7
- import { ldap } from 'ldap-clients'
8
- import saleManage from './saleManage'
9
- import ShanXianSaleManage from './filiale/yangchun/sale'
10
- import ShanXianwebSaleManage from './filiale/yangchun/webmeterManage'
11
- import webmeterManage from './webmeterManage'
12
- import reportManage from './reportManage'
13
- import newmanage from './newmanage'
14
- import ManageHome from './ManageHome'
15
- import echarts from 'echarts'
16
- import AMap from 'vue-amap'
17
-
18
- Vue.config.silent = true
19
- // Vue.mmType = 'AES'
20
-
21
- Vue.use(AMap)
22
-
23
- // 初始化vue-amap
24
- AMap.initAMapApiLoader({
25
- // 高德key
26
- key: '3cec9ae8e2349207f7ac29279e3f4abe',
27
- // 插件集合 (插件按需引入)
28
- plugin: [
29
- 'AMap.Autocomplete', // 输入提示插件
30
- 'AMap.PlaceSearch', // POI搜索插件
31
- 'AMap.Scale', // 右下角缩略图插件 比例尺
32
- 'AMap.OverView', // 地图鹰眼插件
33
- 'AMap.ToolBar', // 地图工具条0
34
- 'AMap.MapType', // 类别切换控件,实现默认图层与卫星图、实施交通图层之间切换的控制
35
- 'AMap.PolyEditor', // 编辑 折线多,边形
36
- 'AMap.CircleEditor', // 圆形编辑器插件
37
- 'AMap.Geolocation' // 定位控件,用来获取和展示用户主机所在的经纬度位置
38
- ],
39
- uiVersion: '1.0'
40
- })
41
- /** **************************通用组件******************************/
42
-
43
- Vue.prototype.$echarts = echarts
44
- all()
45
- // sale()
46
- ldap()
47
- system(false)
48
-
49
- saleManage()
50
- webmeterManage()
51
- ManageHome()
52
- newmanage()
53
- ShanXianwebSaleManage()
54
- reportManage()
55
- ShanXianSaleManage()
56
- require('system-clients/src/styles/less/bootstrap.less')
57
- require('./components/qinhua/Style/qinhuaStyle.less')
58
- // require('./bootstrap/less/manageStyle/manageChile.less')
59
- // require('./bootstrap/less/manageStyle/safeStyle.less')
60
-
61
- // 大屏展示要放开的样式
62
- // require('system-clients/src/styles/less/manageStyle/manageChile.less')
63
- // require('system-clients/src/styles/less/manageStyle/safeStyle.less')
64
- // require('system-clients/src/styles/less/manageStyle/manageStyle.less')
65
-
66
- new Vue({
67
- el: 'body',
68
- components: { App }
69
- })
70
-
1
+ import Vue from 'vue'
2
+ import App from './App'
3
+ import { all } from 'vue-client'
4
+
5
+ // import { sale } from 'sale-client'
6
+ import { system } from 'system-clients'
7
+ import { ldap } from 'ldap-clients'
8
+ import saleManage from './saleManage'
9
+ import ShanXianSaleManage from './filiale/yangchun/sale'
10
+ import ShanXianwebSaleManage from './filiale/yangchun/webmeterManage'
11
+ import webmeterManage from './webmeterManage'
12
+ import reportManage from './reportManage'
13
+ import newmanage from './newmanage'
14
+ import ManageHome from './ManageHome'
15
+ import echarts from 'echarts'
16
+ import AMap from 'vue-amap'
17
+
18
+ Vue.config.silent = true
19
+ // Vue.mmType = 'AES'
20
+
21
+ Vue.use(AMap)
22
+
23
+ // 初始化vue-amap
24
+ AMap.initAMapApiLoader({
25
+ // 高德key
26
+ key: '3cec9ae8e2349207f7ac29279e3f4abe',
27
+ // 插件集合 (插件按需引入)
28
+ plugin: [
29
+ 'AMap.Autocomplete', // 输入提示插件
30
+ 'AMap.PlaceSearch', // POI搜索插件
31
+ 'AMap.Scale', // 右下角缩略图插件 比例尺
32
+ 'AMap.OverView', // 地图鹰眼插件
33
+ 'AMap.ToolBar', // 地图工具条0
34
+ 'AMap.MapType', // 类别切换控件,实现默认图层与卫星图、实施交通图层之间切换的控制
35
+ 'AMap.PolyEditor', // 编辑 折线多,边形
36
+ 'AMap.CircleEditor', // 圆形编辑器插件
37
+ 'AMap.Geolocation' // 定位控件,用来获取和展示用户主机所在的经纬度位置
38
+ ],
39
+ uiVersion: '1.0'
40
+ })
41
+ /** **************************通用组件******************************/
42
+
43
+ Vue.prototype.$echarts = echarts
44
+ all()
45
+ // sale()
46
+ ldap()
47
+ system(false)
48
+
49
+ saleManage()
50
+ webmeterManage()
51
+ ManageHome()
52
+ newmanage()
53
+ ShanXianwebSaleManage()
54
+ reportManage()
55
+ ShanXianSaleManage()
56
+ require('system-clients/src/styles/less/bootstrap.less')
57
+ require('./components/qinhua/Style/qinhuaStyle.less')
58
+ // require('./bootstrap/less/manageStyle/manageChile.less')
59
+ // require('./bootstrap/less/manageStyle/safeStyle.less')
60
+
61
+ // 大屏展示要放开的样式
62
+ // require('system-clients/src/styles/less/manageStyle/manageChile.less')
63
+ // require('system-clients/src/styles/less/manageStyle/safeStyle.less')
64
+ // require('system-clients/src/styles/less/manageStyle/manageStyle.less')
65
+
66
+ new Vue({
67
+ el: 'body',
68
+ components: { App }
69
+ })
70
+