diff --git a/src/project/hljjm/AppChildrenInfo/AppChildrenDetail.vue b/src/project/hljjm/AppChildrenInfo/AppChildrenDetail.vue index f446673c..3ccbe04b 100644 --- a/src/project/hljjm/AppChildrenInfo/AppChildrenDetail.vue +++ b/src/project/hljjm/AppChildrenInfo/AppChildrenDetail.vue @@ -15,7 +15,7 @@ @@ -71,6 +71,9 @@ export default { methods: { view(index) { this.list[index].isView = !this.list[index].isView + }, + toView() { + uni.navigateTo({url: `./AppChildrenDetailView`}) } }, } diff --git a/src/project/hljjm/AppChildrenInfo/AppChildrenInfo.vue b/src/project/hljjm/AppChildrenInfo/AppChildrenInfo.vue index 60dfecd5..056f9a2e 100644 --- a/src/project/hljjm/AppChildrenInfo/AppChildrenInfo.vue +++ b/src/project/hljjm/AppChildrenInfo/AppChildrenInfo.vue @@ -5,7 +5,7 @@ *
儿童类型
-
请选择
+
请选择
@@ -97,6 +97,9 @@ uni-page-body { font-size: 28px; color: #333; } + .placeholder { + color: #999; + } .right-icon { position: absolute; top: 12px; diff --git a/src/project/hljjm/AppRecognize/AppRecognize.vue b/src/project/hljjm/AppRecognize/AppRecognize.vue index 6ccd1935..5d28a1af 100644 --- a/src/project/hljjm/AppRecognize/AppRecognize.vue +++ b/src/project/hljjm/AppRecognize/AppRecognize.vue @@ -2,9 +2,9 @@
-
查询/新增
+
查询/新增
-
+
查询
新增认清助养
@@ -58,6 +58,7 @@ export default { 'font-weight' : '400', 'color': '#222' }, + showAdd: false } }, onLoad() { @@ -65,10 +66,14 @@ export default { }, methods: { linkTo(url) { + this.showAdd = false uni.navigateTo({url}) }, toDetail() { uni.navigateTo({url: `./AppRecognizeDetail`}) + }, + change(e) { + this.tabIndex = e } }, } diff --git a/src/project/hljjm/AppRecognize/AppRecognizeAdd.vue b/src/project/hljjm/AppRecognize/AppRecognizeAdd.vue index 88521e42..e8886589 100644 --- a/src/project/hljjm/AppRecognize/AppRecognizeAdd.vue +++ b/src/project/hljjm/AppRecognize/AppRecognizeAdd.vue @@ -1,12 +1,159 @@ @@ -18,7 +165,8 @@ export default { data() { return { stepTitleList: [{name: '助养信息'}, {name: '助养对象'}, {name: '相关文件'}, {name: '经办人'}], - stepIndex: 0 + stepIndex: 0, + files: [] } }, onLoad() { @@ -33,6 +181,12 @@ export default { methods: { linkTo(url) { uni.navigateTo({url}) + }, + next() { + this.stepIndex ++ + }, + pre() { + this.stepIndex -- } }, } @@ -40,9 +194,153 @@ export default {