manage-client-xy 3.2.10 → 3.2.12
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/.gradle/8.8/checksums/checksums.lock +0 -0
- package/.gradle/8.8/dependencies-accessors/gc.properties +0 -0
- package/.gradle/8.8/fileChanges/last-build.bin +0 -0
- package/.gradle/8.8/fileHashes/fileHashes.bin +0 -0
- package/.gradle/8.8/fileHashes/fileHashes.lock +0 -0
- package/.gradle/8.8/gc.properties +0 -0
- package/.gradle/buildOutputCleanup/buildOutputCleanup.lock +0 -0
- package/.gradle/buildOutputCleanup/cache.properties +2 -0
- package/.gradle/vcs-1/gc.properties +0 -0
- package/build/dev-server.js +2 -8
- package/package.json +1 -1
- package/src/components/sale/filesquery/UserQuery.vue +4 -4
- package/src/components/webmeter/handplan/NewWebMeterHandPlan.vue +3 -3
- package/src/main.js +8 -8
|
Binary file
|
|
File without changes
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
File without changes
|
|
Binary file
|
|
File without changes
|
package/build/dev-server.js
CHANGED
|
@@ -11,7 +11,7 @@ var compiler = webpack(config)
|
|
|
11
11
|
// Define HTTP proxies to your custom API backend
|
|
12
12
|
// https://github.com/chimurai/http-proxy-middleware
|
|
13
13
|
// var bendi = 'http://127.0.0.1:8089/manage', fuwu = 'http://36.103.224.217:6300/'
|
|
14
|
-
var bendi = 'http://
|
|
14
|
+
var bendi = 'http://172.16.16.163:8300/'
|
|
15
15
|
, fuwu = 'http://172.16.16.163:8300/'
|
|
16
16
|
// ,fuwu = 'http://172.16.16.163:8300/'
|
|
17
17
|
var proxyTable = {
|
|
@@ -22,12 +22,6 @@ var proxyTable = {
|
|
|
22
22
|
'/rs/logic/exportfile': {
|
|
23
23
|
target: bendi
|
|
24
24
|
},
|
|
25
|
-
'/rs/logic/saleExport': {
|
|
26
|
-
target: fuwu
|
|
27
|
-
},
|
|
28
|
-
'/rs/sql/qc_statistics_manage': {
|
|
29
|
-
target: fuwu
|
|
30
|
-
},
|
|
31
25
|
'/files': {
|
|
32
26
|
target: fuwu
|
|
33
27
|
},
|
|
@@ -84,7 +78,7 @@ var proxyTable = {
|
|
|
84
78
|
target: fuwu
|
|
85
79
|
},
|
|
86
80
|
'/rs/logic/SumSettleFileImport': {
|
|
87
|
-
target:
|
|
81
|
+
target: 'http://127.0.0.1:8087'
|
|
88
82
|
},
|
|
89
83
|
'/rs': {
|
|
90
84
|
target: fuwu
|
package/package.json
CHANGED
|
@@ -45,9 +45,9 @@
|
|
|
45
45
|
<div class="col-sm-2">
|
|
46
46
|
<label class="font_normal_body">客户状态</label>
|
|
47
47
|
<v-select :value.sync="model.f_user_state"
|
|
48
|
-
v-model="model.f_user_state"
|
|
48
|
+
v-model="model.f_user_state" multiple
|
|
49
49
|
:options='$parent.$parent.userstates' placeholder='请选择'
|
|
50
|
-
condition="f_user_state
|
|
50
|
+
condition="f_user_state in {}"
|
|
51
51
|
close-on-select></v-select>
|
|
52
52
|
</div>
|
|
53
53
|
<div class="col-sm-2">
|
|
@@ -253,9 +253,9 @@
|
|
|
253
253
|
<div class="col-sm-2">
|
|
254
254
|
<label class="font_normal_body">气表状态</label>
|
|
255
255
|
<v-select :value.sync="model.f_table_state"
|
|
256
|
-
v-model="model.f_table_state"
|
|
256
|
+
v-model="model.f_table_state" multiple
|
|
257
257
|
:options='$parent.$parent.meterstate' placeholder='请选择'
|
|
258
|
-
condition="f_table_state
|
|
258
|
+
condition="f_table_state in {}"
|
|
259
259
|
close-on-select></v-select>
|
|
260
260
|
</div>
|
|
261
261
|
</div>
|
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
<div class="row" width="100%">
|
|
8
8
|
<div class="col-sm-2 form-group">
|
|
9
9
|
<label class="font_normal_body">表  号</label>
|
|
10
|
-
<input style="width:60%" class="input_search" condition="mr.f_meternumber
|
|
10
|
+
<input style="width:60%" class="input_search" condition="mr.f_meternumber = '{}'"
|
|
11
11
|
placeholder='表号'
|
|
12
12
|
type="text"
|
|
13
13
|
v-model="model.f_meternumber"
|
|
@@ -15,14 +15,14 @@
|
|
|
15
15
|
</div>
|
|
16
16
|
<div class="col-sm-2 form-group">
|
|
17
17
|
<label class="font_normal_body">客户编号</label>
|
|
18
|
-
<input style="width:60%" class="input_search" condition="u.f_userinfo_code
|
|
18
|
+
<input style="width:60%" class="input_search" condition="u.f_userinfo_code = '{}'"
|
|
19
19
|
placeholder='客户编号'
|
|
20
20
|
type="text"
|
|
21
21
|
v-model="model.f_userinfo_code">
|
|
22
22
|
</div>
|
|
23
23
|
<div class="col-sm-2 form-group">
|
|
24
24
|
<label class="font_normal_body">客户名称</label>
|
|
25
|
-
<input style="width:60%" class="input_search" condition="
|
|
25
|
+
<input style="width:60%" class="input_search" condition="u.f_user_name = '{}'" placeholder='客户名称'
|
|
26
26
|
type="text"
|
|
27
27
|
v-model="model.f_user_name">
|
|
28
28
|
</div>
|
package/src/main.js
CHANGED
|
@@ -4,10 +4,10 @@ import { all } from 'vue-client'
|
|
|
4
4
|
import { system } from 'system-clients'
|
|
5
5
|
import { sale } from 'sale-client'
|
|
6
6
|
import saleManage from './saleManage'
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
7
|
+
import webmeterManage from './webmeterManage'
|
|
8
|
+
import reportManage from './reportManage'
|
|
9
|
+
import newmanage from './newmanage'
|
|
10
|
+
import ManageHome from './ManageHome'
|
|
11
11
|
import echarts from 'echarts'
|
|
12
12
|
import AMap from 'vue-amap';
|
|
13
13
|
|
|
@@ -41,10 +41,10 @@ all()
|
|
|
41
41
|
sale()
|
|
42
42
|
system(false)
|
|
43
43
|
saleManage()
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
44
|
+
webmeterManage()
|
|
45
|
+
ManageHome()
|
|
46
|
+
newmanage()
|
|
47
|
+
reportManage()
|
|
48
48
|
require('./bootstrap/less/bootstrap.less')
|
|
49
49
|
require('./bootstrap/less/manageStyle/manageStyle.less')
|
|
50
50
|
require('./bootstrap/less/manageStyle/manageChile.less')
|