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.
- package/build/dev-server.js +11 -11
- package/package.json +1 -1
- package/src/filiale/meihekou/UserGasAll.vue +13 -3
- package/src/filiale/meihekou/UserGasList.vue +3 -3
- package/src/filiale/wenxi/MeterExceptionList.vue +3 -1
- package/src/main.js +3 -2
- package/.gradle/6.1.1/executionHistory/executionHistory.lock +0 -0
- package/.gradle/6.1.1/fileChanges/last-build.bin +0 -0
- package/.gradle/6.1.1/fileHashes/fileHashes.lock +0 -0
- package/.gradle/6.1.1/gc.properties +0 -0
- package/.gradle/7.4/checksums/checksums.lock +0 -0
- package/.gradle/7.4/dependencies-accessors/dependencies-accessors.lock +0 -0
- package/.gradle/7.4/dependencies-accessors/gc.properties +0 -0
- package/.gradle/7.4/executionHistory/executionHistory.lock +0 -0
- package/.gradle/7.4/fileChanges/last-build.bin +0 -0
- package/.gradle/7.4/fileHashes/fileHashes.lock +0 -0
- package/.gradle/7.4/gc.properties +0 -0
- package/.gradle/9.3.0/checksums/checksums.lock +0 -0
- package/.gradle/9.3.0/fileChanges/last-build.bin +0 -0
- package/.gradle/9.3.0/fileHashes/fileHashes.lock +0 -0
- package/.gradle/9.3.0/gc.properties +0 -0
- package/.gradle/buildOutputCleanup/buildOutputCleanup.lock +0 -0
- package/.gradle/buildOutputCleanup/cache.properties +0 -2
- package/.gradle/checksums/checksums.lock +0 -0
- package/.gradle/vcs-1/gc.properties +0 -0
package/build/dev-server.js
CHANGED
|
@@ -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://
|
|
10
|
-
const local = 'http://
|
|
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
|
-
|
|
21
|
-
},
|
|
19
|
+
// pathRewrite: {
|
|
20
|
+
// '^/api/af-revenue': '/'
|
|
21
|
+
// },
|
|
22
22
|
target: local
|
|
23
23
|
},
|
|
24
24
|
'/api/af-revenue/report/': {
|
|
25
|
-
pathRewrite: {
|
|
26
|
-
|
|
27
|
-
},
|
|
25
|
+
// pathRewrite: {
|
|
26
|
+
// '^/api/af-revenue': '/'
|
|
27
|
+
// },
|
|
28
28
|
target: local
|
|
29
29
|
},
|
|
30
30
|
'/api/af-revenue/logic': {
|
|
31
|
-
pathRewrite: {
|
|
32
|
-
|
|
33
|
-
},
|
|
31
|
+
// pathRewrite: {
|
|
32
|
+
// '^/api/af-revenue': '/'
|
|
33
|
+
// },
|
|
34
34
|
target: local
|
|
35
35
|
},
|
|
36
36
|
'/api': {
|
package/package.json
CHANGED
|
@@ -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.
|
|
171
|
-
:value.sync="model.
|
|
170
|
+
v-model="model.device"
|
|
171
|
+
:value.sync="model.device"
|
|
172
172
|
:options='$parent.$parent.devicesTypes'
|
|
173
173
|
placeholder='请选择'
|
|
174
|
-
condition="
|
|
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 '
|
|
228
|
-
import * as Util from '
|
|
229
|
-
import plugins from '
|
|
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
|
-
|
|
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/
|
|
10
|
-
|
|
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')
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
File without changes
|
|
Binary file
|
|
Binary file
|
|
File without changes
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
File without changes
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
File without changes
|
|
Binary file
|
|
Binary file
|
|
File without changes
|