Commit 05618c96 authored by youjie's avatar youjie

no message

parent 19e32034
......@@ -87,6 +87,18 @@
</div>
</q-td>
</template>
<template v-slot:body-cell-HandFittingFee="props">
<q-td :props="props" :colspan="x.DetailList.length" v-if="props.rowIndex == 0" >
{{ moneyFormat(x.ShouPeiFee) }}
<div class="q-mt-sm" v-if="x.OfferState == 2">
<q-btn size="sm" dense outline color="primary" v-if="x.ContractUrl">
<a class="text-primary" style="text-decoration:none"
:href="x.ContractUrl">{{ $t('v101.downloadHands') }}</a>
</q-btn>
<span class="text-grey-500 f12">{{ $t('v101.noneHands') }}</span>
</div>
</q-td>
</template>
<!-- <template v-slot:body-cell-RoomNo="props">
<q-td :props="props">
......@@ -235,6 +247,7 @@ export default defineComponent({
{ name: 'UseName', label: t('v102.vehicle.title10'), field: (row: any) => row.GuideInfo, align: 'left' },
{ name: 'TeamName', label: t('v102.vehicle.title11'), field: (row: any) => row.TeamName, align: 'left' },
{ name: 'Money', label: t('hotelorder.col.m'), field: (row: any) => row.Money.toFixed(2), align: 'left' },
{ name: 'HandFittingFee', label: t('hotelorder.hands'), align: 'left' }
] as any,
})
......
......@@ -196,8 +196,10 @@ export function getHotelOrderStatus():Array<StandardStatus>{
export function getStrokeStatus():Array<StandardStatus>{
let status=[] as Array<StandardStatus>
let text = [t('v102.vehicle.strokestatus.d1'),t('v102.vehicle.strokestatus.d2'),t('v102.vehicle.strokestatus.d3')]
let color = ['','positive','dark','orange','negative']
let icons = ['','update','done','offline_bolt','cached']
// ,'positive'
// ,'update'
let color = ['','dark','orange','negative']
let icons = ['','done','offline_bolt','cached']
text.forEach((x,i:number)=>{
status.push({
StatusId:i+1,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment