文档资料,培训文档模块
This commit is contained in:
@ -73,7 +73,7 @@ export default {
|
|||||||
mounted() {
|
mounted() {
|
||||||
const urlParams = new URLSearchParams(window.location.search);
|
const urlParams = new URLSearchParams(window.location.search);
|
||||||
this.supplierType = urlParams.get('supplierType');
|
this.supplierType = urlParams.get('supplierType');
|
||||||
// this.$toast('页面supplierType:'+this.supplierType)
|
this.$toast('页面supplierType:'+this.supplierType)
|
||||||
this.getDriverList()
|
this.getDriverList()
|
||||||
},
|
},
|
||||||
methods:{
|
methods:{
|
||||||
@ -85,7 +85,7 @@ export default {
|
|||||||
}, 1000);
|
}, 1000);
|
||||||
},
|
},
|
||||||
addDriver(){
|
addDriver(){
|
||||||
// this.$toast('supplierType的值为:'+this.supplierType)
|
this.$toast('supplierType的值为:'+this.supplierType)
|
||||||
if(this.supplierType == 1){
|
if(this.supplierType == 1){
|
||||||
this.$toast("无权添加")
|
this.$toast("无权添加")
|
||||||
}else{
|
}else{
|
||||||
|
@ -18,7 +18,7 @@
|
|||||||
<img class="startImg" src="@/assets/start.png" />
|
<img class="startImg" src="@/assets/start.png" />
|
||||||
<span>车辆类型</span>
|
<span>车辆类型</span>
|
||||||
</div>
|
</div>
|
||||||
<select id="mySelect" style="width: 70px" v-model="selectedOption">
|
<select id="mySelect" v-model="selectedOption">
|
||||||
<option v-for="(item,index) in typeList" :key="index" :value="index">{{item}}</option>
|
<option v-for="(item,index) in typeList" :key="index" :value="index">{{item}}</option>
|
||||||
</select>
|
</select>
|
||||||
</div>
|
</div>
|
||||||
|
@ -15,7 +15,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<div class="rightContent">
|
<div class="rightContent">
|
||||||
<div class="rightItem" style="display: flex;align-items: center;">
|
<div class="rightItem" style="display: flex;align-items: center;">
|
||||||
<span id="copyText">{{orderCode}}</span>
|
<span id="copyText">{{orderDetailInfo.orderCode}}</span>
|
||||||
<img @click="copyText" src="@/assets/copy.png" style="width: 35px;height: 15px;margin-left: 10px"/>
|
<img @click="copyText" src="@/assets/copy.png" style="width: 35px;height: 15px;margin-left: 10px"/>
|
||||||
</div>
|
</div>
|
||||||
<div class="rightItem">{{ orderDetailInfo.contractName }}</div>
|
<div class="rightItem">{{ orderDetailInfo.contractName }}</div>
|
||||||
@ -23,10 +23,13 @@
|
|||||||
<div class="rightItem">{{ orderDetailInfo.userName }}</div>
|
<div class="rightItem">{{ orderDetailInfo.userName }}</div>
|
||||||
<div class="rightItem">{{ orderDetailInfo.userPhone }}</div>
|
<div class="rightItem">{{ orderDetailInfo.userPhone }}</div>
|
||||||
<div class="rightItem">{{ orderDetailInfo.plateNumber }}</div>
|
<div class="rightItem">{{ orderDetailInfo.plateNumber }}</div>
|
||||||
<div class="rightItem" style="line-height: 17px;width: 220px;align-items: baseline">
|
<div class="rightItem">{{orderDetailInfo.model}}{{ orderDetailInfo.brand }}</div>
|
||||||
<span >{{orderDetailInfo.model}} </span>
|
<!-- -->
|
||||||
<span>{{ orderDetailInfo.brand }}</span>
|
<!-- <div class="rightItem" style="line-height: 17px;width: 220px;align-items: baseline">-->
|
||||||
</div>
|
<!-- {{orderDetailInfo.model}}{{ orderDetailInfo.brand }}-->
|
||||||
|
<!-- <span >{{orderDetailInfo.model}}</span>-->
|
||||||
|
<!-- <span>{{ orderDetailInfo.brand }}</span>-->
|
||||||
|
<!-- </div>-->
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
@ -139,7 +142,9 @@ export default {
|
|||||||
opacity: .5;
|
opacity: .5;
|
||||||
}
|
}
|
||||||
.rightContent{
|
.rightContent{
|
||||||
@include wh(90px,189px);
|
height: 189px;
|
||||||
|
width: calc(100% - 60px);
|
||||||
|
//@include wh(90px,189px);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user