123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174 |
- <template>
- <!--pages/suggestList/suggestList.wxml-->
- <view>
- <!-- 建议列表 -->
- <view class="suggestContainer">
- <view class="suggest" @click="toSuggestDetail(item)" v-for="(item, index) in suggestion" :key="item">
- <view class="suggestion">
- <view class="suggestHead">
- <view>标题</view>
- <view class="suggestTitle">{{item.adviseTitle}}</view>
- </view>
- <view class="suggestBody">
- <view>内容摘要</view>
- <view class="suggestContent">{{item.adviseDetail}}</view>
- </view>
- </view>
- <view>
- <view class="dispose">{{item.status}}</view>
- </view>
-
- </view>
- </view>
- <!-- 开始写建议按钮 -->
- <view class="toWriteSuggestion">
- <view class="writeSuggestion" @click="toWriteSuggestion()">
- <text>开始写建议</text>
- </view>
- </view>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- suggestion: []
- };
- },
-
- onShow(){
- this.init();
- },
-
- created(){
- this.init();
- },
- methods:{
-
- async init(){
-
- const { data: result } =await uni.$http.get('/education/my-suggestion/findPersonAdvise',null)
-
- this.suggestion = result.data.data;
-
- console.log("person",result);
-
- },
-
- // 点击建议列表,跳转到对应的建议详情页
-
- toSuggestDetail(item){
- let suggestion = JSON.stringify(item)
- uni.navigateTo({
- url: '/subpkg/suggestionDetail/suggestionDetail?item=' + suggestion
- })
- },
- // 跳转到写建议页面
- toWriteSuggestion(){
- uni.navigateTo({
- url: '/subpkg/suggestionWrite/suggestionWrite'
- })
- }
-
- }
- }
- </script>
- <style lang="scss"scoped>
- /* pages/suggestList/suggestList.wxss */
-
- /* 页面背景 */
- page{
- /* height: 100%; */
- /* height: auto !important; */
- background-color: #E2F0D9;
- }
-
- /* 建议列表区 */
- .suggestContainer{
- height: 100%;
- padding-bottom: 120rpx;
- }
-
- /* 单条建议的背景 */
- .suggest{
- display: flex;
- padding: 20rpx;
- margin: 20rpx 10rpx;
- height: 140rpx;
- border-radius: 30rpx;
- background-color: #FFF2CC;
- }
-
- /* 单条建议左侧标题和内容摘要 */
- .suggestion{
- width: 75%;
- }
-
- /* 标题和内容摘要布局 */
- .suggestHead,
- .suggestBody{
- display: flex;
- }
-
- /* 摘要 */
- .suggestBody{
- margin-top: 10rpx;
- }
-
- /* 标题详情和内容详情左边距 */
- .suggestTitle,
- .suggestContent{
- margin-left: 20rpx;
- }
-
- /* 标题内容详情 */
- .suggestTitle{
- width: 65%;
- white-space: nowrap;
- overflow: hidden;
- text-overflow: ellipsis;
- }
-
- /* 内容摘要详情 */
- .suggestContent{
- width: 65%;
- overflow: hidden;
- text-overflow: ellipsis;
- display: -webkit-box;
- -webkit-box-orient: vertical;
- -webkit-line-clamp: 2;
- }
-
- /* 处理状态 */
- .dispose{
- font-weight: bold;
- color: red;
- margin-left: 30rpx;
- }
-
- /* 写建议按钮 */
- .toWriteSuggestion{
- display: flex;
- position: relative;
- justify-content: center;
- }
- .writeSuggestion{
- text-align: center;
- position: fixed;
- bottom: 0rpx;
- width: 100%;
- height: 120rpx;
- line-height: 120rpx;
- background-color: #E2F0D9;
- }
- .writeSuggestion text{
- background-color: #8FAADC;
- font-size: 36rpx;
- color: white;
- border-radius: 30rpx;
- padding: 10rpx 20rpx;
- }
- </style>
|