| | |
| | | <u-form-item label="审核结果" prop="confirmFlag" borderBottom> |
| | | <u-input v-model="confirmFlag" disabled disabledColor="#ffffff" border="none" placeholder="请输入" |
| | | placeholderClass="f-28 c-99" inputAlign="right"></u-input> |
| | | <u-icon slot="right" name="arrow-right"></u-icon> |
| | | <!-- <u-icon slot="right" name="arrow-right"></u-icon> --> |
| | | </u-form-item> |
| | | <u-form-item label="备注" borderBottom v-if="info.confirmNotion"> |
| | | <u--input type="textarea" v-model="info.confirmNotion" :disabled="true" disabledColor="#ffffff" |
| | |
| | | </u-form> |
| | | </view> |
| | | |
| | | <view v-if="status == 2 && roleType == 2"> |
| | | <view v-if="status == 2"> |
| | | <u-subsection :list="tabList" :current="tabIndex" button-color="#017BFC" @change="changeTab"></u-subsection> |
| | | <u-form labelPosition="left" :model="goOutInfo" ref="form" labelWidth="100" |
| | | :labelStyle="{fontSize:'28rpx'}"> |
| | |
| | | }, |
| | | |
| | | showPickerDate() { |
| | | if (this.roleType == 2 && this.status != 1) return; |
| | | if (this.roleType == 1 && this.status != 1) return; |
| | | this.showSelectDate = true; |
| | | }, |
| | | cancelPickerDate() { |
| | |
| | | this.info.confirmFlag = data.confirmFlag; |
| | | this.info.confirmUserName = data.confirmUserName; |
| | | this.info.confirmUserTelephone = data.confirmUserTelephone; |
| | | for (let i in this.goOutInfo) { |
| | | this.goOutInfo[i] = data[i]; |
| | | } |
| | | this.startImageUrls = this.$setImageUrl(data.startImageUrls, 2); |
| | | this.reachImageUrls = this.$setImageUrl(data.reachImageUrls, 2); |
| | | this.returnImageUrls = this.$setImageUrl(data.returnImageUrls, 2); |
| | | } |
| | | this.basicData.forEach(item => { |
| | | item.value = data[item.name] |
| | | }) |
| | | this.locationImageUrls = this.$setImageUrl(data.locationImageUrls); |
| | | |
| | | }) |
| | | }, |
| | | |
| | |
| | | |
| | | submit(val) { |
| | | if (this.roleType == 1) { |
| | | if (!this.info.confirmUserName) { |
| | | uni.showToast({ |
| | | title: "请输入审核人员姓名", |
| | | icon: "none" |
| | | }) |
| | | return |
| | | } |
| | | if (!this.info.confirmUserTelephone) { |
| | | uni.showToast({ |
| | | title: "请输入审核人员手机号", |
| | | icon: "none" |
| | | }) |
| | | return; |
| | | } |
| | | this.info.confirmFlag = val.type; |
| | | this.info.confirmNotion = val.remark; |
| | | this.submitRequest(this.info); |