sale-client 3.6.262-test → 3.6.263-test

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.262-test",
3
+ "version": "3.6.263-test",
4
4
  "description": "收费模块前台组件",
5
5
  "main": "src/index.js",
6
6
  "scripts": {
@@ -292,7 +292,7 @@ export default {
292
292
  confirm () {
293
293
  this.eticket_msg = false
294
294
  this.eticket_show = true
295
- this.$refs.eticketbill.openETicket(this.row.id, this.row, '机表结算', this.invoice_is_pax, this.invoice_type)
295
+ this.$refs.eticketbill.openETicket([this.row.id], this.row, '机表结算', this.invoice_is_pax, this.invoice_type)
296
296
  },
297
297
  selfSearch (args) {
298
298
  this.selecteds = []
@@ -287,7 +287,7 @@
287
287
  this.eticket_msg = false
288
288
  this.disabled = false
289
289
  this.eticket_show = true
290
- this.$refs.eticketbill.openETicket(this.row.id, this.row, this.row.f_type)
290
+ this.$refs.eticketbill.openETicket([this.row.id], this.row, '是', this.invoice_is_pax, '结算收费')
291
291
  },
292
292
  eticket_toggle () {
293
293
  this.eticket_show = false
@@ -232,7 +232,7 @@ export default {
232
232
  //
233
233
  // }
234
234
  // })
235
- return this.$showAlert('已结算的记录不能再次结算开票','warning',3000)
235
+ return this.$showAlert('已结算的记录不能再次结算开票', 'warning', 3000)
236
236
  }
237
237
  let HttpReset = new HttpResetClass()
238
238
  let row = await HttpReset.load('POST', 'rs/sql/sale_getUser', {
@@ -252,7 +252,7 @@ export default {
252
252
  if (!this.row.f_address_phone) {
253
253
  this.row.f_address_phone = this.row.f_address + ' ' + this.row.f_user_phone
254
254
  }
255
- if(!this.row.f_email){
255
+ if (!this.row.f_email) {
256
256
  this.row.f_email = this.row.f_email
257
257
  }
258
258
  this.eticket_msg = true
@@ -260,7 +260,7 @@ export default {
260
260
  confirm () {
261
261
  this.eticket_msg = false
262
262
  this.eticket_show = true
263
- this.$refs.eticketbill.openETicket(this.selecteds.map(item => item.id), this.row, '是',this.invoice_is_pax, '结算收费')
263
+ this.$refs.eticketbill.openETicket(this.selecteds.map(item => item.id), this.row, '是', this.invoice_is_pax, '结算收费')
264
264
  },
265
265
  selfSearch (args) {
266
266
  this.selecteds = []