diff --git a/.idea/dataSources.local.xml b/.idea/dataSources.local.xml new file mode 100644 index 0000000..e23e4d9 --- /dev/null +++ b/.idea/dataSources.local.xml @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/components/AQ/AQTabber.vue b/components/AQ/AQTabber.vue index b006813..113a605 100644 --- a/components/AQ/AQTabber.vue +++ b/components/AQ/AQTabber.vue @@ -1,156 +1,256 @@ + .fui-wrap { + //为防止标签栏遮住页面内容,页面底部需留白高度不低于标签栏高度。非Nvue端和头条小程序如果fixedHeight属性没有设置为true,则页面外层还需加入以下样式(或者在页面最底部加入`fui-safe-area` 组件)兼容异形屏: + /* #ifndef APP-NVUE */ + padding-bottom: constant(safe-area-inset-bottom); + padding-bottom: env(safe-area-inset-bottom); + /* #endif */ + } + .fui-custom__wrap { + width: 100%; + height: 600rpx; + } + .title{ + font-size: 36rpx; + text-align: center; + padding: 36rpx 0; + } + .but-style{ + width: 92%; + height: 70%; + margin: auto; + } + .but-style-top{ + width: 100%; + display: flex; + justify-content: space-between; + } + .left{ + width: 45%; + height: 180rpx; + border-radius: 16rpx; + background: #3ee9d7; + display: flex; + align-items: center; + justify-content: center; + } + .right{ + width: 45%; + height: 180rpx; + border-radius: 16rpx; + background: #fad24e; + display: flex; + align-items: center; + justify-content: center; + } + .but-style-below{ + width: 100%; + height: 180rpx; + margin-top: 36rpx; + border-radius: 16rpx; + background: #35bdae; + display: flex; + align-items: center; + justify-content: center; + } + .drop-image-x { + width: 50rpx; + height: 50rpx; + } + .title-x { + font-size: 32rpx; + color: #fff; + padding-left: 30rpx; + } + \ No newline at end of file diff --git a/pages.json b/pages.json index 13074bd..7338dc6 100644 --- a/pages.json +++ b/pages.json @@ -310,9 +310,33 @@ - - - + { + "path": "pages/market/clue/writing_followUp", + "style": { + "navigationBarTitleText": "写新跟进", + "navigationStyle": "default", + "navigationBarBackgroundColor": "#fff", + "navigationBarTextStyle": "black" + } + }, + { + "path": "pages/market/clue/new_task", + "style": { + "navigationBarTitleText": "新建任务", + "navigationStyle": "default", + "navigationBarBackgroundColor": "#fff", + "navigationBarTextStyle": "black" + } + }, + { + "path": "pages/market/clue/add_clues", + "style": { + "navigationBarTitleText": "添加线索", + "navigationStyle": "default", + "navigationBarBackgroundColor": "#fff", + "navigationBarTextStyle": "black" + } + }, { "path": "pages/market/clue/clue_info", "style": { diff --git a/pages/market/clue/add_clues.vue b/pages/market/clue/add_clues.vue new file mode 100644 index 0000000..548ca26 --- /dev/null +++ b/pages/market/clue/add_clues.vue @@ -0,0 +1,377 @@ + + + + + \ No newline at end of file diff --git a/pages/market/clue/new_task.vue b/pages/market/clue/new_task.vue new file mode 100644 index 0000000..c60e935 --- /dev/null +++ b/pages/market/clue/new_task.vue @@ -0,0 +1,213 @@ + + + + + \ No newline at end of file diff --git a/pages/market/clue/writing_followUp.vue b/pages/market/clue/writing_followUp.vue new file mode 100644 index 0000000..d319299 --- /dev/null +++ b/pages/market/clue/writing_followUp.vue @@ -0,0 +1,358 @@ + + + + + \ No newline at end of file diff --git a/static/images/index/addto.png b/static/images/index/addto.png new file mode 100644 index 0000000..443d8af Binary files /dev/null and b/static/images/index/addto.png differ diff --git a/static/images/index/task.png b/static/images/index/task.png new file mode 100644 index 0000000..c44a6d3 Binary files /dev/null and b/static/images/index/task.png differ diff --git a/static/images/index/writing.png b/static/images/index/writing.png new file mode 100644 index 0000000..01504bc Binary files /dev/null and b/static/images/index/writing.png differ