32 lines
793 B
JavaScript
32 lines
793 B
JavaScript
/*
|
|
* Author: 黎永顺
|
|
* Description: 起始编号及预留编号设置
|
|
* Date: 2022-05-17 15:51:41
|
|
* LastEditTime: 2022-05-17 16:01:33
|
|
*/
|
|
import React, { Component, Fragment } from "react";
|
|
import { WeaFormItem } from "ecCom";
|
|
|
|
class StartReservedNumberSet extends Component {
|
|
render() {
|
|
return (
|
|
<Fragment>
|
|
<WeaFormItem
|
|
label="起始编号"
|
|
labelCol={{ span: 8 }}
|
|
wrapperCol={{ span: 16 }}>
|
|
<i className="icon-coms-Flow-setting"></i>
|
|
</WeaFormItem>
|
|
<WeaFormItem
|
|
label="预留编号"
|
|
labelCol={{ span: 8 }}
|
|
wrapperCol={{ span: 16 }}>
|
|
<i className="icon-coms-Flow-setting"></i>
|
|
</WeaFormItem>
|
|
</Fragment>
|
|
);
|
|
}
|
|
}
|
|
|
|
export default StartReservedNumberSet;
|