diff --git a/src/view/dealer/bspay_create_user.vue b/src/view/dealer/bspay_create_user.vue
index 4d30cf4..2a4f7ee 100755
--- a/src/view/dealer/bspay_create_user.vue
+++ b/src/view/dealer/bspay_create_user.vue
@@ -763,7 +763,10 @@ export default {
if (this.form.license_validity_type != null && this.form.license_validity_type !== '') {
this.form.license_validity_type = Number(this.form.license_validity_type)
}
- if (this.form.legal_cert_validity_type != null && this.form.legal_cert_validity_type !== '') {
+ if (
+ this.form.legal_cert_validity_type != null &&
+ this.form.legal_cert_validity_type !== ''
+ ) {
this.form.legal_cert_validity_type = Number(this.form.legal_cert_validity_type)
}
this.form.license_regions_id = [
diff --git a/src/view/mall/goods/physical/list.vue b/src/view/mall/goods/physical/list.vue
index 061d303..5cc8f32 100755
--- a/src/view/mall/goods/physical/list.vue
+++ b/src/view/mall/goods/physical/list.vue
@@ -1760,7 +1760,10 @@ export default {
if (this.selectionItems.length > 0) {
this.saleCategoryForm.item_id = this.selectionItems.map((item) => item.item_id)
const categoryIds = await this.resolveSelectionSaleCategoryIds()
- this.saleCategoryForm.category_id = this.getSaleCategoryPaths(this.categoryList, categoryIds)
+ this.saleCategoryForm.category_id = this.getSaleCategoryPaths(
+ this.categoryList,
+ categoryIds
+ )
this.saleCategoryDialog = true
} else {
this.$message.error(this.$t('dc9cefd6.ace302'))
diff --git a/src/view/mall/trade/list.vue b/src/view/mall/trade/list.vue
index b051aad..249f3fc 100755
--- a/src/view/mall/trade/list.vue
+++ b/src/view/mall/trade/list.vue
@@ -143,7 +143,9 @@
- {{ formatMoneyWithSymbol(scope.row.discountFee, getCurrencySymbol(scope.row)) }}
+ {{
+ formatMoneyWithSymbol(scope.row.discountFee, getCurrencySymbol(scope.row))
+ }}
@@ -220,7 +222,9 @@
{{ scope.row.payFee }} {{ $t('35ec026d.9f68a8') }}
- {{ formatMoneyWithSymbol(scope.row.payFee, getCurrencySymbol(scope.row)) }}
+ {{
+ formatMoneyWithSymbol(scope.row.payFee, getCurrencySymbol(scope.row))
+ }}
@@ -280,7 +284,10 @@
{{
scope.row.self_delivery_fee
- ? formatMoneyWithSymbol(scope.row.self_delivery_fee, getCurrencySymbol(scope.row))
+ ? formatMoneyWithSymbol(
+ scope.row.self_delivery_fee,
+ getCurrencySymbol(scope.row)
+ )
: ''
}}
diff --git a/src/view/mall/trade/normalorders/list.vue b/src/view/mall/trade/normalorders/list.vue
index e8e3f11..0aaa99f 100755
--- a/src/view/mall/trade/normalorders/list.vue
+++ b/src/view/mall/trade/normalorders/list.vue
@@ -390,9 +390,7 @@
>
{{ scope.row.fee_symbol || '¥'
- }}{{
- (scope.row.freight_fee / 100 + scope.row.freight_point_fee / 100).toFixed(2)
- }}
+ }}{{ (scope.row.freight_fee / 100 + scope.row.freight_point_fee / 100).toFixed(2) }}
diff --git a/src/views/settings/systemConfig/payment.vue b/src/views/settings/systemConfig/payment.vue
index 7f6b04d..8bc4a9b 100644
--- a/src/views/settings/systemConfig/payment.vue
+++ b/src/views/settings/systemConfig/payment.vue
@@ -1204,15 +1204,11 @@ export default {
if (newEnabled && paymentItem.name === 'doumen_intl') {
try {
- await this.$confirm(
- '请确认是否启用斗门国际收银台,启用会默认关闭其他支付方式',
- '提示',
- {
- confirmButtonText: '确定',
- cancelButtonText: '取消',
- type: 'warning'
- }
- )
+ await this.$confirm('请确认是否启用斗门国际收银台,启用会默认关闭其他支付方式', '提示', {
+ confirmButtonText: '确定',
+ cancelButtonText: '取消',
+ type: 'warning'
+ })
} catch {
paymentItem.enabled = false
return
@@ -1290,11 +1286,7 @@ export default {
}
}
- if (
- payType !== 'doumen_intl' &&
- params.is_open === 'true' &&
- this.isDoumenIntlEnabled()
- ) {
+ if (payType !== 'doumen_intl' && params.is_open === 'true' && this.isDoumenIntlEnabled()) {
throw new Error('请先关闭斗门国际收银台')
}