Skip to content

Commit 587fb16

Browse files
authored
fix(constants): RECEIPT拼写错误 (#230)
1 parent 2675463 commit 587fb16

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

src/constants/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ export const CONTRACT_TYPE_OPTIONS = [
3131
// 合同收付类型枚举
3232
export const CONTRACT_PAYMENT_TYPES = {
3333
PAYMENT: 0,
34-
RECIPT: 1,
34+
RECEIPT: 1,
3535
};
3636

3737
// 通知的优先级对应的TAG类型

src/pages/list/base/index.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@
4545
<div v-if="row.paymentType === CONTRACT_PAYMENT_TYPES.PAYMENT" class="payment-col">
4646
付款<trend class="dashboard-item-trend" type="up" />
4747
</div>
48-
<div v-if="row.paymentType === CONTRACT_PAYMENT_TYPES.RECIPT" class="payment-col">
48+
<div v-if="row.paymentType === CONTRACT_PAYMENT_TYPES.RECEIPT" class="payment-col">
4949
收款<trend class="dashboard-item-trend" type="down" />
5050
</div>
5151
</template>

src/pages/list/components/CommonTable.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@
9393
<p v-if="row.paymentType === CONTRACT_PAYMENT_TYPES.PAYMENT" class="payment-col">
9494
付款<trend class="dashboard-item-trend" type="up" />
9595
</p>
96-
<p v-if="row.paymentType === CONTRACT_PAYMENT_TYPES.RECIPT" class="payment-col">
96+
<p v-if="row.paymentType === CONTRACT_PAYMENT_TYPES.RECEIPT" class="payment-col">
9797
收款<trend class="dashboard-item-trend" type="down" />
9898
</p>
9999
</template>

0 commit comments

Comments
 (0)