chen 2022-04-06 11:42:05 +08:00
commit 42c488eaf7
1 changed files with 13 additions and 3 deletions

View File

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