sale-client 3.4.189 → 3.4.192
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/build/dev-server.js +5 -4
- package/package.json +1 -1
- package/src/components/FilesManage/FileUserPhone.vue +93 -0
- package/src/components/FilesManage/UserEssentialInfoTest.vue +329 -320
- package/src/components/FilesManage/UserGeneralInfoTest.vue +8 -4
- package/src/components/charge/business/CardMeterCenter.vue +15 -70
- package/src/components/charge/business/IOTMeterCenter.vue +10 -59
- package/src/components/charge/business/OtherChargeNew.vue +1 -56
- package/src/components/charge/business/machine/MachineMeterCenter.vue +676 -728
- package/src/components/common/userinfo_detail/UserBaseInfoNew.vue +1 -1
- package/src/components/revenue/Common/EticketPrint.vue +29 -3
- package/src/components/revenue/HandManager/MbpeopleList.vue +2 -2
- package/src/components/revenue/base/leftview/meterinfodetail.vue +9 -0
- package/src/components/revenue/base/rightview/CardList.vue +38 -22
- package/src/components/revenue/comprehen/ComprehenOperation/BankPayment/BankPayment.vue +50 -25
- package/src/components/revenue/comprehen/ComprehenOperation/ChangeAccount/TransferRecords.vue +218 -0
- package/src/components/revenue/comprehen/batch/batchEditHistory.vue +2 -2
- package/src/components/webMeter/MeterManage/WebMeterBatchOperate.vue +1 -1
- package/src/filiale/liaoyuan/deductionManage.vue +25 -0
- package/src/filiale/liaoyuan/feeDeduction.vue +162 -0
- package/src/filiale/liaoyuan/feeMachine.vue +138 -0
- package/src/filiale/liaoyuan/sale.js +3 -1
- package/src/filiale/qingtongxia/MachineMeterCenter.vue +2 -0
- package/src/filiale/rongchuang/MeterinfoTest.vue +411 -422
- package/src/filiale/shaoguan/Message/MessageList.vue +2 -2
- package/src/filiale/tongchuan/UserEssentialInfoTest.vue +10 -1
- package/src/filiale/tongchuan/UserGeneralInfoTest.vue +8 -4
- package/src/filiale/tongchuan/bill/CustQueryEticket.vue +113 -39
- package/src/filiale/tongchuan/bill/EticketModal.vue +90 -0
- package/src/filiale/tongchuan/common/userinfo_detail/ic_detail/ChargeQueryUser.vue +21 -5
- package/src/filiale/tongchuan/plugins/FileManageService.js +31 -0
- package/src/filiale/tongchuan/sale.js +7 -5
- package/src/plugins/FileManageService.js +22 -0
- package/src/sale.js +4 -0
package/build/dev-server.js
CHANGED
|
@@ -10,9 +10,10 @@ var compiler = webpack(config)
|
|
|
10
10
|
|
|
11
11
|
// Define HTTP proxies to your custom API backend
|
|
12
12
|
// https://github.com/chimurai/http-proxy-middleware
|
|
13
|
-
var bendi = 'http://
|
|
13
|
+
var bendi = 'http://127.0.0.1:8080',bendi1 = 'http://121.36.106.17:8400/'
|
|
14
14
|
// 公司测试服务
|
|
15
|
-
var fuwu = 'http://192.168.50.4:8400
|
|
15
|
+
var fuwu = 'http://192.168.50.4:8400'
|
|
16
|
+
// var fuwu = 'http://121.36.106.17:8400/'
|
|
16
17
|
//铜川正式
|
|
17
18
|
// var fuwu = 'http://61.134.55.234:9999/'
|
|
18
19
|
//铜川测试
|
|
@@ -98,8 +99,8 @@ var proxyTable = {
|
|
|
98
99
|
},
|
|
99
100
|
'/rs': {
|
|
100
101
|
// target: 'http://192.168.30.63:8081/'
|
|
101
|
-
target: 'http://
|
|
102
|
-
|
|
102
|
+
// target: 'http://121.36.106.17:8400/'
|
|
103
|
+
target: bendi
|
|
103
104
|
}
|
|
104
105
|
}
|
|
105
106
|
|
package/package.json
CHANGED
|
@@ -0,0 +1,93 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<div class="auto">
|
|
3
|
+
<modal width="30%" :show.sync="show" v-ref:modal title="备用电话管理" large backdrop="false" class="">
|
|
4
|
+
<article slot="modal-body" class="modal-body">
|
|
5
|
+
<div class="text-center">
|
|
6
|
+
<div v-for="row in userphonelist">
|
|
7
|
+
<validator name='v'>
|
|
8
|
+
<form class="form-horizontal select-overspread">
|
|
9
|
+
<div class="row" v-if="row.f_state==='有效'">
|
|
10
|
+
<div class="col-sm-10 form-group">
|
|
11
|
+
<label for="f_rent_phone" class="font_normal_body">     备用电话  </label>
|
|
12
|
+
<input class="input_search"
|
|
13
|
+
style="width:50%"
|
|
14
|
+
type="text"
|
|
15
|
+
v-model="row.f_rent_phone"
|
|
16
|
+
:value.sync="row.f_rent_phone"
|
|
17
|
+
placeholder="备用电话">
|
|
18
|
+
</div>
|
|
19
|
+
<div class="col-sm-2 form-group">
|
|
20
|
+
<button type="button" class="glyphicon glyphicon-minus btn-danger" @click.stop="delphone($index,row)"></button>
|
|
21
|
+
</div>
|
|
22
|
+
</div>
|
|
23
|
+
</form>
|
|
24
|
+
</validator>
|
|
25
|
+
</div>
|
|
26
|
+
<div class="panel panel-default auto text-center" @click="addphone()" style="cursor: pointer;">
|
|
27
|
+
<span class="glyphicon glyphicon-plus"></span>
|
|
28
|
+
</div>
|
|
29
|
+
</div>
|
|
30
|
+
</article>
|
|
31
|
+
<footer slot="modal-footer" class="modal-footer">
|
|
32
|
+
<button type="button" class="btn btn-success" @click='close()'>确认</button>
|
|
33
|
+
</footer>
|
|
34
|
+
</modal>
|
|
35
|
+
</div>
|
|
36
|
+
</template>
|
|
37
|
+
<script>
|
|
38
|
+
import Vue from 'vue'
|
|
39
|
+
export default {
|
|
40
|
+
title: '备用电话管理',
|
|
41
|
+
data () {
|
|
42
|
+
return {
|
|
43
|
+
}
|
|
44
|
+
},
|
|
45
|
+
props: {
|
|
46
|
+
userphonelist: {
|
|
47
|
+
type: Array
|
|
48
|
+
},
|
|
49
|
+
show: {
|
|
50
|
+
type: Boolean,
|
|
51
|
+
default: false
|
|
52
|
+
}
|
|
53
|
+
},
|
|
54
|
+
ready () {
|
|
55
|
+
console.log('备用电话管理:',JSON.stringify(this.userphonelist))
|
|
56
|
+
},
|
|
57
|
+
methods: {
|
|
58
|
+
addphone () {
|
|
59
|
+
this.userphonelist.push({
|
|
60
|
+
f_userinfo_id: this.f_userinfo_id?this.f_userinfo_id:'',
|
|
61
|
+
f_rent_phone:'',
|
|
62
|
+
f_state: '有效',
|
|
63
|
+
f_operator: Vue.$login.f.name,
|
|
64
|
+
f_operatorid: Vue.$login.f.id,
|
|
65
|
+
f_orgid: Vue.$login.f.orgid,
|
|
66
|
+
f_orgname: Vue.$login.f.orgs,
|
|
67
|
+
f_depid: Vue.$login.f.depids,
|
|
68
|
+
f_depname: Vue.$login.f.deps
|
|
69
|
+
})
|
|
70
|
+
},
|
|
71
|
+
delphone (index,row) {
|
|
72
|
+
this.$showMessage('是否确定要删除此条数据?', ['confirm', 'cancel']).then((res) => {
|
|
73
|
+
if (res === 'confirm') {
|
|
74
|
+
if (row.id) {
|
|
75
|
+
this.userphonelist[index].f_state = '无效'
|
|
76
|
+
} else {
|
|
77
|
+
this.userphonelist.splice(index, 1)
|
|
78
|
+
}
|
|
79
|
+
}
|
|
80
|
+
})
|
|
81
|
+
},
|
|
82
|
+
close(){
|
|
83
|
+
this.show = false
|
|
84
|
+
}
|
|
85
|
+
},
|
|
86
|
+
computed: {
|
|
87
|
+
|
|
88
|
+
}
|
|
89
|
+
}
|
|
90
|
+
</script>
|
|
91
|
+
|
|
92
|
+
<style lang="less">
|
|
93
|
+
</style>
|