tsg-app/pages/wxyh/formZdy/formBottom.vue

174 lines
5.2 KiB
Vue
Raw Normal View History

2024-11-13 09:42:42 +08:00
<template>
<view>
<!-- 注意如果需要兼容微信小程序最好通过setRules方法设置rules规则 -->
<u--form labelPosition="left" :model="model1" :rules="rules" ref="uForm" >
<u-form-item label="管护类型" prop="maintainType" borderBottom @click="showSex = true;" ref="item1"
required
labelPosition='top'
labelWidth="100px">
<u--input v-model="model1.maintainType" disabled disabledColor="#ffffff" placeholder="请选择管护类型"
border="none"></u--input>
<u-icon slot="right" name="arrow-right"></u-icon>
</u-form-item>
<u-form-item label="内容说明" prop="maintainContent" borderBottom labelPosition='top' required labelWidth="100px">
<u--textarea v-model="model1.maintainContent" placeholder="请输入内容"></u--textarea>
</u-form-item>
<u-form-item label="现场图片" prop="pics" borderBottom labelPosition='top' labelWidth="100px" required>
<u-upload :fileList="model1.pics" @afterRead="(e)=>afterRead(e,'pics')" @delete="deletePic" name="pics" multiple
multiple accept='image' :maxCount="10"></u-upload>
</u-form-item>
<u-form-item label="现场视频" prop="videos" borderBottom labelPosition='top' labelWidth="100px">
<u-upload :fileList="model1.videos" @afterRead="(e)=>afterRead(e,'videos')" @delete="deletePic" name="videos" multiple
multiple accept='video' :maxCount="10"></u-upload>
</u-form-item>
</u--form>
<u-action-sheet :show="showSex" :actions="actions" title="请选择管护类型" @close="showSex = false" @select="sexSelect">
</u-action-sheet>
<u-button type="primary" text="提交" customStyle="margin-top: 50px" @click="submit"></u-button>
</view>
</template>
<script>
export default {
data() {
return {
showSex: false,
fileListpics: [],
fileListvideos: [],
model1: {
maintainContent: "",
maintainType: '',
pics: [],
videos: []
},
actions: [{
value: 0,
name: "溢洪道清障"
},
{
value: 1,
name: "除草除杂"
},
{
value: 2,
name: "设备养护"
},
{
value: 2,
name: "环境清洁"
},
{
value: 2,
name: "危险提示"
},
{
value: 2,
name: "其他"
},
],
rules: {
'maintainContent': {
type: 'string',
required: true,
message: '请填写内容',
trigger: ['blur', 'change']
},
'maintainType': {
required: true,
message: '请选择管护类型',
trigger: ['blur', 'change']
},
'fileListpics': {
required: true,
message: '请选择上传现场图片',
trigger: ['blur', 'change']
},
},
radio: '',
switchVal: false
};
},
methods: {
sexSelect(e) {
this.model1.maintainType = e.name
this.$refs.uForm.validateField('maintainType')
},
submit() {
this.$refs.uForm.validate().then(res => {
let params = {
...this.model1,
maintainType: this.actions.find(item => item.name == this.model1.maintainType).value,
}
console.log(params);
this.$emit('submitForm', params)
}).catch(errors => {
uni.$u.toast('校验失败')
})
},
// 删除图片
deletePic(event) {
this.model1[`${event.name}`].splice(event.index, 1)
},
// 新增图片
async afterRead(event,key) {
// 当设置 multiple 为 true 时, file 为数组格式,否则为对象格式
let lists = [].concat(event.file)
let fileListLen = this.model1[`${event.name}`].length
lists.map((item) => {
this.model1[`${event.name}`].push({
...item,
status: 'uploading',
message: '上传中'
})
})
for (let i = 0; i < lists.length; i++) {
const result = await this.uploadFilePromise(lists[i].url,event.name)
let item = this.model1[`${event.name}`][fileListLen]
console.log(this.model1[`${event.name}`],fileListLen,item);
this.model1[`${event.name}`].splice(fileListLen, 1, Object.assign(item, {
status: 'success',
message: '',
...result
}))
console.log(this.model1[`${event.name}`],this.model1);
fileListLen++
}
},
uploadFilePromise(url,name) {
return new Promise((resolve, reject) => {
let a = uni.uploadFile({
2025-09-30 17:23:21 +08:00
url: uni.$http.baseUrl +'/gunshiApp/tsg/maintain/service/file/upload/singleSimple', // 仅为示例,非真实的接口地址
2024-11-13 09:42:42 +08:00
filePath: url,
name: 'file',
formData: {
user: 'test'
},
success: (res) => {
setTimeout(() => {
// const obj = this.model1[name].find(item=>item.fileId==res.data.data.fileId)
// if(obj){
// }
// console.log(JSON.parse(res.data),this.model1,name);
console.log(JSON.parse(res.data).data);
let params = JSON.parse(res.data).data
params.url = 'http://223.75.53.141:9102/test.by-lyf.tmp' +JSON.parse(res.data).data.filePath
// this.model1[name].push({fileId:JSON.parse(res.data).data.fileId})
resolve(params)
}, 1000)
}
});
})
},
},
onReady() {
//如果需要兼容微信小程序并且校验规则中含有方法等只能通过setRules方法设置规则。
this.$refs.uForm.setRules(this.rules)
},
};
</script>