| | |
| | | </el-col> |
| | | </el-row> |
| | | <el-row> |
| | | <el-descriptions class="margin-top" :column="4" label-style="font-weight: bold" content-style="font-weight: bold"> |
| | | <el-descriptions-item label="流程编码">{{this.queryParams.routeCode}}</el-descriptions-item> |
| | | <el-descriptions-item label="流程名称">{{this.routeInfo[0].routeName}}</el-descriptions-item> |
| | | <el-descriptions-item label="产品编码">{{this.routeInfo[0].productCode}}</el-descriptions-item> |
| | | <el-descriptions-item label="产品名称">{{this.routeInfo[0].productName}}</el-descriptions-item> |
| | | <!-- <el-descriptions class="margin-top" :column="4" label-style="font-weight: bold" content-style="font-weight: bold">--> |
| | | <!-- <el-descriptions-item label="流程编码">{{this.queryParams.routeCode}}</el-descriptions-item>--> |
| | | <!-- <el-descriptions-item label="流程名称">{{this.routeInfo[0].routeName}}</el-descriptions-item>--> |
| | | <!-- <el-descriptions-item label="产品编码">{{this.routeInfo[0].productCode}}</el-descriptions-item>--> |
| | | <!-- <el-descriptions-item label="产品名称">{{this.routeInfo[0].productName}}</el-descriptions-item>--> |
| | | <!-- </el-descriptions>--> |
| | | <el-descriptions class="margin-top" :contentStyle="labelStyle" :column="3" :size="size" border> |
| | | <el-descriptions-item> |
| | | <template slot="label"> |
| | | <i class="el-icon-user"></i> |
| | | 流程编码 |
| | | </template> |
| | | {{this.queryParams.routeCode}} |
| | | </el-descriptions-item> |
| | | <el-descriptions-item> |
| | | <template slot="label"> |
| | | <i class="el-icon-mobile-phone"></i> |
| | | 流程名称 |
| | | </template> |
| | | {{this.routeInfo[0].routeName}} |
| | | </el-descriptions-item> |
| | | <el-descriptions-item> |
| | | <template slot="label"> |
| | | <i class="el-icon-location-outline"></i> |
| | | 产品编码 |
| | | </template> |
| | | {{this.routeInfo[0].productCode}} |
| | | </el-descriptions-item> |
| | | <el-descriptions-item> |
| | | <template slot="label"> |
| | | <i class="el-icon-tickets"></i> |
| | | 产品名称 |
| | | </template> |
| | | {{this.routeInfo[0].productName}} |
| | | </el-descriptions-item> |
| | | </el-descriptions> |
| | | </el-row> |
| | | |
| | |
| | | name: "RouteChildInfo", |
| | | data() { |
| | | return { |
| | | labelStyle: "width: 300px;", |
| | | size: 'medium', |
| | | advancedSearchVisible: false, |
| | | // 遮罩层 |
| | | loading: true, |
| | |
| | | } |
| | | }; |
| | | </script> |
| | | |