Skip to content

Commit

Permalink
fix: 修复错误用词
Browse files Browse the repository at this point in the history
  • Loading branch information
timi137137 committed May 11, 2024
1 parent 3441ec2 commit c8fcec4
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/constants/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ export const CONTRACT_TYPE_OPTIONS: Array<IOption> = [
// 合同收付类型枚举
export const CONTRACT_PAYMENT_TYPES = {
PAYMENT: 0,
RECIPT: 1,
RECEIPT: 1,
};

// 通知的优先级对应的TAG类型
Expand Down
2 changes: 1 addition & 1 deletion src/pages/list/base/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@
付款
<trend class="dashboard-item-trend" type="up" />
</p>
<p v-if="row.paymentType === CONTRACT_PAYMENT_TYPES.RECIPT" class="payment-col">
<p v-if="row.paymentType === CONTRACT_PAYMENT_TYPES.RECEIPT" class="payment-col">
收款
<trend class="dashboard-item-trend" type="down" />
</p>
Expand Down
2 changes: 1 addition & 1 deletion src/pages/list/components/CommonTable.vue
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@
付款
<trend class="dashboard-item-trend" type="up" />
</p>
<p v-if="row.paymentType === CONTRACT_PAYMENT_TYPES.RECIPT" class="payment-col">
<p v-if="row.paymentType === CONTRACT_PAYMENT_TYPES.RECEIPT" class="payment-col">
收款
<trend class="dashboard-item-trend" type="down" />
</p>
Expand Down

0 comments on commit c8fcec4

Please sign in to comment.