sale-client 4.2.15 → 4.2.17
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/5.2.1/fileHashes/fileHashes.lock +0 -0
- package/.gradle/8.10/checksums/checksums.lock +0 -0
- package/.gradle/8.10/dependencies-accessors/gc.properties +0 -0
- package/.gradle/8.10/executionHistory/executionHistory.bin +0 -0
- package/.gradle/8.10/executionHistory/executionHistory.lock +0 -0
- package/.gradle/8.10/fileChanges/last-build.bin +0 -0
- package/.gradle/8.10/fileHashes/fileHashes.bin +0 -0
- package/.gradle/8.10/fileHashes/fileHashes.lock +0 -0
- package/.gradle/8.10/gc.properties +0 -0
- package/.gradle/buildOutputCleanup/buildOutputCleanup.lock +0 -0
- package/.gradle/buildOutputCleanup/cache.properties +1 -1
- package/.gradle/file-system.probe +0 -0
- package/build/dev-server.js +2 -5
- package/package.json +1 -1
- package/src/filiale/meihekou/common/userinfo_detail/ic_detail/MachineRecordQuery.vue +2 -2
- package/src/filiale/meihekou/manualChargeCenter.vue +394 -394
- package/src/filiale/tonghua/CardList.vue +578 -0
- package/src/filiale/tonghua/sale.js +6 -0
- package/src/filiale/yuncheng/IndustryCommerceHand.vue +68 -2
- package/src/main.js +1 -1
|
Binary file
|
|
Binary file
|
|
File without changes
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
File without changes
|
|
Binary file
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
#Mon
|
|
1
|
+
#Mon Apr 14 10:14:01 CST 2025
|
|
2
2
|
gradle.version=5.2.1
|
|
Binary file
|
package/build/dev-server.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
var path = require('path')
|
|
2
2
|
var checkVersion = require('./versionCheck.js')
|
|
3
3
|
checkVersion()
|
|
4
|
-
const [ serverRul, localUrl ] = ['http://
|
|
4
|
+
const [ serverRul, localUrl ] = ['http://119.52.229.151:31467/', 'http://119.52.229.151:31467/']
|
|
5
5
|
var merge = require('webpack-merge')
|
|
6
6
|
var baseConfig = require('./webpack.dev.conf')
|
|
7
7
|
var devConfig = {
|
|
@@ -51,10 +51,7 @@ var devConfig = {
|
|
|
51
51
|
target: 'http://localhost:8080'
|
|
52
52
|
},
|
|
53
53
|
'/api/af-revenue': {
|
|
54
|
-
|
|
55
|
-
'/api/af-revenue': '/af-revenue'
|
|
56
|
-
},
|
|
57
|
-
target: "http://localhost:8080"
|
|
54
|
+
target: serverRul
|
|
58
55
|
},
|
|
59
56
|
'/api': {
|
|
60
57
|
target: serverRul
|
package/package.json
CHANGED
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
<label class="font_normal_body">开始时间</label>
|
|
12
12
|
<datepicker :format="'yyyy-MM-dd'" :value.sync="model.f_start_date"
|
|
13
13
|
class="datepicker"
|
|
14
|
-
condition="
|
|
14
|
+
condition="f_operate_date >= '{} 00:00:00' "
|
|
15
15
|
placeholder="起始时间"
|
|
16
16
|
style="width:60%"
|
|
17
17
|
v-model="model.f_start_date"
|
|
@@ -21,7 +21,7 @@
|
|
|
21
21
|
<label class="font_normal_body" >结束时间</label>
|
|
22
22
|
<datepicker :format="'yyyy-MM-dd'" :value.sync="model.f_end_date"
|
|
23
23
|
class="datepicker"
|
|
24
|
-
condition="
|
|
24
|
+
condition="f_operate_date <= '{} 23:59:59' "
|
|
25
25
|
placeholder="结束时间"
|
|
26
26
|
style="width:60%"
|
|
27
27
|
v-model="model.f_end_date"
|