| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219 |
- <template>
- <view class="intro-page common">
- <view class="top-class"></view>
- <view class="title">
- 意见反馈
- </view>
- <view class="head">
- <u-row class="row-class">
- <u-col span="4">
- <image class="logo-img"
- src="https://hyscancode.oss-cn-hangzhou.aliyuncs.com/xiaochengxu/cjx/logo.png"
- mode="aspectFit" />
- </u-col>
- <u-col span="4">
- <image class="commodity-img"
- src="https://hyscancode.oss-cn-hangzhou.aliyuncs.com/xiaochengxu/cjx/commodity.png"
- mode="aspectFit" />
- </u-col>
- <u-col span="4">
- <image class="logo-rules"
- src="https://hyscancode.oss-cn-hangzhou.aliyuncs.com/xiaochengxu/cjx/rules.png"
- @click="openDetail" />
- </u-col>
- </u-row>
- </view>
- <view class="topImg">
- <image class="img_1" src="https://hyscancode.oss-cn-hangzhou.aliyuncs.com/xiaochengxu/cjx/topImg.png"
- mode="heightFix" />
- </view>
- <view class="content">
- <view class="cardTop"></view>
- <view class="content_text">
- <view class="intro-content">
- <view> 超吉炫低纤槟榔胶果消费者反馈表 </view>
- <view> 亲爱的消费者: </view>
- <view> 感谢您选择超吉炫低纤槟榔胶果!为了能给您带来更优质的产品和服务体验,我们诚挚地邀请您填写这份反馈表。您的宝贵意见对我们至关重要,我们会认真对待每一条反馈。若您的建议被采纳,将有机会获得超吉炫精心准备的礼品哦!
- </view>
- </view>
- <view class="from">
- <view class="filter-btn-group">
- <view class="row-text">留言类型:</view>
- <view v-for="(item, idx) in filterOptions" :key="idx"
- :class="['filter-btn', filterStatus === item.value ? 'active' : '']"
- @click="onFilterChange(item.value)">
- {{ item.label }}
- </view>
- </view>
- <u--form labelPosition="left" :model="model1" :rules="rules" ref="uForm">
- <u-form-item label="留言人姓名:" prop="userInfo.name" ref="item1">
- <u--input v-model="model1.userInfo.name" border="none" color="#fff"></u--input>
- </u-form-item>
- <u-form-item label="联系电话:" prop="userInfo.tel" ref="item1">
- <u--input v-model="model1.userInfo.tel" border="none" color="#fff"></u--input>
- </u-form-item>
- <u-form-item label="E-mail:" prop="userInfo.mail" ref="item1">
- <u--input v-model="model1.userInfo.mail" border="none" color="#fff"></u--input>
- </u-form-item>
- <u-form-item label="留言:" ref="item1">
- <u--textarea v-model="model1.userInfo.liuyan" border="none" color="#fff"></u--textarea>
- </u-form-item>
- </u--form>
- </view>
- </view>
- <view class="return_view" style="justify-content: space-around;">
- <view class="return-button" @click="saveData">保存</view>
- <view class="return-button" @click="goBack">返回</view>
- </view>
- </view>
- <u-toast ref="uToast"></u-toast>
- </view>
- </template>
- <script>
- import {
- feed
- } from '@/api/scan'
- import feedbackMixin from '@/mixins/feedbackMixin.js'
- export default {
- mixins: [feedbackMixin],
- methods: {
- saveData() {
- // 调用 mixin 中的方法,传入特定的 API 函数
- this.baseSaveData(feed, (data) => {
- // 可以在这里添加特定的成功回调处理
- });
- },
- goBack() {
- this.baseGoBack();
- },
- openDetail() {
- this.baseOpenDetail("cjx");
- },
- onFilterChange(val) {
- this.baseOnFilterChange(val);
- },
- }
- }
- </script>
- <style lang="scss" scoped>
- @import url('../../../static/scss/common_cjx.css');
- .row-class {
- height: 80rpx;
- }
- .cardTop{
- background-image:
- url("https://hyscancode.oss-cn-hangzhou.aliyuncs.com/xiaochengxu/cjx/yjfk.png");
- }
- .theme-text {
- height: 10vh;
- text-align: center;
- line-height: 11vh;
- .textImage {
- height: 80rpx;
- width: 400rpx;
- }
- }
- ::v-deep .u-form-item__body__left {
- width: 160rpx !important;
- }
- ::v-deep .u-form-item__body__left__content__label {
- font-weight: bold;
- font-size: 26rpx !important;
- color: #FFFFFF !important;
- }
- ::v-deep .u-form-item__body__right {
- border: 1px solid #DE00FF !important;
- }
- ::v-deep .u-textarea {
- background-color: rgba(0, 0, 0, 0) !important;
-
- }
- ::v-deep .u-textarea__field{
- color:#fff !important;
- }
- ::v-deep .u-form-item__body {
- display: flex;
- flex-direction: row;
- padding: 0 0 !important;
- padding-top: 10rpx !important;
- }
- ::v-deep .u-form-item__body__right__message {
- margin-left: 160rpx !important;
- }
- .filter-btn-group {
- display: flex;
- justify-content: flex-start;
- align-items: center;
- gap: 24rpx;
- margin: 10rpx 0 10rpx 0;
- }
- .filter-btn {
- padding: 4rpx 20rpx;
- border: 2rpx solid #DE00FF;
- color: #DE00FF;
- font-size: 28rpx;
- transition: all 0.2s;
- margin-left: 10rpx;
- }
- .filter-btn.active {
- background: #DE00FF;
- color: #fff;
- border: 2rpx solid #DE00FF;
- }
- .row-text {
- font-weight: bold;
- font-size: 26rpx;
- color: #FFFFFF;
- }
- .content {
- height: 69vh;
- overflow: auto;
- margin: 0 32rpx;
- padding: 32rpx 24rpx 24rpx 24rpx;
- background-image:
- url("https://hyscancode.oss-cn-hangzhou.aliyuncs.com/xiaochengxu/cjx/cardBgi.png");
- background-size: cover;
- background-position: center;
- background-repeat: no-repeat;
- }
- .savaBtn {
- margin-top: 10px;
- font-weight: 600;
- }
- .intro-content {
- font-weight: 500;
- font-size: 28rpx;
- color: #F5F5F5;
- }
- </style>
|