|
@ -3,12 +3,15 @@ |
|
|
<jobComMainDetailCard :dataContent="dataContent"></jobComMainDetailCard> |
|
|
<jobComMainDetailCard :dataContent="dataContent"></jobComMainDetailCard> |
|
|
<view class="card_view " style="margin-left: 10px;"> |
|
|
<view class="card_view " style="margin-left: 10px;"> |
|
|
<text class="card_packing_code ">发货类型</text> |
|
|
<text class="card_packing_code ">发货类型</text> |
|
|
<text class="card_content ">{{dataContent.deliverType=='CUST'?'寄售库发货':'三方库发货'}}</text> |
|
|
<text class="card_content ">{{getDeliverMethodTxt(dataContent.businessType)}}</text> |
|
|
</view> |
|
|
</view> |
|
|
</job-com-main-card> |
|
|
</job-com-main-card> |
|
|
</template> |
|
|
</template> |
|
|
|
|
|
|
|
|
<script> |
|
|
<script> |
|
|
|
|
|
import { |
|
|
|
|
|
getDeliverMethod |
|
|
|
|
|
} from '@/common/directory.js'; |
|
|
import jobComMainCard from '@/mycomponents/job/jobComMainCard.vue' |
|
|
import jobComMainCard from '@/mycomponents/job/jobComMainCard.vue' |
|
|
import jobComMainDetailCard from '@/mycomponents/job/jobComMainDetailCard.vue' |
|
|
import jobComMainDetailCard from '@/mycomponents/job/jobComMainDetailCard.vue' |
|
|
export default { |
|
|
export default { |
|
@ -32,7 +35,9 @@ |
|
|
}, |
|
|
}, |
|
|
|
|
|
|
|
|
methods: { |
|
|
methods: { |
|
|
|
|
|
getDeliverMethodTxt(deliverType){ |
|
|
|
|
|
return getDeliverMethod(deliverType) |
|
|
|
|
|
} |
|
|
} |
|
|
} |
|
|
} |
|
|
} |
|
|
</script> |
|
|
</script> |
|
|