车辆管理,司机管理bug修复
This commit is contained in:
@ -123,7 +123,6 @@
|
||||
</div>
|
||||
<textarea v-model="form.supplierRemark" class="multipleTxt" placeholder="报备描述"></textarea>
|
||||
<two-common-btn class="btn" @cancelClick="cancelBtn" @submitClick="save" />
|
||||
|
||||
</div>
|
||||
<div class="dataType" v-show="auditFormShow">
|
||||
<table>
|
||||
@ -194,8 +193,18 @@
|
||||
<td class="col1 alignLeft" style="border-bottom-left-radius: 3px">
|
||||
<div class="title col1" style="white-space: nowrap;">审核失败原因</div>
|
||||
<div class="reason">{{orderInfo.auditRemark}}</div>
|
||||
<div v-show="orderInfo.auditPhoto">
|
||||
<img v-for="(item,index) in auditPhotoList" :key="index" class="camerImg" :src="item.url" >
|
||||
<div v-show="orderInfo.auditPhoto" class="camerImg" >
|
||||
<van-image v-for="(item,index) in auditPhotoList" :key="index" :src="item.url" @click="previewPhoto(index)" />
|
||||
<!-- <van-uploader-->
|
||||
<!-- v-model="auditPhotoList"-->
|
||||
<!-- :after-read="handleFileRead"-->
|
||||
<!-- multiple-->
|
||||
<!-- :preview-size="54"-->
|
||||
<!-- accept="image "-->
|
||||
<!-- :disabled="true"-->
|
||||
<!-- readonly-->
|
||||
<!-- />-->
|
||||
<!-- <img v-for="(item,index) in auditPhotoList" :key="index" class="camerImg" :src="item.url" >-->
|
||||
</div>
|
||||
</td>
|
||||
<td class="col2 alignLeft" style="border-bottom-right-radius: 3px">
|
||||
@ -218,10 +227,6 @@
|
||||
</table>
|
||||
</div>
|
||||
<two-common-btn v-show="auditFormShow" class="btn" title1="提交" title2="确定审核" @submitClick1="save" @submitClick="save" />
|
||||
<!-- <div class="twoBtn" v-show="auditFormShow">-->
|
||||
<!-- <button class="cancel" @click="noMultipleClicks(save)">提交</button>-->
|
||||
<!-- <button class="submit" @click="noMultipleClicks(save)">确定审核</button>-->
|
||||
<!-- </div>-->
|
||||
</div>
|
||||
</template>
|
||||
|
||||
@ -233,6 +238,7 @@ import {
|
||||
updateAccountRecordInfo,
|
||||
selectRecordPictureList,deleteImage
|
||||
} from "@/api/mine"
|
||||
import { ImagePreview } from "vant";
|
||||
import TwoCommonBtn from "@/components/twoBtnCommon.vue"
|
||||
export default {
|
||||
name: "accountingView",
|
||||
@ -366,6 +372,12 @@ export default {
|
||||
},
|
||||
},
|
||||
methods:{
|
||||
previewPhoto(index) {
|
||||
ImagePreview({
|
||||
images: this.auditPhotoList,
|
||||
startPosition: index,
|
||||
});
|
||||
},
|
||||
handleFileRead(file) {
|
||||
console.log("file",file)
|
||||
},
|
||||
|
Reference in New Issue
Block a user