sale-client 3.6.304 → 3.6.305
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/4.4/taskHistory/taskHistory.bin +0 -0
- package/.gradle/4.4/taskHistory/taskHistory.lock +0 -0
- package/.gradle/buildOutputCleanup/buildOutputCleanup.lock +0 -0
- package/.gradle/buildOutputCleanup/cache.properties +2 -0
- package/.gradle/buildOutputCleanup/outputFiles.bin +0 -0
- package/package.json +1 -1
- package/src/components/common/userinfo_detail/ic_detail/ChargeRecordQuery.vue +3 -1
- package/src/filiale/rizhao/otherinfo.vue +92 -92
- package/src/filiale/yangchun/CardList.vue +559 -559
- package/src/filiale/yangchun/sale.js +61 -61
- package/src/filiale/zhongyi/machineHand.vue +22 -0
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
package/package.json
CHANGED
|
@@ -4,7 +4,6 @@
|
|
|
4
4
|
<template partial='head' >
|
|
5
5
|
<tr>
|
|
6
6
|
<th><nobr>序号</nobr></th>
|
|
7
|
-
|
|
8
7
|
<th><nobr>气量</nobr></th>
|
|
9
8
|
<th><nobr>应交</nobr></th>
|
|
10
9
|
<th><nobr>付款方式</nobr></th>
|
|
@@ -12,6 +11,7 @@
|
|
|
12
11
|
<th><nobr>收款</nobr></th>
|
|
13
12
|
<th><nobr>本期结余</nobr></th>
|
|
14
13
|
<th><nobr>操作类型</nobr></th>
|
|
14
|
+
<th><nobr>写卡状态</nobr></th>
|
|
15
15
|
<th><nobr>操作时间 </nobr></th>
|
|
16
16
|
<th><nobr>操作员 </nobr></th>
|
|
17
17
|
<th><nobr>备注</nobr></th>
|
|
@@ -28,6 +28,7 @@
|
|
|
28
28
|
<td style="text-align:center;white-space:nowrap;">{{row.f_collection}}</td>
|
|
29
29
|
<td style="text-align:center;white-space:nowrap;">{{row.f_curbalance}}</td>
|
|
30
30
|
<td style="text-align:center;white-space:nowrap;">{{row.type}}</td>
|
|
31
|
+
<td style="text-align:center;white-space:nowrap;">{{row.f_write_card}}</td>
|
|
31
32
|
<td style="text-align:center;white-space:nowrap;">{{row.operate_date}}</td>
|
|
32
33
|
<td style="text-align:center;white-space:nowrap;">{{row.f_operator}}</td>
|
|
33
34
|
<td style="text-align:left;white-space:nowrap;">{{row.note}}{{row.f_write_card}}</td>
|
|
@@ -80,6 +81,7 @@
|
|
|
80
81
|
resolveMsg: null
|
|
81
82
|
})
|
|
82
83
|
this.model.rows = record.data
|
|
84
|
+
console.log('record.data------------>',record.data)
|
|
83
85
|
this.hasCardCental = this.$appdata.getSingleValue('多收提示') ? this.$appdata.getSingleValue('多收提示') : false
|
|
84
86
|
if (this.hasCardCental && this.model.rows.length > 0 && (this.model.rows[0].type == '发卡售气' || this.model.rows[0].type == '卡表收费')) {
|
|
85
87
|
let checkdata = this.model.rows[0].operate_date.substr(0, 10)
|
|
@@ -1,92 +1,92 @@
|
|
|
1
|
-
<template>
|
|
2
|
-
<div class="flex" style="height: 90%;overflow-y: scroll">
|
|
3
|
-
<mix-price-info :data="data" v-if="data.f_price_type === '固定气价'"></mix-price-info>
|
|
4
|
-
<stairinfo :data="data" v-if="data.f_price_type === '阶梯气价'"></stairinfo>
|
|
5
|
-
<!-- <valueaddinfo :data="data" v-ref:valueaddinfo></valueaddinfo>-->
|
|
6
|
-
<safe-check :data="data"></safe-check>
|
|
7
|
-
<service-repair :data="data" v-if="name==='维修情况查询'"></service-repair>
|
|
8
|
-
<bill-message @setstate="setstate" :state="state" :data="data"></bill-message>
|
|
9
|
-
</div>
|
|
10
|
-
</template>
|
|
11
|
-
|
|
12
|
-
<script>
|
|
13
|
-
/**
|
|
14
|
-
*客户相关信息
|
|
15
|
-
*/
|
|
16
|
-
|
|
17
|
-
import MixPriceInfo from '../../components/revenue/base/leftview/MixPriceInfo'
|
|
18
|
-
import SafeCheck from '../../components/revenue/base/leftview/SafeCheck'
|
|
19
|
-
import ServiceRepair from '../../components/revenue/base/leftview/ServiceRepair'
|
|
20
|
-
export default {
|
|
21
|
-
title: '客户相关信息',
|
|
22
|
-
data () {
|
|
23
|
-
return {
|
|
24
|
-
name: ''
|
|
25
|
-
}
|
|
26
|
-
},
|
|
27
|
-
components: {MixPriceInfo, SafeCheck, ServiceRepair},
|
|
28
|
-
props: {
|
|
29
|
-
data: {
|
|
30
|
-
type: Object
|
|
31
|
-
},
|
|
32
|
-
cardData: {
|
|
33
|
-
type: Object,
|
|
34
|
-
default: function () {
|
|
35
|
-
return {}
|
|
36
|
-
}
|
|
37
|
-
},
|
|
38
|
-
state:{
|
|
39
|
-
type: String,
|
|
40
|
-
default:null
|
|
41
|
-
}
|
|
42
|
-
},
|
|
43
|
-
ready () {
|
|
44
|
-
this.getAuthority()
|
|
45
|
-
},
|
|
46
|
-
methods: {
|
|
47
|
-
getAuthority () {
|
|
48
|
-
if (this.$login.r.find(value => value == '维修情况查询')) {
|
|
49
|
-
this.name = '维修情况查询'
|
|
50
|
-
console.log(this.name)
|
|
51
|
-
}
|
|
52
|
-
console.log('查看权限', this.$login.r)
|
|
53
|
-
},
|
|
54
|
-
dealMsg (obj) {
|
|
55
|
-
this.$dispatch('deal-msg', obj)
|
|
56
|
-
},
|
|
57
|
-
setstate(state){
|
|
58
|
-
this.$dispatch('setstate',state)
|
|
59
|
-
}
|
|
60
|
-
}
|
|
61
|
-
}
|
|
62
|
-
</script>
|
|
63
|
-
<style lang="less">
|
|
64
|
-
#mulit-info-class {
|
|
65
|
-
width: 280px;
|
|
66
|
-
margin-right: 20px;
|
|
67
|
-
overflow-y: auto;
|
|
68
|
-
> div {
|
|
69
|
-
height: auto;
|
|
70
|
-
margin-bottom: 8px;
|
|
71
|
-
}
|
|
72
|
-
}
|
|
73
|
-
// 内容显示样式
|
|
74
|
-
.control-label {
|
|
75
|
-
height: 23px;
|
|
76
|
-
border-right: 1px solid #F2F6FA;
|
|
77
|
-
margin-bottom: 0;
|
|
78
|
-
text-align: left;
|
|
79
|
-
}
|
|
80
|
-
|
|
81
|
-
.info-content {
|
|
82
|
-
padding:6px;
|
|
83
|
-
span {
|
|
84
|
-
padding-left: 5px;
|
|
85
|
-
}
|
|
86
|
-
}
|
|
87
|
-
// 信息区域的表格显示紧凑
|
|
88
|
-
.self-table > tbody > tr > td {
|
|
89
|
-
padding: 3px;
|
|
90
|
-
text-align: center;
|
|
91
|
-
}
|
|
92
|
-
</style>
|
|
1
|
+
<template>
|
|
2
|
+
<div class="flex" style="height: 90%;overflow-y: scroll">
|
|
3
|
+
<mix-price-info :data="data" v-if="data.f_price_type === '固定气价'"></mix-price-info>
|
|
4
|
+
<stairinfo :data="data" v-if="data.f_price_type === '阶梯气价'"></stairinfo>
|
|
5
|
+
<!-- <valueaddinfo :data="data" v-ref:valueaddinfo></valueaddinfo>-->
|
|
6
|
+
<safe-check :data="data"></safe-check>
|
|
7
|
+
<service-repair :data="data" v-if="name==='维修情况查询'"></service-repair>
|
|
8
|
+
<bill-message @setstate="setstate" :state="state" :data="data"></bill-message>
|
|
9
|
+
</div>
|
|
10
|
+
</template>
|
|
11
|
+
|
|
12
|
+
<script>
|
|
13
|
+
/**
|
|
14
|
+
*客户相关信息
|
|
15
|
+
*/
|
|
16
|
+
|
|
17
|
+
import MixPriceInfo from '../../components/revenue/base/leftview/MixPriceInfo'
|
|
18
|
+
import SafeCheck from '../../components/revenue/base/leftview/SafeCheck'
|
|
19
|
+
import ServiceRepair from '../../components/revenue/base/leftview/ServiceRepair'
|
|
20
|
+
export default {
|
|
21
|
+
title: '客户相关信息',
|
|
22
|
+
data () {
|
|
23
|
+
return {
|
|
24
|
+
name: ''
|
|
25
|
+
}
|
|
26
|
+
},
|
|
27
|
+
components: {MixPriceInfo, SafeCheck, ServiceRepair},
|
|
28
|
+
props: {
|
|
29
|
+
data: {
|
|
30
|
+
type: Object
|
|
31
|
+
},
|
|
32
|
+
cardData: {
|
|
33
|
+
type: Object,
|
|
34
|
+
default: function () {
|
|
35
|
+
return {}
|
|
36
|
+
}
|
|
37
|
+
},
|
|
38
|
+
state:{
|
|
39
|
+
type: String,
|
|
40
|
+
default:null
|
|
41
|
+
}
|
|
42
|
+
},
|
|
43
|
+
ready () {
|
|
44
|
+
this.getAuthority()
|
|
45
|
+
},
|
|
46
|
+
methods: {
|
|
47
|
+
getAuthority () {
|
|
48
|
+
if (this.$login.r.find(value => value == '维修情况查询')) {
|
|
49
|
+
this.name = '维修情况查询'
|
|
50
|
+
console.log(this.name)
|
|
51
|
+
}
|
|
52
|
+
console.log('查看权限', this.$login.r)
|
|
53
|
+
},
|
|
54
|
+
dealMsg (obj) {
|
|
55
|
+
this.$dispatch('deal-msg', obj)
|
|
56
|
+
},
|
|
57
|
+
setstate(state){
|
|
58
|
+
this.$dispatch('setstate',state)
|
|
59
|
+
}
|
|
60
|
+
}
|
|
61
|
+
}
|
|
62
|
+
</script>
|
|
63
|
+
<style lang="less">
|
|
64
|
+
#mulit-info-class {
|
|
65
|
+
width: 280px;
|
|
66
|
+
margin-right: 20px;
|
|
67
|
+
overflow-y: auto;
|
|
68
|
+
> div {
|
|
69
|
+
height: auto;
|
|
70
|
+
margin-bottom: 8px;
|
|
71
|
+
}
|
|
72
|
+
}
|
|
73
|
+
// 内容显示样式
|
|
74
|
+
.control-label {
|
|
75
|
+
height: 23px;
|
|
76
|
+
border-right: 1px solid #F2F6FA;
|
|
77
|
+
margin-bottom: 0;
|
|
78
|
+
text-align: left;
|
|
79
|
+
}
|
|
80
|
+
|
|
81
|
+
.info-content {
|
|
82
|
+
padding:6px;
|
|
83
|
+
span {
|
|
84
|
+
padding-left: 5px;
|
|
85
|
+
}
|
|
86
|
+
}
|
|
87
|
+
// 信息区域的表格显示紧凑
|
|
88
|
+
.self-table > tbody > tr > td {
|
|
89
|
+
padding: 3px;
|
|
90
|
+
text-align: center;
|
|
91
|
+
}
|
|
92
|
+
</style>
|