This commit is contained in:
shilixia 2022-02-28 09:09:21 +08:00
parent 5443938dd7
commit d4730020a1
2 changed files with 3 additions and 3 deletions

View File

@ -46,7 +46,7 @@
<template slot-scope="scope">{{ scope.row.order_.number }}</template> <template slot-scope="scope">{{ scope.row.order_.number }}</template>
</el-table-column> </el-table-column>
<el-table-column label="合同编号" width="110"> <el-table-column label="合同编号" width="110">
<template slot-scope="scope" v-if="scope.row.contract">{{ <template slot-scope="scope" v-if="scope.row.order_">{{
scope.row.order_.contract_.number scope.row.order_.contract_.number
}}</template> }}</template>
</el-table-column> </el-table-column>

View File

@ -49,12 +49,12 @@
}}</template> }}</template>
</el-table-column> </el-table-column>
<el-table-column label="合同编号" show-overflow-tooltip width="150"> <el-table-column label="合同编号" show-overflow-tooltip width="150">
<template slot-scope="scope">{{ <template slot-scope="scope" v-if=" scope.row.contract_">{{
scope.row.contract_.number scope.row.contract_.number
}}</template> }}</template>
</el-table-column> </el-table-column>
<el-table-column label="合同名称" show-overflow-tooltip width="150"> <el-table-column label="合同名称" show-overflow-tooltip width="150">
<template slot-scope="scope">{{ <template slot-scope="scope" v-if=" scope.row.contract_">{{
scope.row.contract_.name scope.row.contract_.name
}}</template> }}</template>
</el-table-column> </el-table-column>