Commit 9324cacf authored by guang.wu's avatar guang.wu

feat: 添加账期半日结字段

parent 435ab5f1
...@@ -20,10 +20,11 @@ export const orderStateNum = { ...@@ -20,10 +20,11 @@ export const orderStateNum = {
}; };
export const dateStateEnum = { export const dateStateEnum = {
1: { text: '一周' }, 1: { text: '周结' },
2: { text: '个月' }, 2: { text: '月结' },
3: { text: '一个月' }, 3: { text: '月结' },
4: { text: '日结' }, 4: { text: '日结' },
5: { text: '半日结' },
}; };
export const redInvoiceState = { export const redInvoiceState = {
......
...@@ -2,10 +2,11 @@ import React from 'react'; ...@@ -2,10 +2,11 @@ import React from 'react';
import { Button } from 'antd'; import { Button } from 'antd';
export const dateStateEnum = { export const dateStateEnum = {
1: { text: '一周', maxlength: 8 }, 1: { text: '周结', maxlength: 8 },
2: { text: '个月', maxlength: 4 }, 2: { text: '月结', maxlength: 4 },
3: { text: '一个月', maxlength: 2 }, 3: { text: '月结', maxlength: 2 },
4: { text: '日结', maxlength: 10 }, 4: { text: '日结', maxlength: 10 },
5: { text: '半日结', maxlength: 10 },
}; };
export const orderStateNum = { export const orderStateNum = {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment