commit edccf1a538503873551a309ac18bf4c38e8e4ae9 Author: Lee-1203 <342694918@qq.com> Date: Mon Jan 17 18:27:44 2022 +0800 first diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..aa556e5 --- /dev/null +++ b/.gitignore @@ -0,0 +1,22 @@ + +# dependencies +**/node_modules + +.idea +.DS_Store + +# misc +npm-debug.log* +yarn-error.log +yarn.lock +package-lock.json +*bak + +# visual studio code +.vscode +.history +*.log +functions/* +.temp/** + +.eslintcache diff --git a/.mini-ide/launch.json b/.mini-ide/launch.json new file mode 100644 index 0000000..ec899f6 --- /dev/null +++ b/.mini-ide/launch.json @@ -0,0 +1,7 @@ +{ + // 使用 IntelliSense 了解相关属性。 + // 悬停以查看现有属性的描述。 + // 欲了解更多信息,请访问: https://go.microsoft.com/fwlink/?linkid=830387 + "version": "0.2.0", + "configurations": [] +} diff --git a/app.acss b/app.acss new file mode 100644 index 0000000..6da9fac --- /dev/null +++ b/app.acss @@ -0,0 +1,131 @@ +*{ + margin: 0; + padding: 0; + box-sizing: border-box; +} +.body{ + width: 100vw; + min-height: 100vh; + padding-bottom: 180rpx; + background-color: #edeff2; + font-family: 'Open Sans', sans-serif; + color: #6a859c; + overflow: hidden; +} +input::-webkit-input-placeholder, +textarea::-webkit-input-placeholder{ + color: #999999; + font-weight: normal; +} +.header{ + line-height: 128rpx; + font-size: 36rpx; + text-align: center; + border-bottom: 4rpx solid #69b9ff; + font-weight: 600; +} +.content{ + width: 94%; + margin: 0 auto; +} +.head{ + display: flex; + align-items: center; + padding: 0 2%; + line-height: 116rpx; + font-size: 28rpx; + text-align: center; + border-bottom: 4rpx solid #69b9ff; +} +.head>navigator{ + width: 10%; + font-weight: normal; +} +.head>text{ + font-size: 32rpx; + width: 90%; + text-align: center; + font-weight: 600; +} +.head .head-txt{ + display: block; + line-height: 44rpx; +} + +.pull-btns{ + display: inline-block; + height: 76rpx; + line-height: 76rpx; + padding: 0 30rpx; + margin-left: 50%; + transform: translateX(-50%); +} +checkbox{ + width: 0 !important; + height: 0 !important; + border: 0; + background: none; + overflow: hidden; + position: relative; +} +.checkbox-text{ + margin-left: 8rpx; +} +.a-checkbox-checked{ + background-color: #2e80b6; +} +checkbox+.point{ + box-sizing: border-box; + width: 26rpx; + height: 26rpx; + border: 2rpx solid #cccccc; + border-radius: 4rpx; + background-color: #FFFFFF; +} +.a-checkbox-checked+.point{ + background-color:#2e80b6; + background-image: url(/static/success.png); + background-position: center; + background-repeat: no-repeat; + background-size: 18rpx 18rpx; +} +radio{ + width: 0 !important; + height: 0 !important; + border: 0; + background: none; + overflow: hidden; +} +label{ + flex-shrink: 0; +} +.radio-text{ + line-height: 40rpx; + margin-left: 8rpx; +} +.a-radio-checked{ + background-color: #2e80b6; +} +radio+.point{ + box-sizing: border-box; + width: 28rpx; + height: 28rpx; + border: 2rpx solid #cccccc; + border-radius: 100%; + background-color: #FFFFFF; + position: relative; +} +.a-radio-checked+.point{ + border: 2rpx solid #2e80b6; +} +.a-radio-checked+.point>text{ + display: block; + width: 16rpx; + height: 16rpx; + border-radius: 100%; + background-color:#2e80b6; + position: absolute; + left: 50%; + top: 50%; + transform: translate(-50%,-50%); +} \ No newline at end of file diff --git a/app.js b/app.js new file mode 100644 index 0000000..a8bb15e --- /dev/null +++ b/app.js @@ -0,0 +1,11 @@ +App({ + onLaunch(options) { + // 第一次打开 + // options.query == {number:1} + console.info('App onLaunch'); + }, + onShow(options) { + // 从后台被 scheme 重新打开 + // options.query == {number:1} + }, +}); diff --git a/app.json b/app.json new file mode 100644 index 0000000..9b72cad --- /dev/null +++ b/app.json @@ -0,0 +1,17 @@ +{ + "pages": [ + "pages/index/index", + "components/otherBar/otherBar", + "components/tabBar/tabBar", + "pages/counselor/account/bind/bind", + "pages/counselor/free/freedetail/freedetail", + "pages/counselor/personal/list/list", + "pages/counselor/personal/detail/detail", + "pages/examinee/expert/questions/questions", + "pages/examinee/expert/detail/detail", + "pages/examinee/service/answer/answer", + "pages/examinee/information/report/report", + "pages/examinee/information/revise/revise", + "pages/counselor/position/position" + ] +} \ No newline at end of file diff --git a/components/otherBar/otherBar.acss b/components/otherBar/otherBar.acss new file mode 100644 index 0000000..43eb05d --- /dev/null +++ b/components/otherBar/otherBar.acss @@ -0,0 +1,73 @@ +.nav-tabs { + width: 100%; + height: 132rpx; + display: flex; + align-items: center; + justify-content: space-around; + position: fixed; + bottom: 0; + background: #bec3c7; +} + +.tab-list { + display: flex; + align-items: center; + justify-content: center; + flex-direction: column-reverse; + position: relative; +} +.bar-news{ + width: 36rpx; + height: 36rpx; + font-size: 24rpx; + line-height: 36rpx; + background-color: red; + color: #FFFFFF; + border-radius: 100%; + position: absolute; + text-align: center; + font-weight: 300; + top: 4rpx; + right: 4rpx; +} +.tab-text { + box-sizing: content-box; + width: 68rpx; + font-size: 32rpx; + line-height: 40rpx; + padding: 25rpx 38rpx; + color: #2e80b6; +} + +.iconPath { + width:54rpx; + height: 54rpx; +} + +.default { + width: 19%; + color: #eee; + font-size: 28rpx; +} + +.active { + background: #FFFFFF; + font-weight: bold; + border-top: 2rpx solid #bf3a30; +} + +/* tabbar切换选中的文字颜色 */ + +/* .active text { + color: #2697EB !important; +} */ + +.show { + display: block; + flex: 1; +} + +.hidden { + display: none; + flex: 1; +} \ No newline at end of file diff --git a/components/otherBar/otherBar.axml b/components/otherBar/otherBar.axml new file mode 100644 index 0000000..1f9e961 --- /dev/null +++ b/components/otherBar/otherBar.axml @@ -0,0 +1,24 @@ + + + + + + + + + + + + {{item.text}} + {{item.news}} + + + \ No newline at end of file diff --git a/components/otherBar/otherBar.js b/components/otherBar/otherBar.js new file mode 100644 index 0000000..a136043 --- /dev/null +++ b/components/otherBar/otherBar.js @@ -0,0 +1,75 @@ +Component({ + mixins: [], + data: {}, + props: {}, + didMount() {}, + didUpdate() {}, + didUnmount() {}, + methods: {}, +}); +Page({ + data: { + currentTab: 0, + items: [ + { + // "iconPath": "/image/icon_component.png", + // "selectedIconPath": "/image/icon_component.png", + "text": "个人信息" + }, + { + // "iconPath": "/image/yingyong.png", + // "selectedIconPath": "/image/yingyong.png", + "text": "公益问答", + "news": "6" + }, + { + // "iconPath": "/image/icon_biz.png", + // "selectedIconPath": "/image/icon_biz.png", + "text": "收费咨询" + }, + { + // "iconPath": "/image/icon_biz.png", + // "selectedIconPath": "/image/icon_biz.png", + "text": "账号密码" + } + ] + }, + onLoad() { + dd.setNavigationBar({ + title: '阿里云・有谱志愿咨询师端', + backgroundColor: '#FFFFFF', + }); + }, + swichNav: function (e) { + let that = this; + if (this.data.currentTab === e.target.dataset.current) { + return false; + } else { + that.setData({ + currentTab: e.target.dataset.current + }) + } + if (this.data.currentTab === 0){ + dd.setNavigationBar({ + title: '阿里云・有谱志愿咨询师端', + backgroundColor: '#FFFFFF', + }); + }else if(this.data.currentTab === 1){ + dd.setNavigationBar({ + title: '公益问答', + backgroundColor: '#FFFFFF', + }); + } + else if(this.data.currentTab === 2){ + dd.setNavigationBar({ + title: '收费咨询监理', + backgroundColor: '#FFFFFF', + }); + }else if(this.data.currentTab === 3){ + dd.setNavigationBar({ + title: '登录密码', + backgroundColor: '#FFFFFF', + }); + } + } +}) diff --git a/components/otherBar/otherBar.json b/components/otherBar/otherBar.json new file mode 100644 index 0000000..118a3ce --- /dev/null +++ b/components/otherBar/otherBar.json @@ -0,0 +1,9 @@ +{ + "component": true, + "usingComponents": { + "personal":"/pages/counselor/personal/personal", + "free":"/pages/counselor/free/free", + "supervisor":"/pages/examinee/supervisor/supervisor", + "account":"/pages/counselor/account/account" + } +} \ No newline at end of file diff --git a/components/tabBar/tabBar.acss b/components/tabBar/tabBar.acss new file mode 100644 index 0000000..1d74291 --- /dev/null +++ b/components/tabBar/tabBar.acss @@ -0,0 +1,59 @@ +.nav-tabs { + width: 100%; + height: 132rpx; + display: flex; + align-items: center; + justify-content: space-around; + position: fixed; + bottom: 0; + background: #bec3c7; +} + +.tab-list { + display: flex; + align-items: center; + justify-content: center; + flex-direction: column-reverse; +} + +.tab-text { + box-sizing: content-box; + width: 68rpx; + font-size: 32rpx; + line-height: 40rpx; + padding: 25rpx 38rpx; + color: #2e80b6; +} + +.iconPath { + width:54rpx; + height: 54rpx; +} + +.default { + width: 19%; + color: #eee; + font-size: 28rpx; +} + +.active { + background: #FFFFFF; + font-weight: bold; + border-top: 2rpx solid #bf3a30; +} + +/* tabbar切换选中的文字颜色 */ + +/* .active text { + color: #2697EB !important; +} */ + +.show { + display: block; + flex: 1; +} + +.hidden { + display: none; + flex: 1; +} \ No newline at end of file diff --git a/components/tabBar/tabBar.axml b/components/tabBar/tabBar.axml new file mode 100644 index 0000000..1eee596 --- /dev/null +++ b/components/tabBar/tabBar.axml @@ -0,0 +1,23 @@ + + + + + + + + + + + + {{item.text}} + + + \ No newline at end of file diff --git a/components/tabBar/tabBar.js b/components/tabBar/tabBar.js new file mode 100644 index 0000000..e762b40 --- /dev/null +++ b/components/tabBar/tabBar.js @@ -0,0 +1,74 @@ +Component({ + mixins: [], + data: {}, + props: {}, + didMount() {}, + didUpdate() {}, + didUnmount() {}, + methods: {}, +}); +Page({ + data: { + currentTab: 0, + items: [ + { + // "iconPath": "/image/icon_component.png", + // "selectedIconPath": "/image/icon_component.png", + "text": "专家列表" + }, + { + // "iconPath": "/image/yingyong.png", + // "selectedIconPath": "/image/yingyong.png", + "text": "免费咨询" + }, + { + // "iconPath": "/image/icon_biz.png", + // "selectedIconPath": "/image/icon_biz.png", + "text": "咨询监理" + }, + { + // "iconPath": "/image/icon_biz.png", + // "selectedIconPath": "/image/icon_biz.png", + "text": "考生信息" + } + ] + }, + onLoad() { + dd.setNavigationBar({ + title: '阿里云・有谱志愿咨询(公益)', + backgroundColor: '#FFFFFF', + }); + }, + swichNav: function (e) { + let that = this; + if (this.data.currentTab === e.target.dataset.current) { + return false; + } else { + that.setData({ + currentTab: e.target.dataset.current + }); + } + if (this.data.currentTab === 0){ + dd.setNavigationBar({ + title: '阿里云・有谱志愿咨询(公益)', + backgroundColor: '#FFFFFF', + }); + }else if(this.data.currentTab === 1){ + dd.setNavigationBar({ + title: '免费咨询', + backgroundColor: '#FFFFFF', + }); + } + else if(this.data.currentTab === 2){ + dd.setNavigationBar({ + title: '咨询监理', + backgroundColor: '#FFFFFF', + }); + }else if(this.data.currentTab === 3){ + dd.setNavigationBar({ + title: '考生信息', + backgroundColor: '#FFFFFF', + }); + } + } +}) diff --git a/components/tabBar/tabBar.json b/components/tabBar/tabBar.json new file mode 100644 index 0000000..f0801ea --- /dev/null +++ b/components/tabBar/tabBar.json @@ -0,0 +1,9 @@ +{ + "component": true, + "usingComponents": { + "expert":"/pages/examinee/expert/expert", + "service":"/pages/examinee/service/service", + "supervisor":"/pages/examinee/supervisor/supervisor", + "information":"/pages/examinee/information/information" + } +} \ No newline at end of file diff --git a/pages/counselor/account/account.acss b/pages/counselor/account/account.acss new file mode 100644 index 0000000..bc6a899 --- /dev/null +++ b/pages/counselor/account/account.acss @@ -0,0 +1,28 @@ +.account{ + padding: 20rpx; + background-color: #FFFFFF; + border-radius: 16rpx; + margin-top: 20rpx; +} +.account-item{ + margin-bottom: 20rpx; +} +.account-title{ + font-size: 32rpx; + line-height: 60rpx; + font-weight: bold; +} +.account-input{ + box-sizing: border-box; + background-color: #FFFFFF; + width: 100%; + height: 76rpx; + line-height: 76rpx; + padding: 0 24rpx; + border: 2rpx solid #cccccc; + color: #333333; + font-size: 28rpx; +} +.account-btn{ + margin: 10rpx 50% 20rpx; +} \ No newline at end of file diff --git a/pages/counselor/account/account.axml b/pages/counselor/account/account.axml new file mode 100644 index 0000000..22caf29 --- /dev/null +++ b/pages/counselor/account/account.axml @@ -0,0 +1,31 @@ + \ No newline at end of file diff --git a/pages/counselor/account/account.js b/pages/counselor/account/account.js new file mode 100644 index 0000000..c0ca8b0 --- /dev/null +++ b/pages/counselor/account/account.js @@ -0,0 +1,9 @@ +Component({ + mixins: [], + data: {}, + props: {}, + didMount() {}, + didUpdate() {}, + didUnmount() {}, + methods: {}, +}); diff --git a/pages/counselor/account/account.json b/pages/counselor/account/account.json new file mode 100644 index 0000000..467ce29 --- /dev/null +++ b/pages/counselor/account/account.json @@ -0,0 +1,3 @@ +{ + "component": true +} diff --git a/pages/counselor/account/bind/bind.acss b/pages/counselor/account/bind/bind.acss new file mode 100644 index 0000000..b9142fa --- /dev/null +++ b/pages/counselor/account/bind/bind.acss @@ -0,0 +1,39 @@ +.bind-content{ + padding-top: 10rpx; +} +.bind{ + padding: 20rpx; + background-color: #FFFFFF; + border-radius: 16rpx; + margin-top: 20rpx; +} +.bind-item{ + margin-bottom: 20rpx; +} +.bind-title{ + font-size: 32rpx; + line-height: 60rpx; + font-weight: bold; +} +.bind-input{ + box-sizing: border-box; + background-color: #FFFFFF; + width: 100%; + height: 76rpx; + line-height: 76rpx; + padding: 0 24rpx; + border: 2rpx solid #cccccc; + color: #333333; + font-size: 28rpx; +} +.bind-tips{ + font-size: 32rpx; + line-height: 48rpx; + color:#bf3a30; + font-style: italic; + text-align: center; + padding: 20rpx 0; +} +.bind-btn{ + margin: 20rpx 50%; +} \ No newline at end of file diff --git a/pages/counselor/account/bind/bind.axml b/pages/counselor/account/bind/bind.axml new file mode 100644 index 0000000..9af3df6 --- /dev/null +++ b/pages/counselor/account/bind/bind.axml @@ -0,0 +1,22 @@ + + + + + + 绑定咨询师帐号(手机号码) + + + + + + 密码 + + + + + 提示:咨询师帐号由管理后台派发,如果您没有帐号,将不能使用本应用;如果忘记密码,找管理员重置! + + + + + \ No newline at end of file diff --git a/pages/counselor/account/bind/bind.js b/pages/counselor/account/bind/bind.js new file mode 100644 index 0000000..550ba32 --- /dev/null +++ b/pages/counselor/account/bind/bind.js @@ -0,0 +1,9 @@ +Page({ + data: {}, + onLoad() { + dd.setNavigationBar({ + title: '登录', + backgroundColor: '#FFFFFF', + }); + }, +}); diff --git a/pages/counselor/account/bind/bind.json b/pages/counselor/account/bind/bind.json new file mode 100644 index 0000000..a97367d --- /dev/null +++ b/pages/counselor/account/bind/bind.json @@ -0,0 +1,3 @@ +{ + "usingComponents": {} +} diff --git a/pages/counselor/free/free.acss b/pages/counselor/free/free.acss new file mode 100644 index 0000000..3125fcc --- /dev/null +++ b/pages/counselor/free/free.acss @@ -0,0 +1,76 @@ +.ask-body{ + padding-bottom: 0; +} +.ask-content{ + width: 100%; + padding: 0 3% 180rpx; + margin: 20rpx 0 0 0; +} +.ask-item{ + height: 154rpx; + padding: 20rpx; + border-bottom: 2rpx solid #ecf0f1; + background-color: #FFF; +} +.ask-item>navigator{ + display: flex; + justify-content: space-between; + align-items: center; +} +.ask-img{ + width: 106rpx; + height: 114rpx; + border-radius: 6rpx; + overflow: hidden; + position: relative; +} +.ask-img image{ + width: 100%; + height: 100%; +} +.ask-img>text{ + display: none; + width: 24rpx; + height: 24rpx; + border-radius: 100%; + background-color: red; + position: absolute; + top: 0; + right: 0; +} +.ask-item.unread .ask-img>text{ + display: block; +} + +.ask-txt{ + width: calc(100% - 120rpx); +} +.ask-txt>view{ + display: flex; + justify-content: space-between; + align-items: center; + font-size: 32rpx; + line-height: 60rpx; + color: #2d3e4f; +} +.ask-item:hover .ask-txt{ + text-decoration: underline; +} +.ask-txt>view>view{ + width: calc(100% - 80rpx); +} +.ask-txt>view>text{ + width: 80rpx; + font-size: 28rpx; +} +.ask-txt>text{ + display: block; + font-size: 28rpx; + line-height: 54rpx; + overflow: hidden; + white-space: nowrap; + text-overflow:ellipsis; +} +.ask-item:hover .ask-txt>text{ + color: #551a8b; +} \ No newline at end of file diff --git a/pages/counselor/free/free.axml b/pages/counselor/free/free.axml new file mode 100644 index 0000000..7b4db7f --- /dev/null +++ b/pages/counselor/free/free.axml @@ -0,0 +1,210 @@ + + + + + + + + + + + + + 北京-李保田-01 + + 16:33 + + 志愿填报从哪里着手?孩子叭啦叭啦叭啦叭啦叭啦叭啦叭啦叭啦叭啦叭啦叭啦叭啦... + + + + + + + + + + + + + 北京-李保田-01 + + 16:33 + + 志愿填报从哪里着手?孩子叭啦叭啦叭啦叭啦叭啦叭啦叭啦叭啦叭啦叭啦叭啦叭啦... + + + + + + + + + + + + + 北京-李保田-01 + + 16:33 + + 志愿填报从哪里着手?孩子叭啦叭啦叭啦叭啦叭啦叭啦叭啦叭啦叭啦叭啦叭啦叭啦... + + + + + + + + + + + + + 北京-李保田-01 + + 16:33 + + 志愿填报从哪里着手?孩子叭啦叭啦叭啦叭啦叭啦叭啦叭啦叭啦叭啦叭啦叭啦叭啦... + + + + + + + + + + + + + 北京-李保田-01 + + 16:33 + + 志愿填报从哪里着手?孩子叭啦叭啦叭啦叭啦叭啦叭啦叭啦叭啦叭啦叭啦叭啦叭啦... + + + + + + + + + + + + + 北京-李保田-01 + + 16:33 + + 志愿填报从哪里着手?孩子叭啦叭啦叭啦叭啦叭啦叭啦叭啦叭啦叭啦叭啦叭啦叭啦... + + + + + + + + + + + + + 北京-李保田-01 + + 16:33 + + 志愿填报从哪里着手?孩子叭啦叭啦叭啦叭啦叭啦叭啦叭啦叭啦叭啦叭啦叭啦叭啦... + + + + + + + + + + + + + 北京-李保田-01 + + 16:33 + + 志愿填报从哪里着手?孩子叭啦叭啦叭啦叭啦叭啦叭啦叭啦叭啦叭啦叭啦叭啦叭啦... + + + + + + + + + + + + + 北京-李保田-01 + + 16:33 + + 志愿填报从哪里着手?孩子叭啦叭啦叭啦叭啦叭啦叭啦叭啦叭啦叭啦叭啦叭啦叭啦... + + + + + + + + + + + + + 北京-李保田-01 + + 16:33 + + 志愿填报从哪里着手?孩子叭啦叭啦叭啦叭啦叭啦叭啦叭啦叭啦叭啦叭啦叭啦叭啦... + + + + + + + + + + + + + 北京-李保田-01 + + 16:33 + + 志愿填报从哪里着手?孩子叭啦叭啦叭啦叭啦叭啦叭啦叭啦叭啦叭啦叭啦叭啦叭啦... + + + + + + + + + + + + + 北京-李保田-01 + + 16:33 + + 志愿填报从哪里着手?孩子叭啦叭啦叭啦叭啦叭啦叭啦叭啦叭啦叭啦叭啦叭啦叭啦... + + + + + + \ No newline at end of file diff --git a/pages/counselor/free/free.js b/pages/counselor/free/free.js new file mode 100644 index 0000000..c0ca8b0 --- /dev/null +++ b/pages/counselor/free/free.js @@ -0,0 +1,9 @@ +Component({ + mixins: [], + data: {}, + props: {}, + didMount() {}, + didUpdate() {}, + didUnmount() {}, + methods: {}, +}); diff --git a/pages/counselor/free/free.json b/pages/counselor/free/free.json new file mode 100644 index 0000000..467ce29 --- /dev/null +++ b/pages/counselor/free/free.json @@ -0,0 +1,3 @@ +{ + "component": true +} diff --git a/pages/counselor/free/freedetail/freedetail.acss b/pages/counselor/free/freedetail/freedetail.acss new file mode 100644 index 0000000..cffe367 --- /dev/null +++ b/pages/counselor/free/freedetail/freedetail.acss @@ -0,0 +1,142 @@ +.askdetail-body{ + padding-bottom: 30rpx; +} +.askdetail-head>text{ + font-weight: normal; +} +.askdetail .section{ + background-color: #FFFFFF; + padding: 20rpx 40rpx; + margin-top: 20rpx; + border-radius: 16rpx; +} +.askdetail .section>text{ + font-size: 32rpx; + line-height: 54rpx; +} +.ask-question>text:first-child{ + font-weight: 600; +} +.askdetail-title{ + font-size: 32rpx; + line-height: 80rpx; + font-weight: bold; +} +.askdetail .row{ + display: flex; + justify-content: space-between; + align-items: center; + width: 270rpx; + height: 76rpx; + line-height: 76rpx; + background-color: #f3f3f3; + padding: 0 24rpx; + border: 2rpx solid #cccccc; + color: #333333; + font-size: 28rpx; + background-color: #FFFFFF; + border: 0; +} +.askdetail .row>view{ + width: 90%; +} +.askdetail .row>image{ + width: 30rpx; + height: 30rpx; +} + +.askdetail-textarea{ + box-sizing: border-box; + background-color: #FFFFFF; + width: 100%; + height: 240rpx; + padding: 16rpx 24rpx; + line-height: 42rpx; + border: 2rpx solid #cccccc; + color: #333333; + font-size: 28rpx; + margin-bottom: 10rpx; + border: 0; +} +.askdetail-cherck{ + font-size: 32rpx; + line-height: 80rpx; + overflow: hidden; +} +.askdetail-cherck>label{ + display: flex; + align-items: center; +} +.askdetail-cherck checkbox{ + width: 26rpx; + height: 26rpx; +} + +.askdetail-txt{ + display: flex; + justify-content: space-between; + align-items: center; + margin-bottom: 30rpx; +} +.askdetail-btn{ + display: inline-block; + height: 76rpx; + line-height: 76rpx; + padding: 0 30rpx; + margin: 28rpx 50% 10rpx; + transform: translateX(-50%); + background-color: #3898EC; + border: 0; +} +.askdetail-other{ + border-top: 2rpx solid #2e9dff; + margin-top: 20rpx; +} +.askdetail-other>.section{ + padding: 20rpx !important; + border-radius: 0 !important; +} +.askdetail-reply{ + background-color: #a1caee !important; +} +.askdetail-comment{ + background-color: #f3da96 !important; + margin-top: 30rpx !important; +} + + +.my-answer, +.user-evaluation{ + background-color: #FFFFFF; + padding: 20rpx; + margin-top: 20rpx; + border-radius: 16rpx; +} +.my-answer{ + margin-top: 60rpx; +} +.answer-title, +.evaluation-title{ + font-size: 32rpx; + line-height: 50rpx; +} +.answer-txt>text, +.evaluation-txt>text{ + display: block; + font-size: 28rpx; + line-height: 50rpx; + text-align: justify; + font-weight: 300; + margin: 20rpx 0; +} +.answer-txt>text navigator{ + display: inline-block; + text-decoration: underline; + color: #551a8b; + cursor: pointer; +} +.evaluation-txt>text>text{ + font-size: 36rpx; + color: #bf3a30; + font-weight: 600; +} \ No newline at end of file diff --git a/pages/counselor/free/freedetail/freedetail.axml b/pages/counselor/free/freedetail/freedetail.axml new file mode 100644 index 0000000..c4526d6 --- /dev/null +++ b/pages/counselor/free/freedetail/freedetail.axml @@ -0,0 +1,98 @@ + + + + + + 客户电话:未留 + 客户钉钉号:未留 + + + + + 考籍:北京 + 选科:历史、化学、生物 + 性别:女 + 高考年份:2022 + 艺考:否 + 体考:否 + + + + 问题: + 志愿填报该从哪里入手呢志愿填报该从哪里入手呢志愿填报该从哪里入手呢志愿填报该从哪里入手呢志愿填报该从哪里入手呢? + + + + + 我的回复 + +