manage-client 4.1.150 → 4.1.151

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.
@@ -6,8 +6,8 @@ const proxyMiddleware = require('http-proxy-middleware')
6
6
  const app = express()
7
7
  const compiler = webpack(config)
8
8
 
9
- const server = 'http://192.168.50.67:31567/'
10
- const local = 'http://127.0.0.1:9026/'
9
+ const server = 'http://116.204.64.92:31467/'
10
+ const local = 'http://116.204.64.92:31467/'
11
11
  const proxyTable = {
12
12
  '/rs/logic/exportfile': {
13
13
  target: server
@@ -16,21 +16,21 @@ const proxyTable = {
16
16
  target: server
17
17
  },
18
18
  '/api/af-revenue/sql/': {
19
- pathRewrite: {
20
- '^/api/af-revenue': '/'
21
- },
19
+ // pathRewrite: {
20
+ // '^/api/af-revenue': '/'
21
+ // },
22
22
  target: local
23
23
  },
24
24
  '/api/af-revenue/report/': {
25
- pathRewrite: {
26
- '^/api/af-revenue': '/'
27
- },
25
+ // pathRewrite: {
26
+ // '^/api/af-revenue': '/'
27
+ // },
28
28
  target: local
29
29
  },
30
30
  '/api/af-revenue/logic': {
31
- pathRewrite: {
32
- '^/api/af-revenue': '/'
33
- },
31
+ // pathRewrite: {
32
+ // '^/api/af-revenue': '/'
33
+ // },
34
34
  target: local
35
35
  },
36
36
  '/api': {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "manage-client",
3
- "version": "4.1.150",
3
+ "version": "4.1.151",
4
4
  "description": "经营管控模块前台组件",
5
5
  "main": "src/index.js",
6
6
  "directories": {
@@ -167,11 +167,11 @@
167
167
  <div class="col-sm-2 form-group">
168
168
  <label class="font_normal_body" title="参数:设备类型">用气设备</label>
169
169
  <v-select id="f_meter_brand"
170
- v-model="model.f_devices_type"
171
- :value.sync="model.f_devices_type"
170
+ v-model="model.device"
171
+ :value.sync="model.device"
172
172
  :options='$parent.$parent.devicesTypes'
173
173
  placeholder='请选择'
174
- condition="f_devices_type like '%{}%'" :search="false"
174
+ condition="device = '{}'" :search="false"
175
175
  close-on-select style="width: 60%">
176
176
  </v-select>
177
177
  </div>
@@ -208,6 +208,15 @@
208
208
  close-on-select :search="false">
209
209
  </v-select>
210
210
  </div>
211
+ <div class="form-group col-sm-2">
212
+ <label class="font_normal_body">用户等级</label>
213
+ <v-select v-model="model.f_user_level"
214
+ placeholder='用户等级'
215
+ :value.sync="model.f_user_level"
216
+ :options='$parent.$parent.userlevel'
217
+ condition="f_user_level = '{}'"
218
+ close-on-select style="width: 60%"></v-select>
219
+ </div>
211
220
  </div>
212
221
  </div>
213
222
  </criteria>
@@ -442,6 +451,7 @@ import {HttpResetClass, PagedList} from 'vue-client'
442
451
  orgCondtionStr: '(' + this.$login.f.orgid + ')',
443
452
  orgid:[this.$login.f.orgid],
444
453
  usetypes: [{label: '全部', value: ''},{label: '是', value: `= '壁挂炉'`},{label: '否', value: `!= '壁挂炉'`}],
454
+ userlevel: this.$appdata.getParam('用户等级') ? [{label: '全部', value: ''}, ...this.$appdata.getParam('用户等级')] : [],
445
455
  zonesdata:''
446
456
  }
447
457
  },
@@ -224,9 +224,9 @@
224
224
  </template>
225
225
  <script>
226
226
  import {HttpResetClass, PagedList} from 'vue-client'
227
- import UserGasEcharts from './UserGasEchartsList'
228
- import * as Util from '../../../Util'
229
- import plugins from '../../../plugins/GetLoginInfoService'
227
+ import UserGasEcharts from '../../components/webmeter/newwebmeter/UserGasEchartsList'
228
+ import * as Util from '../../Util'
229
+ import plugins from '../../plugins/GetLoginInfoService'
230
230
  import plugin from 'system-clients/src/plugins/GetLoginInfoService'
231
231
  let readySomething = async function (self) {
232
232
  self.$refs.paged.$refs.cri.model.startDate = Util.addDate(new Date(),-6).substring(0,10) + ' 00:00:00'
@@ -539,7 +539,9 @@
539
539
  })
540
540
  },
541
541
  clearmsg() {
542
- this.$refs.paged.$refs.cri.model = {}
542
+ Object.keys(this.$refs.paged.$refs.criteria.model).forEach((key) => {
543
+ this.$refs.paged.$refs.criteria.model[key] = []
544
+ })
543
545
  },
544
546
  close() {
545
547
  this.show = false
package/src/main.js CHANGED
@@ -6,8 +6,8 @@ import { all } from 'vue-client'
6
6
  import { system } from 'system-clients'
7
7
  import { ldap } from 'ldap-clients'
8
8
  import saleManage from './saleManage'
9
- import ShanXianSaleManage from './filiale/xinjiangdexin/sale'
10
- // import ShanXianwebSaleManage from './filiale/rongcheng/webmeterManage'
9
+ import ShanXianSaleManage from './filiale/meihekou/sale'
10
+ import ShanXianwebSaleManage from './filiale/meihekou/webmeterManage'
11
11
  import webmeterManage from './webmeterManage'
12
12
  import reportManage from './reportManage'
13
13
  import newmanage from './newmanage'
@@ -50,6 +50,7 @@ webmeterManage()
50
50
  ManageHome()
51
51
  newmanage()
52
52
  ShanXianSaleManage()
53
+ ShanXianwebSaleManage()
53
54
  reportManage()
54
55
  // ShanXianSaleManage()
55
56
  require('system-clients/src/styles/less/bootstrap.less')
File without changes
File without changes
File without changes
File without changes
@@ -1,2 +0,0 @@
1
- #Thu Jun 04 15:26:04 CST 2026
2
- gradle.version=9.3.0
Binary file
File without changes