Compare commits
9 Commits
prod-25-09
...
4f5e03d1c8
| Author | SHA1 | Date | |
|---|---|---|---|
| 4f5e03d1c8 | |||
| f03f323a6f | |||
| 817a0f1e84 | |||
| ec204dc631 | |||
| d1726e3041 | |||
| 01b724964d | |||
| aabcd9ea29 | |||
| ad8312f54b | |||
| 2c9dac15ce |
@ -323,6 +323,7 @@ export function jumpPage(data){
|
|||||||
return request({
|
return request({
|
||||||
url:'/supplierAppV2/dispatchApp/user/jumpPage',
|
url:'/supplierAppV2/dispatchApp/user/jumpPage',
|
||||||
method:'POST',
|
method:'POST',
|
||||||
|
contentType:'application/json',
|
||||||
data
|
data
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
@ -339,4 +340,4 @@ export function isSendInsuranceEmail(){
|
|||||||
url:'/supplierAppV2/dispatchApp/user/isSendInsuranceEmail',
|
url:'/supplierAppV2/dispatchApp/user/isSendInsuranceEmail',
|
||||||
method:'POST',
|
method:'POST',
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|||||||
@ -175,7 +175,7 @@ export default {
|
|||||||
confirmButtonColor: '#0E76F4',
|
confirmButtonColor: '#0E76F4',
|
||||||
showCancelButton: false,
|
showCancelButton: false,
|
||||||
}).then(async() => {
|
}).then(async() => {
|
||||||
this.goPage('newTrainingList', { supplierId : this.supplierId })
|
this.goPage('newTrainingList', { supplierId : this.supplierId, type: 'invoice' })
|
||||||
}).catch(() => {
|
}).catch(() => {
|
||||||
// on cancel
|
// on cancel
|
||||||
});
|
});
|
||||||
@ -189,7 +189,9 @@ export default {
|
|||||||
this.getNotifyList()
|
this.getNotifyList()
|
||||||
},
|
},
|
||||||
async getJumpHandler() {
|
async getJumpHandler() {
|
||||||
let res = await jumpPage();
|
let res = await jumpPage({
|
||||||
|
type: 'invoice'
|
||||||
|
});
|
||||||
return res
|
return res
|
||||||
},
|
},
|
||||||
getMonth(item) {
|
getMonth(item) {
|
||||||
|
|||||||
@ -95,6 +95,7 @@
|
|||||||
multiple
|
multiple
|
||||||
:multiple-limit="isMultiple ? 2 : 1"
|
:multiple-limit="isMultiple ? 2 : 1"
|
||||||
v-model="selectedOption"
|
v-model="selectedOption"
|
||||||
|
:disabled="vehicleInfoDisabled"
|
||||||
value-key="name"
|
value-key="name"
|
||||||
class="elSelect"
|
class="elSelect"
|
||||||
collapse-tags="collapse-tags"
|
collapse-tags="collapse-tags"
|
||||||
@ -121,6 +122,7 @@
|
|||||||
value-key="name"
|
value-key="name"
|
||||||
class="elSelect"
|
class="elSelect"
|
||||||
collapse-tags="collapse-tags"
|
collapse-tags="collapse-tags"
|
||||||
|
:disabled="vehicleInfoDisabled"
|
||||||
placeholder="请选择" style="width: 55%"
|
placeholder="请选择" style="width: 55%"
|
||||||
>
|
>
|
||||||
<el-option
|
<el-option
|
||||||
@ -190,7 +192,7 @@
|
|||||||
<span>车辆状态</span>
|
<span>车辆状态</span>
|
||||||
</div>
|
</div>
|
||||||
<div class="isJoin">
|
<div class="isJoin">
|
||||||
<van-radio-group v-model="vehicleStatus" @change="isVehicleChange" class="joinWrap">
|
<van-radio-group v-model="vehicleStatus" :class="{ 'disabled-tree': vehicleInfoDisabled }" :disabled="vehicleInfoDisabled" @change="isVehicleChange" class="joinWrap">
|
||||||
<van-radio :name="1" style="margin-right: 26px">
|
<van-radio :name="1" style="margin-right: 26px">
|
||||||
启用
|
启用
|
||||||
<img
|
<img
|
||||||
@ -305,6 +307,7 @@
|
|||||||
ref="tree"
|
ref="tree"
|
||||||
:highlight-current="true"
|
:highlight-current="true"
|
||||||
:expand-on-click-node="false"
|
:expand-on-click-node="false"
|
||||||
|
:class="{ 'disabled-tree': vehicleInfoDisabled }"
|
||||||
:data="supplierServiceList"
|
:data="supplierServiceList"
|
||||||
:props="defaultProps">
|
:props="defaultProps">
|
||||||
</el-tree>
|
</el-tree>
|
||||||
@ -384,6 +387,7 @@ export default {
|
|||||||
vehicleLicense:'',//牌照
|
vehicleLicense:'',//牌照
|
||||||
vehicleFrontLicensePlate:'',//车头照车牌号码
|
vehicleFrontLicensePlate:'',//车头照车牌号码
|
||||||
insuranceCorp: '',
|
insuranceCorp: '',
|
||||||
|
auditStatus: '',
|
||||||
vehicleTypes:[{
|
vehicleTypes:[{
|
||||||
name: '小修车',
|
name: '小修车',
|
||||||
value: 1
|
value: 1
|
||||||
@ -491,6 +495,11 @@ export default {
|
|||||||
}]
|
}]
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
computed: {
|
||||||
|
vehicleInfoDisabled() {
|
||||||
|
return [1,2].includes(this.auditStatus)
|
||||||
|
},
|
||||||
|
},
|
||||||
watch:{
|
watch:{
|
||||||
selectedOption(newVal){
|
selectedOption(newVal){
|
||||||
if(newVal == 4){
|
if(newVal == 4){
|
||||||
@ -731,6 +740,7 @@ export default {
|
|||||||
this.selectedOption=result.vehicleType?.split(',').map((item)=>{
|
this.selectedOption=result.vehicleType?.split(',').map((item)=>{
|
||||||
return Number(item);
|
return Number(item);
|
||||||
});
|
});
|
||||||
|
this.auditStatus = result.auditStatus;
|
||||||
this.virtualVehicle = result.virtualVehicle;
|
this.virtualVehicle = result.virtualVehicle;
|
||||||
this.$refs.tree.setCheckedKeys(result.serviceIds)
|
this.$refs.tree.setCheckedKeys(result.serviceIds)
|
||||||
this.vehicleStatus = result.vehicleStatus
|
this.vehicleStatus = result.vehicleStatus
|
||||||
@ -985,4 +995,8 @@ export default {
|
|||||||
border: none !important;
|
border: none !important;
|
||||||
text-align: right !important;
|
text-align: right !important;
|
||||||
}
|
}
|
||||||
|
.disabled-tree {
|
||||||
|
pointer-events: none;
|
||||||
|
opacity: 0.6;
|
||||||
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|||||||
@ -211,7 +211,7 @@ export default {
|
|||||||
'行驶证未录入': {
|
'行驶证未录入': {
|
||||||
className: 'default_cls'
|
className: 'default_cls'
|
||||||
},
|
},
|
||||||
'行驶证验证通过': {
|
'行驶证核验通过': {
|
||||||
className: 'success_cls'
|
className: 'success_cls'
|
||||||
},
|
},
|
||||||
'行驶证核验不通过': {
|
'行驶证核验不通过': {
|
||||||
|
|||||||
@ -65,7 +65,7 @@
|
|||||||
<div class="reciceOrderIWrap" v-if="indexData">
|
<div class="reciceOrderIWrap" v-if="indexData">
|
||||||
<circle-char ref="Doughnut1" :data="indexData && indexData.complainOrderRate" :title-text="'投诉率'" :bg-color="Number(indexData?.complainOrderRate || 0) <= 0.1 ? 'green' : 'red'"
|
<circle-char ref="Doughnut1" :data="indexData && indexData.complainOrderRate" :title-text="'投诉率'" :bg-color="Number(indexData?.complainOrderRate || 0) <= 0.1 ? 'green' : 'red'"
|
||||||
:is-store="false" @clickComplain="clickJumpHandle(7)"></circle-char>
|
:is-store="false" @clickComplain="clickJumpHandle(7)"></circle-char>
|
||||||
<circle-char ref="Doughnut2" :data="indexData && indexData.pinganFavorableRate" :title-text="'平安好评率'" :is-store="false"
|
<circle-char v-if="false" ref="Doughnut2" :data="indexData && indexData.pinganFavorableRate" :title-text="'平安好评率'" :is-store="false"
|
||||||
:bg-color="Number(indexData?.pinganFavorableRate || 0) >= 99.4 ? 'green' : 'red'"></circle-char>
|
:bg-color="Number(indexData?.pinganFavorableRate || 0) >= 99.4 ? 'green' : 'red'"></circle-char>
|
||||||
<circle-char ref="Doughnut3" :data="indexData && indexData.urgeRate" :title-text="'催促率'"
|
<circle-char ref="Doughnut3" :data="indexData && indexData.urgeRate" :title-text="'催促率'"
|
||||||
:bg-color="Number(indexData?.urgeRate || 0) >= 3 ? 'red' : 'green'"></circle-char>
|
:bg-color="Number(indexData?.urgeRate || 0) >= 3 ? 'red' : 'green'"></circle-char>
|
||||||
@ -88,8 +88,8 @@
|
|||||||
<div class="num" :class="{'numRed': Number(indexData?.receiving) > 5, 'numGreen': Number(indexData?.receiving) <= 5 }">{{ indexData && indexData.receiving }}</div>
|
<div class="num" :class="{'numRed': Number(indexData?.receiving) > 5, 'numGreen': Number(indexData?.receiving) <= 5 }">{{ indexData && indexData.receiving }}</div>
|
||||||
<div class="itemTitle">接单时效(分)</div>
|
<div class="itemTitle">接单时效(分)</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="line"></div>
|
<div class="line" v-if="false"></div>
|
||||||
<div class="center common">
|
<div class="center common" v-if="false">
|
||||||
<div class="num" :class="{'numRed': Number(indexData?.pinganJuheSuccessArriving) > 22, 'numGreen': Number(indexData?.pinganJuheSuccessArriving) <= 22 }">{{ indexData && indexData.pinganJuheSuccessArriving }}</div>
|
<div class="num" :class="{'numRed': Number(indexData?.pinganJuheSuccessArriving) > 22, 'numGreen': Number(indexData?.pinganJuheSuccessArriving) <= 22 }">{{ indexData && indexData.pinganJuheSuccessArriving }}</div>
|
||||||
<div class="itemTitle">平安聚合成功到达时效(分)</div>
|
<div class="itemTitle">平安聚合成功到达时效(分)</div>
|
||||||
</div>
|
</div>
|
||||||
@ -384,7 +384,7 @@ export default {
|
|||||||
return
|
return
|
||||||
}
|
}
|
||||||
this.$refs.Doughnut1.initCircle()
|
this.$refs.Doughnut1.initCircle()
|
||||||
this.$refs.Doughnut2.initCircle()
|
// this.$refs.Doughnut2.initCircle()
|
||||||
this.$refs.Doughnut3.initCircle()
|
this.$refs.Doughnut3.initCircle()
|
||||||
this.$refs.Doughnut4.initCircle()
|
this.$refs.Doughnut4.initCircle()
|
||||||
this.$refs.Doughnut5.initCircle()
|
this.$refs.Doughnut5.initCircle()
|
||||||
@ -1597,8 +1597,10 @@ export default {
|
|||||||
},
|
},
|
||||||
setType(type) {
|
setType(type) {
|
||||||
switch (type) {
|
switch (type) {
|
||||||
case 6:
|
case 5:
|
||||||
return 1;
|
return 1;
|
||||||
|
case 6:
|
||||||
|
return 2;
|
||||||
case 7:
|
case 7:
|
||||||
return 7;
|
return 7;
|
||||||
case 8:
|
case 8:
|
||||||
|
|||||||
@ -22,7 +22,7 @@
|
|||||||
为此中道救援经过与保司沟通协调,特为与中道救援合作紧密的服务商,提供救援职业责任险参保渠道,提升服务商服务能力,降低运营风险,实现共同进步。
|
为此中道救援经过与保司沟通协调,特为与中道救援合作紧密的服务商,提供救援职业责任险参保渠道,提升服务商服务能力,降低运营风险,实现共同进步。
|
||||||
</div>
|
</div>
|
||||||
<div>一、救援职业责任险简介:</div>
|
<div>一、救援职业责任险简介:</div>
|
||||||
<div>1、综合保额50万元,可全方位覆盖我们日常的经营活动。</div>
|
<div> 1、综合保额100万元(其中救援责任50万元,物流责任50万元),可全方位覆盖我们日常的经营活动。</div>
|
||||||
<div> 2、保费支付可采用救援服务费抵扣的方式,降低资金压力。</div>
|
<div> 2、保费支付可采用救援服务费抵扣的方式,降低资金压力。</div>
|
||||||
<div> 3、详细保险条款、保费和其他问题,如需了解,请与辖区区域经理联系。</div>
|
<div> 3、详细保险条款、保费和其他问题,如需了解,请与辖区区域经理联系。</div>
|
||||||
<div> 二、其他意见建议如需交流,请与18621558505曲仁杰联系。</div>
|
<div> 二、其他意见建议如需交流,请与18621558505曲仁杰联系。</div>
|
||||||
|
|||||||
@ -78,9 +78,11 @@ export default {
|
|||||||
isLoading:false,
|
isLoading:false,
|
||||||
showPoup:true,//进入弹框
|
showPoup:true,//进入弹框
|
||||||
isFinished:false,
|
isFinished:false,
|
||||||
|
type: '',
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
mounted() {
|
mounted() {
|
||||||
|
this.type = this.$route.query?.type;
|
||||||
// this.onRefresh();
|
// this.onRefresh();
|
||||||
this.getList();
|
this.getList();
|
||||||
|
|
||||||
@ -120,6 +122,7 @@ export default {
|
|||||||
pageSize:this.pageSize,
|
pageSize:this.pageSize,
|
||||||
docType:1,
|
docType:1,
|
||||||
trainingType:4,
|
trainingType:4,
|
||||||
|
type: this.type,
|
||||||
})
|
})
|
||||||
this.pageList=res.data?.list || [];
|
this.pageList=res.data?.list || [];
|
||||||
if(res.data.assessState == 0){
|
if(res.data.assessState == 0){
|
||||||
|
|||||||
Reference in New Issue
Block a user