| | |
| | | <u-form-item label="反馈时间 :">{{form.measureSubmitTime}}</u-form-item> |
| | | </u-form> |
| | | </view> |
| | | <view class="first"> |
| | | <view class="first" v-if="measureList"> |
| | | <text style="font-size: 16px;margin-bottom: 20px;font-weight: 600;">基础措施</text> |
| | | <view v-for="(item, index) in measureList" :key="index" style="margin-left: 18px;margin-bottom:10px; font-size:16px;"> |
| | | <text style="margin-top: 15px;">{{item}}</text> |
| | | </view> |
| | | </view> |
| | | <view class="second"> |
| | | <view class="second" v-if="measures!=null"> |
| | | <text style="font-size: 16px;margin-bottom: 20px;font-weight: 600;">补充措施</text> |
| | | <u--textarea style="margin-top: -5px;" v-model="measures" disabled placeholder="请输入内容" ></u--textarea> |
| | | </view> |
| | |
| | | this.form = test; |
| | | this.measures = this.form.responseMeasure; |
| | | this.measureList = this.form.baseMeasures; |
| | | this.images = this.form.attachments.map((item) => { |
| | | return {url: VUE_APP_BASE_URL + item.attachment}; |
| | | }); |
| | | if(this.form.attachments && this.form.attachments.length>0){ |
| | | this.images = this.form.attachments.map((item) => { |
| | | return {url: VUE_APP_BASE_URL + item.attachment}; |
| | | }); |
| | | }else { |
| | | this.images = []; |
| | | } |
| | | console.log("img",this.images) |
| | | this.statusBarHeight = uni.getSystemInfoSync()['statusBarHeight']; |
| | | uni.hideTabBar(); |