sale-client 3.4.122 → 3.4.125
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/package.json +2 -2
- package/src/components/charge/ChargeList.vue +5 -5
- package/src/components/charge/business/CardMeterCenter.vue +899 -899
- package/src/components/charge/business/ChangeMeterAddGas.vue +559 -559
- package/src/components/charge/business/IOTMeterCenter.vue +9 -14
- package/src/components/charge/business/NoCardMeterCenter.vue +1 -1
- package/src/components/charge/business/machine/MachineMeterCenter.vue +1 -1
- package/src/components/charge/business/refund/IOTRefund.vue +237 -236
- package/src/components/charge/gasloss/gasLossOperate.vue +2 -2
- package/src/components/revenue/Common/PrintBill.vue +8 -1
- package/src/components/revenue/base/leftview/SafeCheck.vue +311 -311
- package/src/components/revenue/comprehen/ComprehenOperation/OtherGas/OtherGas.vue +1 -1
- package/src/components/revenue/comprehen/ComprehenOperation/OverCharge/OverUseCharge.vue +1 -1
- package/src/filiale/gaomi/components/ShowCardSellGas.vue +5 -0
- package/src/filiale/jinbin/ShowCardSellGas.vue +5 -0
- package/src/filiale/jingwei/ShowCardSellGas.vue +5 -0
- package/src/filiale/macheng/MessageList.vue +420 -420
- package/src/filiale/macheng/UserDeviceInfoTest.vue +3 -3
- package/src/filiale/qianneng/CardList.vue +482 -0
- package/src/filiale/qianneng/MachineCharge.vue +8 -8
- package/src/filiale/qianneng/gasLossRecords.vue +299 -0
- package/src/filiale/qianneng/machine/MachineMeterCenter.vue +1 -1
- package/src/filiale/qianneng/sale.js +5 -2
- package/src/filiale/rongcheng/ShowCardSellGas.vue +5 -0
- package/src/filiale/rongchuang/ShowCardSellGas.vue +5 -0
- package/src/filiale/rongchuang/Userinfo.vue +176 -0
- package/src/filiale/rongchuang/sale.js +3 -1
- package/src/filiale/shaoguan/ShowCardSellGas.vue +5 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "sale-client",
|
|
3
|
-
"version": "3.4.
|
|
3
|
+
"version": "3.4.125",
|
|
4
4
|
"description": "收费模块前台组件",
|
|
5
5
|
"main": "src/index.js",
|
|
6
6
|
"scripts": {
|
|
@@ -88,7 +88,7 @@
|
|
|
88
88
|
"style-loader": "^0.20.3",
|
|
89
89
|
"system-clients": "3.2.0-2",
|
|
90
90
|
"url-loader": "^0.5.7",
|
|
91
|
-
"vue-client": "1.24.
|
|
91
|
+
"vue-client": "1.24.49",
|
|
92
92
|
"vue-clipboard2": "0.3.1",
|
|
93
93
|
"vue-hot-reload-api": "^1.2.0",
|
|
94
94
|
"vue-html-loader": "^1.0.0",
|
|
@@ -98,11 +98,6 @@
|
|
|
98
98
|
condition="i.f_user_level = '{}'"
|
|
99
99
|
close-on-select style="width: 60%"></v-select>
|
|
100
100
|
</div>
|
|
101
|
-
<div class="form-group col-sm-3">
|
|
102
|
-
<label class="font_normal_body">卡  号</label>
|
|
103
|
-
<input type="text" class="input_search" style="width:60%" v-model="model.f_card_id" placeholder='卡号'
|
|
104
|
-
condition="f_card_id like '%{}%'">
|
|
105
|
-
</div>
|
|
106
101
|
<div class="form-group col-sm-3" >
|
|
107
102
|
<label class="font_normal_body">组织机构</label>
|
|
108
103
|
<res-select :initresid='$parent.$parent.curorgid'
|
|
@@ -112,6 +107,11 @@
|
|
|
112
107
|
style="width: 60%">
|
|
113
108
|
</res-select>
|
|
114
109
|
</div>
|
|
110
|
+
<div class="form-group col-sm-3">
|
|
111
|
+
<label class="font_normal_body">卡  号</label>
|
|
112
|
+
<input type="text" class="input_search" style="width:60%" v-model="model.f_card_id" placeholder='卡号'
|
|
113
|
+
condition="f_card_id like '%{}%'">
|
|
114
|
+
</div>
|
|
115
115
|
<div class="form-group col-sm-3">
|
|
116
116
|
<label class="font_normal_body">使用类型</label>
|
|
117
117
|
<v-select v-model="model.f_usetype"
|