|
|
@@ -1,20 +1,52 @@
|
|
|
<template>
|
|
|
- <view class="shouye-card-box kecheng-card-box">
|
|
|
+ <view class="shouye-card-box hetong-card-box">
|
|
|
<!-- card title -->
|
|
|
<view class="card-head-box">
|
|
|
<view class="card-line-title">合同</view>
|
|
|
</view>
|
|
|
- <!-- kaoshi title -->
|
|
|
- <view class="card-name-box">
|
|
|
- <view class="card-name" v-if="data.realName"><icon></icon>{{data.realName}}</view>
|
|
|
- <!-- <text class="card-level">{{data.zyLevelName}}</text> -->
|
|
|
- </view>
|
|
|
<!-- 内容区域 -->
|
|
|
- <view class="card-content-box kaoshi-content-box">
|
|
|
- <view class="card-content-item">
|
|
|
- <icon :style="{ backgroundImage: 'url(' + data.iconsArr.timeIcon + ')' }"></icon>
|
|
|
- <view class="content-text-box">
|
|
|
- <text>时间</text>
|
|
|
+ <view class="card-body-box">
|
|
|
+ <view class="card-body-row">
|
|
|
+ <view class="body-row">
|
|
|
+ <view class="title-text">
|
|
|
+ <icon class="user-icon" :style="{ backgroundImage: 'url(' + data.iconsArr.jzgsIcon + ')' }"></icon>家政公司名称
|
|
|
+ </view>
|
|
|
+ <view class="value-text">{{data.jzName}}</view>
|
|
|
+ </view>
|
|
|
+ <view class="body-row">
|
|
|
+ <view class="title-text">
|
|
|
+ <icon class="user-icon" :style="{ backgroundImage: 'url(' + data.iconsArr.htJzIcon + ')' }"></icon>家政人员名称
|
|
|
+ </view>
|
|
|
+ <view class="value-text">{{data.realName}}</view>
|
|
|
+ </view>
|
|
|
+ <view class="body-row">
|
|
|
+ <view class="title-text">
|
|
|
+ <icon class="idcard-icon" :style="{ backgroundImage: 'url(' + data.iconsArr.htKhIcon + ')' }"></icon>客户名称
|
|
|
+ </view>
|
|
|
+ <view class="value-text">{{data.khName}}</view>
|
|
|
+ </view>
|
|
|
+ </view>
|
|
|
+ <view class="card-body-row">
|
|
|
+ <view class="body-row">
|
|
|
+ <view class="title-text">
|
|
|
+ <icon class="date-icon" :style="{ backgroundImage: 'url(' + data.iconsArr.htTimeIcon + ')' }"></icon>合同开始时间
|
|
|
+ </view>
|
|
|
+ <view class="value-text">{{data.startDate}}</view>
|
|
|
+ </view>
|
|
|
+ <view class="body-row">
|
|
|
+ <view class="title-text">
|
|
|
+ <icon class="date-icon" :style="{ backgroundImage: 'url(' + data.iconsArr.htTimeIcon + ')' }"></icon>合同结束时间
|
|
|
+ </view>
|
|
|
+ <view class="value-text">{{data.endDate}}</view>
|
|
|
+ </view>
|
|
|
+ <view class="body-row">
|
|
|
+ <view class="title-text">
|
|
|
+ <icon class="htzt-icon" :style="{ backgroundImage: 'url(' + data.iconsArr.htZtIcon + ')' }"></icon>合同状态
|
|
|
+ </view>
|
|
|
+ <view class="status-0" v-if="data.status== 0">待签字</view>
|
|
|
+ <view class="status-1" v-if="data.status== 1">待审核</view>
|
|
|
+ <view class="status-2" v-if="data.status== 2">有效</view>
|
|
|
+ <view class="status-3" v-if="data.status== 3">失效</view>
|
|
|
</view>
|
|
|
</view>
|
|
|
</view>
|