44 lines
955 B
Vue
44 lines
955 B
Vue
<script setup>
|
|
import { onLoad } from "@dcloudio/uni-app"
|
|
// import mySwiper from "@/components/mySwiper.vue"
|
|
import {ref,onMounted,nextTick} from "vue"
|
|
import {useStore} from '@/store/index.js'
|
|
import api from "@/api/index.js"
|
|
</script>
|
|
<template>
|
|
<view class="feedbackBox">
|
|
<view class="writeBox">
|
|
<textarea class="textarea" v-model="txt"></textarea>
|
|
</view>
|
|
<view class="btn-part">
|
|
<view class="btn">提交</view>
|
|
</view>
|
|
</view>
|
|
</template>
|
|
<style scoped lang="scss">
|
|
.feedbackBox{
|
|
padding: 20rpx;
|
|
.writeBox{
|
|
border: 2rpx solid #e2e2e2;
|
|
border-radius: 10rpx;
|
|
textarea{
|
|
width: 100%;
|
|
padding: 20rpx;
|
|
}
|
|
}
|
|
.btn-part{
|
|
position: fixed;
|
|
bottom: 40rpx;
|
|
width: 100%;
|
|
text-align: center;
|
|
.btn{
|
|
display: inline-block;
|
|
background-color: #26758d;
|
|
color: white;
|
|
padding: 20rpx 40rpx;
|
|
width: 50%;
|
|
border-radius: 20rpx;
|
|
}
|
|
}
|
|
}
|
|
</style> |