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

feat: 添加账期半日结字段

parent 435ab5f1
......@@ -20,10 +20,11 @@ export const orderStateNum = {
};
export const dateStateEnum = {
1: { text: '一周' },
2: { text: '个月' },
3: { text: '一个月' },
1: { text: '周结' },
2: { text: '月结' },
3: { text: '月结' },
4: { text: '日结' },
5: { text: '半日结' },
};
export const redInvoiceState = {
......
......@@ -2,10 +2,11 @@ import React from 'react';
import { Button } from 'antd';
export const dateStateEnum = {
1: { text: '一周', maxlength: 8 },
2: { text: '个月', maxlength: 4 },
3: { text: '一个月', maxlength: 2 },
1: { text: '周结', maxlength: 8 },
2: { text: '月结', maxlength: 4 },
3: { text: '月结', maxlength: 2 },
4: { text: '日结', maxlength: 10 },
5: { text: '半日结', maxlength: 10 },
};
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