Browse Source

chore: remove npm lock file ignore (#320)

* chore: 移除npm lock忽略

* fix: 修复错误用词
develop
悠静萝莉 4 months ago
committed by GitHub
parent
commit
b696efe05d
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 4
      .gitignore
  2. 12324
      package-lock.json
  3. 2
      src/constants/index.ts
  4. 2
      src/pages/list/base/index.vue
  5. 2
      src/pages/list/components/CommonTable.vue

4
.gitignore

@ -9,5 +9,7 @@ README.html
.stylelintcache
.idea
# lock文件 请根据自身项目或团队需求选择具体的包管理工具 并移除具体的ignore的lock文件
yarn.lock
package-lock.json
pnpm-lock.yaml

12324
package-lock.json
File diff suppressed because it is too large
View File

2
src/constants/index.ts

@ -35,7 +35,7 @@ export const CONTRACT_TYPE_OPTIONS: Array<IOption> = [
// 合同收付类型枚举
export const CONTRACT_PAYMENT_TYPES = {
PAYMENT: 0,
RECIPT: 1,
RECEIPT: 1,
};
// 通知的优先级对应的TAG类型

2
src/pages/list/base/index.vue

@ -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>

2
src/pages/list/components/CommonTable.vue

@ -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>

Loading…
Cancel
Save