mirror of
https://github.com/Tencent/tdesign-vue-next-starter.git
synced 2024-11-10 12:48:23 +08:00
fix(constants): RECEIPT
拼写错误 (#230)
This commit is contained in:
parent
267546321f
commit
587fb161c7
|
@ -31,7 +31,7 @@ export const CONTRACT_TYPE_OPTIONS = [
|
||||||
// 合同收付类型枚举
|
// 合同收付类型枚举
|
||||||
export const CONTRACT_PAYMENT_TYPES = {
|
export const CONTRACT_PAYMENT_TYPES = {
|
||||||
PAYMENT: 0,
|
PAYMENT: 0,
|
||||||
RECIPT: 1,
|
RECEIPT: 1,
|
||||||
};
|
};
|
||||||
|
|
||||||
// 通知的优先级对应的TAG类型
|
// 通知的优先级对应的TAG类型
|
||||||
|
|
|
@ -45,7 +45,7 @@
|
||||||
<div v-if="row.paymentType === CONTRACT_PAYMENT_TYPES.PAYMENT" class="payment-col">
|
<div v-if="row.paymentType === CONTRACT_PAYMENT_TYPES.PAYMENT" class="payment-col">
|
||||||
付款<trend class="dashboard-item-trend" type="up" />
|
付款<trend class="dashboard-item-trend" type="up" />
|
||||||
</div>
|
</div>
|
||||||
<div v-if="row.paymentType === CONTRACT_PAYMENT_TYPES.RECIPT" class="payment-col">
|
<div v-if="row.paymentType === CONTRACT_PAYMENT_TYPES.RECEIPT" class="payment-col">
|
||||||
收款<trend class="dashboard-item-trend" type="down" />
|
收款<trend class="dashboard-item-trend" type="down" />
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
|
@ -93,7 +93,7 @@
|
||||||
<p v-if="row.paymentType === CONTRACT_PAYMENT_TYPES.PAYMENT" class="payment-col">
|
<p v-if="row.paymentType === CONTRACT_PAYMENT_TYPES.PAYMENT" class="payment-col">
|
||||||
付款<trend class="dashboard-item-trend" type="up" />
|
付款<trend class="dashboard-item-trend" type="up" />
|
||||||
</p>
|
</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" />
|
收款<trend class="dashboard-item-trend" type="down" />
|
||||||
</p>
|
</p>
|
||||||
</template>
|
</template>
|
||||||
|
|
Loading…
Reference in New Issue
Block a user