sale-client 4.0.183 → 4.0.185
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/buildOutputCleanup/buildOutputCleanup.lock +0 -0
- package/.gradle/buildOutputCleanup/cache.properties +1 -1
- package/build/dev-server.js +4 -4
- package/package.json +1 -1
- package/src/filiale/ronghao/machineRefund.vue +1 -1
- package/src/filiale/ronghao/sale.js +2 -1
- package/src/main.js +1 -1
|
Binary file
|
|
Binary file
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
#
|
|
1
|
+
#Wed Apr 02 14:48:19 CST 2025
|
|
2
2
|
gradle.version=5.2.1
|
package/build/dev-server.js
CHANGED
|
@@ -31,10 +31,10 @@ var devConfig = {
|
|
|
31
31
|
},
|
|
32
32
|
target: localUrl
|
|
33
33
|
},
|
|
34
|
-
'/api/af-revenue/file': {
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
34
|
+
'/api/af-revenue/downloadfile/file': {
|
|
35
|
+
pathRewrite: {
|
|
36
|
+
'/api/af-revenue/downloadfile/file': 'downloadfile/file'
|
|
37
|
+
},
|
|
38
38
|
target: localUrl
|
|
39
39
|
},
|
|
40
40
|
'/weixin2/rs':{
|
package/package.json
CHANGED
|
@@ -116,5 +116,6 @@ export default function () {
|
|
|
116
116
|
Vue.component('specific-information', (resolve) => { require(['./specificInformation.vue'], resolve) })
|
|
117
117
|
// 调价补差
|
|
118
118
|
Vue.component('compensation-manage', (resolve) => { require(['./PriceChangeCompensation/CompensationManage'], resolve) })
|
|
119
|
-
|
|
119
|
+
// 保险收费查询用户列表
|
|
120
|
+
Vue.component('insurance-lists', (resolve) => { require(['./InsuranceList'], resolve) })
|
|
120
121
|
}
|
package/src/main.js
CHANGED
|
@@ -3,7 +3,7 @@ import all from 'vue-client/src/all'
|
|
|
3
3
|
import App from './App'
|
|
4
4
|
import system from 'system-clients/src/system'
|
|
5
5
|
import sale from './sale'
|
|
6
|
-
import FilialeSale from './filiale/
|
|
6
|
+
import FilialeSale from './filiale/ronghao/sale'
|
|
7
7
|
// import address from 'address-client/src/address'
|
|
8
8
|
import ldap from 'ldap-clients/src/ldap'
|
|
9
9
|
import VueClipboard from 'vue-clipboard2'
|