Commit 583af469 authored by 秦威威's avatar 秦威威

最新版

parent 4b440e3c
...@@ -43,8 +43,6 @@ ...@@ -43,8 +43,6 @@
images: { images: {
immediate: true, immediate: true,
handler(newVal, oldVal) { handler(newVal, oldVal) {
// console.log(newVal)
// console.log(this.fileList)
this.fileList = [] this.fileList = []
if (newVal) { if (newVal) {
const urlList = newVal.split(",") const urlList = newVal.split(",")
...@@ -70,7 +68,6 @@ ...@@ -70,7 +68,6 @@
}, },
// 新增图片 // 新增图片
async afterRead(event, type) { async afterRead(event, type) {
// console.log(event, type, "et")
let lists = [].concat(event.file) let lists = [].concat(event.file)
let fileListLen = this.fileList.length let fileListLen = this.fileList.length
lists.map((item) => { lists.map((item) => {
...@@ -80,13 +77,9 @@ ...@@ -80,13 +77,9 @@
message: '上传中' message: '上传中'
}) })
}) })
// console.log(lists, "listslistslistslists")
for (let i = 0; i < lists.length; i++) { for (let i = 0; i < lists.length; i++) {
const result = await this.$wskj.uploadImg(lists[i].url) const result = await this.$wskj.uploadImg(lists[i].url)
// console.log(result, "resulttttt")
// console.log(this.fileList, "fileListfileList")
let item = this[[type]][fileListLen] let item = this[[type]][fileListLen]
// console.log(item, "itemssss")
this.fileList.splice(fileListLen, 1, Object.assign(item, { this.fileList.splice(fileListLen, 1, Object.assign(item, {
status: 'success', status: 'success',
message: '', message: '',
......
...@@ -4,20 +4,15 @@ ...@@ -4,20 +4,15 @@
<view class="reason"> <view class="reason">
<view class="title">文字描述(必填)</view> <view class="title">文字描述(必填)</view>
<view class="mt-30"> <view class="mt-30">
<u--textarea v-model="reason" height="260rpx" maxlength="150" placeholder="请输入(最低10个字)" count></u--textarea> <u--textarea v-model="reason" height="260rpx" maxlength="150" placeholder="请输入(最低10个字)"
count></u--textarea>
</view> </view>
</view> </view>
<view class="mt-30"> <view class="mt-30">
<text>相关图片(必填,最多9张)</text> <text>相关图片(必填,最多9张)</text>
<view class="control"> <view class="control">
<upload-image <upload-image v-model="images" maxCount="3" width="100" height="100" type="fullurl"></upload-image>
v-model="images"
maxCount="3"
width="100"
height="100"
type="fullurl"
></upload-image>
</view> </view>
</view> </view>
</view> </view>
...@@ -41,10 +36,10 @@ ...@@ -41,10 +36,10 @@
</template> </template>
<script> <script>
export default { export default {
data() { data() {
return { return {
reason:'', reason: '',
submitShow: false, submitShow: false,
images: '', images: '',
}; };
...@@ -53,23 +48,23 @@ export default { ...@@ -53,23 +48,23 @@ export default {
this.images = '/assets/img/qrcode.png' this.images = '/assets/img/qrcode.png'
}, },
methods: { methods: {
onSubmit(){ onSubmit() {
// console.log(this.images) // console.log(this.images)
// this.images = '' // this.images = ''
// console.log(this.images) // console.log(this.images)
if(!this.reason){ if (!this.reason) {
return this.$u.toast('请输入内容') return this.$u.toast('请输入内容')
} }
if(!this.images){ if (!this.images) {
return this.$u.toast('请至少上传一张照片') return this.$u.toast('请至少上传一张照片')
} }
if(this.reason.length < 10){ if (this.reason.length < 10) {
return this.$u.toast('文字描述最低10个字') return this.$u.toast('文字描述最低10个字')
} }
this.submitShow = true this.submitShow = true
}, },
// 提交 // 提交
onConfirmSubmit(){ onConfirmSubmit() {
const params = { const params = {
url: '/api/user/yijian', url: '/api/user/yijian',
loadingTip: '', loadingTip: '',
...@@ -82,7 +77,7 @@ export default { ...@@ -82,7 +77,7 @@ export default {
this.$request(params).then(res => { this.$request(params).then(res => {
// console.log(res) // console.log(res)
this.submitShow = false this.submitShow = false
if(res.code === 1) { if (res.code === 1) {
this.$u.toast(res.msg || '提交成功') this.$u.toast(res.msg || '提交成功')
this.reason = '' this.reason = ''
...@@ -96,29 +91,27 @@ export default { ...@@ -96,29 +91,27 @@ export default {
}) })
} }
}, },
}; };
</script> </script>
<style scoped> <style scoped>
.container { .container {
padding: 30rpx; padding: 30rpx;
} }
.wapper {
} .wapper {}
.reason { .reason {}
} .reason>.title {}
.reason > .title {
} .reason>textarea {
.reason > textarea {
margin-top: 20rpx; margin-top: 20rpx;
padding: 15rpx; padding: 15rpx;
width: 100% !important; width: 100% !important;
border: 1px solid #ccc !important; border: 1px solid #ccc !important;
} }
.control { .control {
margin-top: 20rpx; margin-top: 20rpx;
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment