123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294 |
- <!-- 我要报修-->
- <template>
- <view class="pageBg">
- <view class="content">
- <view class="topBack" :style="{marginTop:phoneHeight + 'px'}">
- <image src="../../static/icon_back@2x(1).png" style="width:48rpx ;height: 48rpx;margin-left: 36rpx;margin-top: 18rpx;"
- @tap="back"></image>
- </view>
- <view class="topImg">
- <image src="../../static/guarantee_icon_guarantee@2x.png" style="width: 100%;height: 100%;"></image>
- </view>
- <view class="topTitle">
- 我要报修
- </view>
- <view class="main">
- <image src="../../static/appraise_bgimage@2x.png" style="width: 100%;height: 100%;"></image>
- <image src="../../static/guarantee_icon_summary@2x.png" class="mainImg"></image>
- <view class="fa">报修摘要</view>
- <view class="star">
- <input placeholder="请填写报修摘要" style="width:95%;height: 100%;margin: 0 auto;" v-model="digest" />
- </view>
- <image src="../../static/guarantee_icon_content@2x.png" class="contentImg"></image>
- <view class="contentTitle">
- 报修内容
- </view>
- <view class="textContent">
- <textarea placeholder="请填写报修内容" style="width: 95%;height: 96%;margin-left: 10rpx;margin-top: 10rpx;" v-model="textRea"></textarea>
- </view>
- <!-- 图片盒字 -->
- <view style="width:646rpx;height: 114rpx;position: absolute;left: 24rpx;bottom: 40rpx;display: flex;">
- <view style="height: 114rpx;margin-right: 10rpx;display: flex;justify-content: space-between;" v-show="imgData">
- <image style="width: 114rpx;height: 114rpx;margin-right: 10rpx;" :src="item" v-for="(item,index) in imgData" :key="index"></image>
- </view>
- <image src="../../static/circle_image@2x.png" style="width: 114rpx;height: 114rpx;" @tap="uploadImg(item)"></image>
- </view>
- </view>
- </view>
- <button class="submit" :class="{active:digest && textRea}" @tap="submit" :loading="isloading">提交</button>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- isloading: false, //加载
- digest: '', //报修摘要
- textRea: '', //评价内容
- starNum: 0, //星星数量
- phoneHeight: 0, //手机状态栏的高度
- isShow: false,
- imgData: []
- }
- },
- components: {},
- created() {
- // 获取状态栏的高度
- this.phoneHeight = uni.getSystemInfoSync().statusBarHeight
- },
- methods: {
- // 选择评分
- changeRate(e) {
- this.starNum = e.value
- },
- // 图片上传
- uploadImg(item) {
- if (this.imgData.length == 3) {
- uni.showToast({
- "icon": 'none',
- title: "最多可以上传三张图片"
- })
- return
- } else {
- uni.chooseImage({
- count: 3, //默认9
- sizeType: ['original', 'compressed'], //可以指定是原图还是压缩图,默认二者都有
- // sourceType: ['album'], //从相册选择
- success: (res) => {
- console.log(res)
- var successUp = 0; //成功个数
- var failUp = 0; //失败个数
- var length = res.tempFilePaths.length; //总共个数
- var i = 0; //第几个
- this.uploadDIY(res.tempFilePaths, successUp, failUp, i, length);
- },
- });
- }
- },
- // 上传图片
- uploadDIY(filePaths, successUp, failUp, i, length) {
- wx.uploadFile({
- filePath: filePaths[i],
- url: 'https://www.szdeao.com/wxapplet/upload/imgPhoto ', //仅为示例,非真实的接口地址
- name: 'photo',
- method: 'post',
- success: (resp) => {
- let data =JSON.parse(resp.data)
- console.log(data)
- let reg=/,$/gi;
- let str=data.data.imagesPath.replace(reg,"");
- this.imgData.push(str)
- console.log(this.imgData)
- successUp++;
- },
- fail: (res) => {
- failUp++;
- },
- complete: () => {
- i++;
- if (i == length) {
-
- } else { //递归调用uploadDIY函数
- this.uploadDIY(filePaths, successUp, failUp, i, length);
- }
- },
- });
- },
- // 提交
- submit() {
- if (!this.digest || !this.textRea || !this.imgData) {
- return
- } else {
- this.isloading = true
- this.http.httpRequest('/wxapplet/ownerreprair/add', 'post', {
- userId: uni.getStorageSync('userId'),
- createBy: uni.getStorageSync('createBy'),
- content: this.textRea,
- PhotosUrlList: this.imgData,
- reprairType: this.digest,
- ownerPhone: uni.getStorageSync('phoneNumber')
- }, true).then((res) => {
- console.log(res)
- if (res.code == 0) {
- this.isloading = false
- uni.navigateTo({
- url: './repairSuccess'
- })
- } else {
- this.isLoading = false
- uni.showToast({
- title: res.msg,
- 'icon': 'none'
- })
- }
- })
- }
- },
- // 返回上一层
- back() {
- uni.navigateBack({
- delta: 1
- })
- }
- },
- }
- </script>
- <style scoped>
- .submit {
- width: 702rpx;
- height: 90rpx;
- background: rgba(244, 244, 244, 1);
- opacity: 1;
- border-radius: 18rpx;
- font-size: 32rpx;
- font-family: PingFang SC;
- font-weight: bold;
- color: rgba(204, 204, 204, 1);
- position: absolute;
- bottom: 56rpx;
- left: 26rpx;
- text-align: center;
- line-height: 90rpx;
- }
- .textContent {
- width: 646rpx;
- height: 168rpx;
- background: rgba(246, 250, 255, 1);
- border: 2rpx solid rgba(197, 224, 255, 1);
- opacity: 1;
- border-radius: 6rpx;
- position: absolute;
- left: 24rpx;
- bottom: 180rpx;
- }
- .contentImg {
- width: 33rpx;
- height: 40rpx;
- position: absolute;
- bottom: 460rpx;
- left: 330rpx;
- }
- .contentTitle {
- width: 116rpx;
- height: 40rpx;
- font-size: 28rpx;
- font-family: PingFang SC;
- font-weight: bold;
- color: rgba(41, 138, 253, 1);
- position: absolute;
- bottom: 388rpx;
- left: 290rpx;
- }
- .star {
- width: 646rpx;
- height: 80rpx;
- display: flex;
- justify-content: space-between;
- position: absolute;
- left: 24rpx;
- top: 164rpx;
- background: rgba(246, 250, 255, 1);
- border: 2rpx solid rgba(197, 224, 255, 1);
- opacity: 1;
- border-radius: 6rpx;
- }
- .starImg {
- width: 51rpx;
- height: 49rpx;
- }
- .fa {
- width: 116rpx;
- height: 40rpx;
- font-size: 28rpx;
- font-family: PingFang SC;
- font-weight: bold;
- color: rgba(41, 138, 253, 1);
- position: absolute;
- top: 114rpx;
- left: 288rpx;
- }
- .mainImg {
- width: 40rpx;
- height: 46rpx;
- position: absolute;
- top: 40rpx;
- left: 326rpx;
- }
- .main {
- width: 692rpx;
- height: 844rpx;
- margin: 0 auto;
- margin-top: 24rpx;
- position: relative;
- }
- .topTitle {
- width: 128rpx;
- height: 44rpx;
- font-size: 32rpx;
- font-family: PingFang SC;
- font-weight: 400;
- color: rgba(255, 255, 255, 1);
- margin: 0 auto;
- margin-top: 26rpx;
- }
- .topImg {
- width: 122rpx;
- height: 122rpx;
- margin: 0 auto;
- margin-top: 4rpx;
- }
- .pageBg {
- width: 100%;
- height: 100vh;
- background: linear-gradient(180deg, rgba(205, 227, 255, 1) 0%, rgba(133, 188, 255, 1) 100%);
- opacity: 1;
- }
- .content {
- width: 100%;
- position: absolute;
- top: 0;
- }
- .active {
- color: rgba(255, 255, 255, 1);
- background: rgba(41, 138, 253, 1);
- opacity: 1;
- }
- </style>
|