123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231 |
- <template>
- <view class="all">
- <ujp-navbar title="意见反馈"></ujp-navbar>
- <view class="message">
- <view class="message-form">
- <u-form :model="subForm" ref="uForm" label-width ="100">
- <u-form-item label-width="0">
- <u-input :customStyle="customStyle" :placeholderStyle="placeholderStyle" v-model="subForm.content" type="textarea" placeholder="请描述您的意见" height="200"/>
- </u-form-item>
- <u-form-item label-width="0">
- <view class="upload">
- <u-upload max-count="3" name="photoFile"
- ref="uUpload"
- :form-data="formData" :header="header" :action="action"
- :file-list="listPic" ></u-upload>
- </view>
- </u-form-item>
- <u-form-item >
- <u-input :customStyle="customStyle" :placeholderStyle="placeholderStyle" v-model="subForm.telephone" placeholder="请留下联系方式,方便我们与您取得联系(必填)" />
- </u-form-item>
- </u-form>
- </view>
- </view>
- <u-button class="login-btn" type="success" shape="circle" @click="submit">提交</u-button>
- </view>
- </template>
- <script>
- import * as API from '@/apis/user.js'
- import * as WxJsApi from '@/utils/wxJsApi'
-
- export default {
- data() {
- return {
- elderMode:false,
- customStyle:{
- 'font-size':'28rpx'
- },
- placeholderStyle:"font-size:28rpx",
- isReady:false,
- imgBase64: '',
- listPic: [],
- action:"",
- formData:{},
- header:{
-
- },
- subForm: {
- content: '',
- imgUrl: '',
- telephone: ''
- }
- }
- },onLoad() {
- this.action=process.car.BASE_URL+"uploadPicture"
-
- this.formData.subFolder="/team51/message"
- //接口应该免登陆
- var token=this.carhelp.getToken()
-
- this.header={
-
- 'Authorization':token
- }
- //获取微信配置
- WxJsApi.getWxConfig(['getLocation','addEventListener']).then((res)=>{
-
- this.isReady=true;
- //(res)
-
- }).catch(error => {
- //(res)
- })
- },
- onReady(){
- this.elderMode = this.carhelp.get('getElderModeClass') == '长辈模式';
- if(this.elderMode)
- this.theme('elder')
- else
- this.theme('standard')
- },
- methods: {
- theme(type) {
-
- if(type == 'elder')
- {
- document.getElementsByTagName('body')[0].setAttribute('data-theme',type);
- let data = {
- "font-size":'32rpx',
- };
- this.customStyle = data;
- this.placeholderStyle = "font-size:32rpx";//data;
- }
- else
- {
- document.getElementsByTagName('body')[0].setAttribute('data-theme',type);
- let data = {
- "font-size":'28rpx'
- };
- this.customStyle = data;
- this.placeholderStyle = "font-size:28rpx";//data;
- }
- },
- //微信选择图片
- chooseImage() {
- WxJsApi.chooseImage().then(res => {
- var localData = res.localData;
-
- if (localData.indexOf('data:image') != 0) {
- //判断是否有这样的头部
- localData = 'data:image/jpeg;base64,' + localData
- }
- localData = localData.replace(/\r|\n/g, '').replace('data:image/jgp', 'data:image/jpeg')
- this.imgBase64 = localData;
- this.uploadpic();
- }).catch(error => {
- mui.toast(error);
- })
- },
- //上传图片
- uploadpic() {
- uni.showLoading({
- title: "加载中",
- mask: true,
- })
-
- WxJsApi.uploadPic(this.imgBase64).then(response => {
- this.isLoading = false;
-
- this.listPic.push(response);
- }).catch(error => {
- this.isLoading = false;
- mui.toast(error);
- })
- },
- //表单检测
- checkFrom() {
- if (!this.subForm.content) {
-
- uni.showToast({
- title: "请输入内容"
- })
- return false;
- } else {
- return true;
- }
- },
- //提交
- submit() {
- let files = [];
- // 通过filter,筛选出上传进度为100的文件(因为某些上传失败的文件,进度值不为100,这个是可选的操作)
- files = this.$refs.uUpload.lists.filter(val => {
- return val.progress == 100;
- })
- // 如果您不需要进行太多的处理,直接如下即可
- // files = this.$refs.uUpload.lists;
-
- //(files);
-
- var imgUrl=files.map(item=>{
- return item.response.data;
- })
- //(imgUrl);
- this.subForm.imgUrl = imgUrl.join(',');
-
-
- if (this.checkFrom()) {
- this.subForm.picUrl = this.listPic.join(',');
- uni.showLoading({
- title: "加载中",
- mask: true,
- })
-
- API.feedback(this.subForm).then(response => {
-
- uni.hideLoading()
- uni.showModal({
- title: '提示',
- content: '提交成功',
- showCancel:false,
- success: res=>{
- if (res.confirm) {
- uni.navigateBack({
-
- })
- } else if (res.cancel) {
- //('用户点击取消');
- }
- }
- });
-
-
- }).catch(error => {
-
- uni.showToast({
- title: error
- })
- })
- }
- },
- }
- }
- </script>
- <style lang="scss" scoped>
- @import "@/_theme.scss";
- .all{
- @include themeify{
- font-size: themed('font-size2');
- }
- }
-
- .upload{
- width: 100%;
- }
- .message-form{
- padding:0 10px;
- margin-bottom: 10px;
- background-color: #fff;
- }
- .login-btn {
- margin: 28px ;
- background-color:#00B962!important;
- border-color: #00B962!important;
- color:#fff!important;
- @include themeify{
- font-size: themed('font-size3');
- }
- }
- </style>
|