Browse Source

问题修改

莫凡 3 years ago
parent
commit
550c898fd6
1 changed files with 2 additions and 2 deletions
  1. 2 2
      src/components/SurgeryManager/index.js

+ 2 - 2
src/components/SurgeryManager/index.js

@@ -150,7 +150,7 @@ function SurgManager() {
 	{ title: '序号', dataIndex: 'index', render: (text, record, index) => (current - 1) * params.size + index + 1 },
 	{ title: '操作时间', dataIndex: 'gmtModified', },
 	{ title: '医院手术/操作名称', dataIndex: 'hisName', },
-	{ title: 'ICD-10编码', dataIndex: 'code', },
+	{ title: '手术/操作代码', dataIndex: 'code', },
 	{ title: '标准手术/操作名称', dataIndex: 'uniqueName', },
 	{ title: '标准术语状态', dataIndex: 'status',render: (text, record) => {
 		return record.status===1?'启用':record.status?'禁用':'';
@@ -182,7 +182,7 @@ function SurgManager() {
 				</Form.Item>
 			  </Col>
 			  <Col span={5} key={1}>
-				<Form.Item label="ICD-10编码" name="hisCode">
+				<Form.Item label="手术/操作代码" name="hisCode">
 				  <Input placeholder="请输入" autoComplete='off' allowClear/>
 				</Form.Item>
 			  </Col>