sale-client 3.6.102 → 3.6.103

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sale-client",
3
- "version": "3.6.102",
3
+ "version": "3.6.103",
4
4
  "description": "收费模块前台组件",
5
5
  "main": "src/index.js",
6
6
  "scripts": {
@@ -111,7 +111,7 @@
111
111
  <input id="f_collection" class="input_search" style="width:60%" type="number" v-model="model.f_collection"
112
112
  v-validate:f_collection='{required: true, dctest: [(model.f_totalcost - 0), ">=" ] }'
113
113
  v-el:fcollection @keyup.enter="checkInvoiceMsg((!$v.valid || validateOk || !islegal || clickConfirm))"
114
- v-scale="[model.f_totalcost, row.f_fee_decimal||4]" :disabled="true"/>
114
+ v-scale="[model.f_totalcost, row.f_fee_decimal||4]" :readonly="true"/>
115
115
  </div>
116
116
  <div class="col-sm-3" v-if="row.f_collection_type === '按气量' && model.f_payment!='赠气' && row.f_meter_type.includes('卡表') && config.calculatePreByCollection">
117
117
  <label for="f_collection" class=" font_normal_body">*收&emsp;&emsp;款</label>
@@ -119,19 +119,19 @@
119
119
  v-validate:f_collection='{required: true }'
120
120
  @blur="calculatePreByCollection()"
121
121
  v-el:fcollection
122
- @keyup.enter="checkInvoiceMsg((!$v.valid || validateOk || !islegal || clickConfirm))"/>
122
+ @keyup.enter="checkInvoiceMsg((!$v.valid || validateOk || !islegal || clickConfirm))" :readonly="true"/>
123
123
  </div>
124
124
  <div class="col-sm-3" v-if="row.f_collection_type === '按气量' && model.f_payment=='赠气' && row.f_meter_type.includes('卡表')">
125
125
  <label for="f_collection" class=" font_normal_body"><font size="4px" style="font-weight:bold">*收&emsp;款</font></label>
126
126
  <input id="f_collection" class="input_search" style="width:60%;font-size: 18px;font-weight:bold;" type="number" v-model="model.f_collection"
127
127
  @blur="config.calculatePreByCollection && calculatePreByCollection()"
128
- v-el:fcollection @keyup.enter="checkInvoiceMsg((!$v.valid || validateOk || !islegal || clickConfirm))" v-scale="[model.f_totalcost, row.f_fee_decimal||4]" :disabled="true">
128
+ v-el:fcollection @keyup.enter="checkInvoiceMsg((!$v.valid || validateOk || !islegal || clickConfirm))" v-scale="[model.f_totalcost, row.f_fee_decimal||4]" :readonly="true">
129
129
  </div>
130
130
  <div class="col-sm-3" v-if="row.f_collection_type === '按金额' && row.f_meter_type.includes('卡表')">
131
131
  <label for="f_collection" class=" font_normal_body"><font size="4px" style="font-weight:bold">*收&emsp;款</font></label>
132
132
  <input id="f_collection" class="input_search" style="width:50%;font-size: 18px;font-weight:bold;" type="number" v-model="model.f_collection"
133
133
  @blur="config.calculatePreByCollection && calculatePreByCollection()"
134
- v-el:fcollection @keyup.enter="checkInvoiceMsg((!$v.valid || validateOk || !islegal || clickConfirm))" v-scale="[model.f_collection, row.f_fee_decimal||4]" :disabled="true">
134
+ v-el:fcollection @keyup.enter="checkInvoiceMsg((!$v.valid || validateOk || !islegal || clickConfirm))" v-scale="[model.f_collection, row.f_fee_decimal||4]" :readonly="true">
135
135
  </div>
136
136
  <div class="col-sm-4" v-if="!row.f_meter_type.includes('卡表')">
137
137
  <label for="f_collection" class=" font_normal_body"><font size="4px"
@@ -141,7 +141,7 @@
141
141
  v-el:fcollection
142
142
  @blur="config.calculatePreByCollection && calculatePreByCollection()"
143
143
  @keyup.enter="checkInvoiceMsg((!$v.valid || validateOk || !islegal || clickConfirm))"
144
- v-scale="[model.f_collection, row.f_fee_decimal||4]" :disabled="true">
144
+ v-scale="[model.f_collection, row.f_fee_decimal||4]" :readonly="true">
145
145
  </div>
146
146
 
147
147
  <!-- <div class="col-sm-3" v-if="row.f_collection_type === '按气量' && model.f_payment!='赠气' && row.f_meter_type.includes('卡表') && !config.calculatePreByCollection"-->