|
|
@ -83,7 +83,7 @@ |
|
|
|
<el-col :span="8"> |
|
|
|
<div v-show="formobj.customerTypeKey == '1'"> |
|
|
|
<div class="span-sty">是否挂靠运输公司</div> |
|
|
|
<el-form-item><span class="addinputInfo">{{ formobj.isAnchored = '1' ? '是' : '否' }}</span></el-form-item> |
|
|
|
<el-form-item><span class="addinputInfo">{{ formobj.isAnchored == 1 ? '是' : '否' }}</span></el-form-item> |
|
|
|
</div> |
|
|
|
</el-col> |
|
|
|
</el-row> |
|
|
@ -113,7 +113,7 @@ |
|
|
|
</el-table-column> |
|
|
|
</el-table> |
|
|
|
</div> |
|
|
|
<div v-show="formobj.customerTypeKey === '1' && formobj.isAnchored === '是'"> |
|
|
|
<div v-show="formobj.customerTypeKey === '1' && formobj.isAnchored === '1'"> |
|
|
|
<div class="title">挂靠运输公司信息</div> |
|
|
|
<el-row> |
|
|
|
<el-col :span="16"> |
|
|
@ -147,17 +147,17 @@ |
|
|
|
</el-row> |
|
|
|
</div> |
|
|
|
<div class="title">附件清单</div> |
|
|
|
<el-row v-if="formobj.customerTypeKey === '2' || (formobj.customerTypeKey === '1' && formobj.isAnchored === '是')"> |
|
|
|
<el-row v-if="formobj.customerTypeKey === '2' || (formobj.customerTypeKey === '1' && formobj.isAnchored === '1')"> |
|
|
|
<el-col :span="24"> |
|
|
|
<div class="span-sty span-sty-special" style="display: flex;flex-direction: row;justify-content: flex-end;align-items: center">营业执照</div> |
|
|
|
<el-form-item><el-image class="addinputInfo-special" style="width: 150px; height: 150px" v-for="(item, index) in formobj.license" :key="index" :src="item" :preview-src-list="formobj.license"/></el-form-item> |
|
|
|
</el-col> |
|
|
|
</el-row> |
|
|
|
<el-row v-if="formobj.customerTypeKey === '2' || (formobj.customerTypeKey === '1' && formobj.isAnchored === '否')"> |
|
|
|
<el-row v-if="formobj.customerTypeKey === '2' || (formobj.customerTypeKey === '1' && formobj.isAnchored === '0')"> |
|
|
|
<el-col :span="24"> |
|
|
|
<div class="span-sty span-sty-special" style="display: flex;flex-direction: row;justify-content: flex-end;align-items: center"> |
|
|
|
<span v-show="formobj.customerTypeKey === '2'">法人和实际控制人身份证</span> |
|
|
|
<span v-show="formobj.customerTypeKey === '1' && formobj.isAnchored === '否'">本人身份证</span> |
|
|
|
<span v-show="formobj.customerTypeKey === '1' && formobj.isAnchored === '0'">本人身份证</span> |
|
|
|
</div> |
|
|
|
<el-form-item><el-image class="addinputInfo-special" style="width: 150px; height: 150px" v-for="(item, index) in formobj.idCard" :key="index" :src="item" :preview-src-list="formobj.idCard"/></el-form-item> |
|
|
|
</el-col> |
|
|
@ -168,7 +168,7 @@ |
|
|
|
<el-form-item><el-image class="addinputInfo-special" style="width: 150px; height: 150px" v-for="(item, index) in formobj.infoLetter" :key="index" :src="item" :preview-src-list="formobj.infoLetter"/></el-form-item> |
|
|
|
</el-col> |
|
|
|
</el-row> |
|
|
|
<el-row v-if="formobj.customerTypeKey === '1' && formobj.isAnchored === '是'"> |
|
|
|
<el-row v-if="formobj.customerTypeKey === '1' && formobj.isAnchored === '1'"> |
|
|
|
<el-col :span="24"> |
|
|
|
<div class="span-sty span-sty-special" style="display: flex;flex-direction: row;justify-content: flex-end;align-items: center">车队挂靠协议</div> |
|
|
|
<el-form-item><el-image class="addinputInfo-special" style="width: 150px; height: 150px" v-for="(item, index) in formobj.agreement" :key="index" :src="item" :preview-src-list="formobj.agreement"/></el-form-item> |
|
|
|