master
tangyi 2022-04-06 11:41:09 +08:00
parent 9d5406c1f1
commit b1f0eae65c
1 changed files with 13 additions and 3 deletions

View File

@ -35,7 +35,7 @@
<view class="text">添加故障图片</view>
</view>
</view>
<textarea v-model="data.condition" class="fault-description radius10" placeholder="故障情况描述"
<textarea v-model="data.fault_describe" class="fault-description radius10" placeholder="故障情况描述"
placeholder-class="fault-description-text" />
<view class="detailed-address inputCss">
<input type="text" v-model="data.address" class="fon26 width100"
@ -58,6 +58,7 @@
<script>
import yyMmDdHhSs from '@/components/dates/yy-mm-dd-hh-ss.vue';
import { uploadImg } from '@/jsFile/public-api.js';
export default {
components: {
yyMmDdHhSs
@ -68,11 +69,13 @@
data: {
is_device: 0,
fault_type: "",
device_name: "",
device_name: "华为LED",
condition: "",
project_number: "",
service_address:"",
address: "",
username: "",
fault_describe:"",
images:"",
phone: "",
visit_time: ""
@ -96,6 +99,7 @@
onLoad() {
this.getType()
},
methods: {
//
getType() {
@ -138,7 +142,13 @@
this.imgsrcArr.push(item);
})
console.log( this.imgsrcArr)
uploadImg({path:res.tempFilePaths[0]}).then(res=>{
if(res.code) {
this.$toolAll.tools.showToast('上传成功');
}
})
}
})
},