123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213 |
- <template>
- <view class="content vflex jbetween">
- <view class="">
- <view class="box">
- <view>
- <u--textarea v-model="problem" placeholder="请描述您遇到的具体问题(必填)" ></u--textarea>
- </view>
- <view class="left">图片(选填)</view>
- <view class="upload">
- <u-upload :fileList="fileList1" @afterRead="afterRead" @delete="deletePic" :maxCount="9" name="1" multiple :previewFullImage="true" width="204rpx" height="204rpx">
- </u-upload>
- </view>
- </view>
- <view class="box">
- <view class="hflex acenter">
- <view class="left">联系方式</view>
- <u-input v-model="phone" border="none" placeholder="请输入您的联系方式,以便更好的解决问题"></u-input>
- </view>
- </view>
- <view class="history" @click="toHistory">反馈记录</view>
- </view>
- <view class="btn" @click="submit">提交</view>
- </view>
- </template>
- <script>
- import $api from '@/static/js/api.js'
- var that = ''
- export default {
- data() {
- return {
- problem: '',
- fileList1: [
- ],
- phone: '',
- id: '',
- }
- },
- onLoad(options) {
- that = this
- if(options.id) {
- that.id = options.id
- that.getData(options.id)
- }
- },
- methods: {
- getData(id) {
- var pages = getCurrentPages()
- var prePage = pages[pages.length - 2]
- var list = prePage.$vm.pageList
-
- for(var i=0;i<list.length;i++) {
- if(list[i].id == id) {
- that.problem = list[i].content
- var imgs = list[i].imgs
- let obj = {}
- for(let key in imgs) {
- obj[key] = imgs[key]
- }
- var fileList1 = Object.keys(obj).map(item => ({
- url: obj[item]
- }))
- that.fileList1 = fileList1
- that.phone = list[i].phone
- }
- }
- },
- // 删除图片
- deletePic(event) {
- // that.userInfo.imgList.splice(event.index, 1)
- console.log(event)
- this[`fileList${event.name}`].splice(event.index, 1)
- },
- // 新增图片
- async afterRead(event) {
- console.log(`fileList${event.name}`);
- console.log(this[`fileList${event.name}`]);
- let lists = [].concat(event.file)
- let fileListLen = this[`fileList${event.name}`].length
- lists.map((item) => {
- this[`fileList${event.name}`].push({
- ...item,
- status: 'uploading',
- message: '上传中'
- })
- })
- for (let i = 0; i < lists.length; i++) {
- const result = await this.uploadFilePromise(lists[i].url)
- let item = this[`fileList${event.name}`][fileListLen]
- this[`fileList${event.name}`].splice(fileListLen, 1, Object.assign(item, {
- status: 'success',
- message: '',
- url: result.url
- }))
- fileListLen++
- }
- },
- // 上传图片
- uploadFilePromise(url) {
- return new Promise((resolve, reject) => {
- let a = uni.uploadFile({
- url: $api.config.baseUrl + '/data/api.auth.Center/upload',
- filePath: url,
- name: 'file',
- header: {
- 'api-token': uni.getStorageSync('token').token?uni.getStorageSync('token').token:'',
- 'api-name': 'wxapp'
- },
- formData: {
- user: 'test'
- },
- success: (res) => {
- console.log(res);
- setTimeout(() => {
- var data = JSON.parse(res.data)
- resolve(data.data)
- }, 1000)
- }
- });
- })
- },
- // 提交
- submit() {
- if($api.formCheck(that.problem,"requires") && $api.formCheck(that.phone,"phone")) {
- var imgs = ""
- if(that.fileList1.length > 0) {
- for(var i=0;i<that.fileList1.length;i++) {
- if(i == that.fileList1.length - 1) {
- imgs += that.fileList1[i].url
- } else {
- imgs += that.fileList1[i].url + ','
- }
- }
- }
- $api.req({
- url: '/data/api.auth.Center/subfeedback',
- method: 'POST',
- data: {
- content : that.problem,
- imgs: imgs,
- phone: that.phone,
- id: that.id
- }
- }, function(res) {
- if(res.code == 1) {
- console.log(res);
- $api.info(res.info)
- $api.jump('/pages/tabbar/mine/mine',3)
- }
- })
- }
- },
- toHistory() {
- $api.jump('/page_mine/pages/service/feed/history')
- }
- },
- }
- </script>
- <style lang="scss" scoped>
- .content::v-deep {
- background-color: #F5F5F5;
- padding: 20rpx 30rpx;
- .box {
- width: 100%;
- background-color: #fff;
- border-radius: 20rpx;
- box-sizing: border-box;
- padding: 32rpx 20rpx;
- margin-bottom: 20rpx;
- .left {
- font-size: 26rpx;
- color: #222222;
- margin-right: 20rpx;
- }
- .u-textarea {
- // margin: 28rpx auto 0;
- // background-color: #f4f4f4;
- // border-radius: 28rpx;
- box-sizing: border-box;
- padding: 0 0;
- width: 610rpx;
- border: none;
- }
- .upload {
- width: 100%;
- margin: 28rpx 0 24rpx;
- }
- }
- .history {
- width: 184rpx;
- height: 52rpx;
- border-radius: 26rpx;
- border: 1rpx solid #526FFF;
- margin: 34rpx auto 0;
- color: #506DFF;
- font-size: 26rpx;
- text-align: center;
- line-height: 52rpx;
- }
- .btn {
- width: 100%;
- height: 84rpx;
- background-color: #506dff;
- border-radius: 42rpx;
- font-size: 18px;
- color: #FFFFFF;
- text-align: center;
- line-height: 84rpx;
- margin-bottom: 80rpx;
- }
- }
- </style>
|