|
@@ -23,7 +23,7 @@ import 'package:router/path/router_path.dart';
|
|
|
|
|
|
import 'job_template_add_state.dart';
|
|
|
|
|
|
-/**
|
|
|
+/*
|
|
|
* 模板的添加与编辑
|
|
|
*/
|
|
|
class JobTemplateAddPage extends BaseStatelessPage<JobTemplateAddController> {
|
|
@@ -124,24 +124,24 @@ class JobTemplateAddPage extends BaseStatelessPage<JobTemplateAddController> {
|
|
|
selectedOptions: state.indexEntity?.ageList.where((e) => e.checked == "checked").map((e) => e.txt!).toList() ?? [],
|
|
|
).marginOnly(left: 15, right: 15, top: 10),
|
|
|
|
|
|
- //性别
|
|
|
- MyTextView(
|
|
|
- "Gender".tr,
|
|
|
- textColor: Colors.white,
|
|
|
- fontSize: 14,
|
|
|
- isFontRegular: true,
|
|
|
- marginLeft: 15,
|
|
|
- marginTop: 15,
|
|
|
- ),
|
|
|
-
|
|
|
- //性别单选
|
|
|
- CustomRadioCheck(
|
|
|
- options: state.indexEntity?.sexList.map((e) => e.txt!).toList() ?? [],
|
|
|
- onOptionSelected: (index, text) {
|
|
|
- state.gender = state.indexEntity!.sexList[index].value;
|
|
|
- },
|
|
|
- selectedPosition: state.indexEntity?.sexList.indexWhere((e) => e.checked == "checked") ?? -1,
|
|
|
- ).marginOnly(left: 15, right: 15, top: 10),
|
|
|
+ // //性别
|
|
|
+ // MyTextView(
|
|
|
+ // "Gender".tr,
|
|
|
+ // textColor: Colors.white,
|
|
|
+ // fontSize: 14,
|
|
|
+ // isFontRegular: true,
|
|
|
+ // marginLeft: 15,
|
|
|
+ // marginTop: 15,
|
|
|
+ // ),
|
|
|
+ //
|
|
|
+ // //性别单选
|
|
|
+ // CustomRadioCheck(
|
|
|
+ // options: state.indexEntity?.sexList.map((e) => e.txt!).toList() ?? [],
|
|
|
+ // onOptionSelected: (index, text) {
|
|
|
+ // state.gender = state.indexEntity!.sexList[index].value;
|
|
|
+ // },
|
|
|
+ // selectedPosition: state.indexEntity?.sexList.indexWhere((e) => e.checked == "checked") ?? -1,
|
|
|
+ // ).marginOnly(left: 15, right: 15, top: 10),
|
|
|
|
|
|
//语言
|
|
|
MyTextView(
|