sale-client 4.4.5 → 4.4.6
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/fileChanges/last-build.bin +0 -0
- package/.gradle/5.2.1/fileHashes/fileHashes.lock +0 -0
- package/.gradle/5.2.1/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 +2 -0
- package/.gradle/vcs-1/gc.properties +0 -0
- package/build/dev-server.js +12 -12
- package/package.json +1 -1
- package/src/filiale/liaoyuan/MixPriceInfo.vue +60 -0
- package/src/filiale/liaoyuan/sale.js +2 -0
- package/src/main.js +1 -1
|
Binary file
|
|
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
|
@@ -25,12 +25,12 @@ var devConfig = {
|
|
|
25
25
|
// },
|
|
26
26
|
// target: localUrl
|
|
27
27
|
// },
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
28
|
+
// '/api/af-revenue/logic': {
|
|
29
|
+
// pathRewrite: {
|
|
30
|
+
// '/api/af-revenue/logic': '/logic'
|
|
31
|
+
// },
|
|
32
|
+
// target: localUrl
|
|
33
|
+
// },
|
|
34
34
|
// '/api/af-revenue/file': {
|
|
35
35
|
// // pathRewrite: {
|
|
36
36
|
// // '/api/af-revenue/file': '/file'
|
|
@@ -41,12 +41,12 @@ var devConfig = {
|
|
|
41
41
|
//
|
|
42
42
|
// target: 'http://410663id1ia4.vicp.fun'
|
|
43
43
|
// },
|
|
44
|
-
'/api/af-revenue/sql': {
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
},
|
|
44
|
+
// '/api/af-revenue/sql': {
|
|
45
|
+
// pathRewrite: {
|
|
46
|
+
// '/api/af-revenue/sql': '/sql'
|
|
47
|
+
// },
|
|
48
|
+
// target: localUrl
|
|
49
|
+
// },
|
|
50
50
|
'/rs/pay': {
|
|
51
51
|
target: 'http://localhost:8080'
|
|
52
52
|
},
|
package/package.json
CHANGED
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<!--<partial-view v-ref:pv>-->
|
|
3
|
+
<div class="auto">
|
|
4
|
+
<div id="stair" class="panel panel-info auto;" style="height:auto">
|
|
5
|
+
<div class="panel-heading" style="height: 35px">
|
|
6
|
+
<h4 style="margin-top: auto">气价信息</h4>
|
|
7
|
+
</div>
|
|
8
|
+
<div class="auto info-content" style="height:auto">
|
|
9
|
+
<div class="row">
|
|
10
|
+
<label class = "col-sm-5 ">当前价格:</label>
|
|
11
|
+
<span class = "col-sm-7">{{model.f_price}}</span>
|
|
12
|
+
</div>
|
|
13
|
+
</div>
|
|
14
|
+
</div>
|
|
15
|
+
</div>
|
|
16
|
+
|
|
17
|
+
<!--</partial-view>-->
|
|
18
|
+
</template>
|
|
19
|
+
|
|
20
|
+
<script>
|
|
21
|
+
import co from 'co'
|
|
22
|
+
import Vue from 'vue'
|
|
23
|
+
import {HttpResetClass} from 'vue-client'
|
|
24
|
+
|
|
25
|
+
let getPriceGen = function * (self) {
|
|
26
|
+
console.log('看看拿到的data', self.data.f_user_id)
|
|
27
|
+
|
|
28
|
+
let http = new HttpResetClass()
|
|
29
|
+
let getPrice = yield http.load('POST', 'api/af-revenue/sql/singleTable_OrderBy', {data: {items: '*',
|
|
30
|
+
tablename: 't_detailprice',
|
|
31
|
+
condition: `f_stairprice_id = (select id from t_stairprice where f_price_id = '${self.data.f_price_id}' and
|
|
32
|
+
getdate()>=f_perform_date and getdate()<=f_end_date)`,
|
|
33
|
+
orderitem: 'id'}}, {resolveMsg: null, rejectMsg: null})
|
|
34
|
+
self.model.f_price = getPrice.data[0].f_price
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
export default {
|
|
38
|
+
title: '表具使用情况',
|
|
39
|
+
props: ['data'],
|
|
40
|
+
data () {
|
|
41
|
+
return {
|
|
42
|
+
model: {
|
|
43
|
+
f_price: 0
|
|
44
|
+
}
|
|
45
|
+
}
|
|
46
|
+
},
|
|
47
|
+
ready () {
|
|
48
|
+
co(getPriceGen(this))
|
|
49
|
+
},
|
|
50
|
+
watch: {
|
|
51
|
+
'data' () {
|
|
52
|
+
co(getPriceGen(this))
|
|
53
|
+
}
|
|
54
|
+
}
|
|
55
|
+
}
|
|
56
|
+
</script>
|
|
57
|
+
|
|
58
|
+
<style scoped>
|
|
59
|
+
|
|
60
|
+
</style>
|
|
@@ -61,4 +61,6 @@ export default function () {
|
|
|
61
61
|
Vue.component('user-pricechange-manage', (resolve) => { require(['./UserPriceChangeManage'], resolve) })
|
|
62
62
|
// 抄表员汇总
|
|
63
63
|
Vue.component('inputtor-summary', (resolve) => { require(['./InputtorSummary'], resolve) })
|
|
64
|
+
|
|
65
|
+
Vue.component('mix-price-info', (resolve) => { require(['./MixPriceInfo'], resolve) })
|
|
64
66
|
}
|
package/src/main.js
CHANGED
|
@@ -2,7 +2,7 @@ import Vue from 'vue'
|
|
|
2
2
|
import all from 'vue-client/src/all'
|
|
3
3
|
import App from './App'
|
|
4
4
|
import system from 'system-clients/src/system'
|
|
5
|
-
import FilialeSale from './filiale/
|
|
5
|
+
import FilialeSale from './filiale/kelai/sale'
|
|
6
6
|
import sale from './sale'
|
|
7
7
|
import address from 'address-client/src/address'
|
|
8
8
|
import ldap from 'ldap-clients/src/ldap'
|