diff --git a/src/api/index.ts b/src/api/index.ts index 8d8f434..89071b9 100644 --- a/src/api/index.ts +++ b/src/api/index.ts @@ -74,3 +74,12 @@ export function ai(data: any) { data }) } + +//填写表单 +export function specialSign(data: any) { + return request.http({ + url: '/api/huiqitong/special/sign', + method: 'POST', + data + }) +} diff --git a/src/pages.json b/src/pages.json index 83a108e..42d41e0 100644 --- a/src/pages.json +++ b/src/pages.json @@ -67,6 +67,13 @@ "navigationStyle": "custom" } }, + { + "path": "pages/index/subform", + "style": { + "navigationBarTitleText": "提交页面", + "navigationStyle": "custom" + } + }, { "path": "pages/index/shoppage/shopHelp", "style": { diff --git a/src/pages/index/ChatDialog.vue b/src/pages/index/ChatDialog.vue index bcca831..eb07058 100644 --- a/src/pages/index/ChatDialog.vue +++ b/src/pages/index/ChatDialog.vue @@ -36,6 +36,7 @@ 小微企业优惠政策 2025年最新小微企业优惠政策 + 法律服务 diff --git a/src/pages/index/index.vue b/src/pages/index/index.vue index 7cbfa26..b923ba7 100644 --- a/src/pages/index/index.vue +++ b/src/pages/index/index.vue @@ -70,16 +70,16 @@ - + @@ -268,6 +268,13 @@ const gohydetail = (id) => { }) } +const gotz = (id,url) =>{ + uni.navigateToMiniProgram({ + appId: id, + path: url + }) +} + const getbqlist = async () => { filterTabs.value = [] await memberTagList().then((res) => { diff --git a/src/pages/index/shoppage/makeAssistance.vue b/src/pages/index/shoppage/makeAssistance.vue index bc89e3f..94f76a0 100644 --- a/src/pages/index/shoppage/makeAssistance.vue +++ b/src/pages/index/shoppage/makeAssistance.vue @@ -85,9 +85,7 @@ const submit = () => { duration: 1500, success() { setTimeout(() => { - uni.navigateTo({ - url: '/pages/index/shoppage/interactiveZone' - }) + uni.navigateBack() }, 1500) } }) diff --git a/src/pages/index/subform.vue b/src/pages/index/subform.vue new file mode 100644 index 0000000..803fb31 --- /dev/null +++ b/src/pages/index/subform.vue @@ -0,0 +1,189 @@ + + + + + \ No newline at end of file diff --git a/src/pages/index/ztdetail.vue b/src/pages/index/ztdetail.vue index e651a90..78e4887 100644 --- a/src/pages/index/ztdetail.vue +++ b/src/pages/index/ztdetail.vue @@ -1,83 +1,128 @@ + .container { + background-color: #ffffff; + height: calc(100vh - 350rpx); + width: 100%; + padding: 48rpx; + box-sizing: border-box; + overflow-y: auto; + + .titlepart { + display: flex; + align-items: baseline; + margin-bottom: 40rpx; + + .title { + font-family: Source Han Sans; + font-weight: 550; + font-size: 36rpx; + color: #0c092a; + margin-left: 20rpx; + } + } + + .text { + margin-top: 32rpx; + font-family: Source Han Sans; + font-size: 32rpx; + font-weight: 300; + line-height: 60rpx; + letter-spacing: normal; + color: #3d3d3d; + } + + .fbtime { + font-family: Roboto; + font-size: 28rpx; + font-weight: normal; + line-height: 142rpx; + letter-spacing: normal; + /* 外部/SCMP Grey/nobel */ + /* 样式描述:06 Small Grey txt */ + color: #a1a1a1; + } + } + + .baombut { + width: 100%; + padding: 36rpx 0; + display: flex; + align-items: center; + justify-content: center; + box-shadow: 0rpx 0rpx 20rpx 0rpx rgba(0, 0, 0, 0.3); + background: #FFFFFF; + position: fixed; + bottom: 0; + + .buttt { + width: 574rpx; + height: 96rpx; + border-radius: 248rpx; + background: linear-gradient(90deg, #007FFF 0%, #99CCFF 100%); + font-family: Source Han Sans; + font-size: 36rpx; + color: #FFFFFF; + display: flex; + align-items: center; + justify-content: center; + } + } + \ No newline at end of file