Merge remote-tracking branch 'origin/master'
commit
32cf3113de
|
@ -106,7 +106,7 @@
|
||||||
|
|
||||||
<el-table-column label="编号" prop="id"></el-table-column>
|
<el-table-column label="编号" prop="id"></el-table-column>
|
||||||
<el-table-column label="名称" prop="name"></el-table-column>
|
<el-table-column label="名称" prop="name"></el-table-column>
|
||||||
<el-table-column label="类型" prop="type">
|
<el-table-column label="类型" style="color: #13ce66" prop="type">
|
||||||
<template v-slot="scope">
|
<template v-slot="scope">
|
||||||
<span v-if="scope.row.type==1">数据字段</span>
|
<span v-if="scope.row.type==1">数据字段</span>
|
||||||
<span v-if="scope.row.type==2">基本类型</span>
|
<span v-if="scope.row.type==2">基本类型</span>
|
||||||
|
@ -114,7 +114,7 @@
|
||||||
<span v-if="scope.row.type==4">普通类型</span>
|
<span v-if="scope.row.type==4">普通类型</span>
|
||||||
</template>
|
</template>
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
<el-table-column label="作用域" prop="scope">
|
<el-table-column label="作用域" style="color: blue" prop="scope">
|
||||||
<template v-slot="scope">
|
<template v-slot="scope">
|
||||||
<span v-if="scope.row.scope==1">数据字段</span>
|
<span v-if="scope.row.scope==1">数据字段</span>
|
||||||
<span v-if="scope.row.scope==2">记录</span>
|
<span v-if="scope.row.scope==2">记录</span>
|
||||||
|
@ -124,13 +124,13 @@
|
||||||
</template>
|
</template>
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
<el-table-column label="引擎编码" prop="engineCode"></el-table-column>
|
<el-table-column label="引擎编码" prop="engineCode"></el-table-column>
|
||||||
<el-table-column label="是否激活" prop="isActivate">
|
<el-table-column label="是否激活" style="color: red" prop="isActivate">
|
||||||
<template v-slot="scope">
|
<template v-slot="scope">
|
||||||
<span v-if="scope.row.isActivate==1">已激活</span>
|
<span v-if="scope.row.isActivate==1">已激活</span>
|
||||||
<span v-if="scope.row.isActivate==2">未激活</span>
|
<span v-if="scope.row.isActivate==2">未激活</span>
|
||||||
</template>
|
</template>
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
<el-table-column label="状态" prop="status">
|
<el-table-column label="状态" style="color: #787be8" prop="status">
|
||||||
|
|
||||||
<template v-slot="scope">
|
<template v-slot="scope">
|
||||||
<span v-if="scope.row.status==1">开启</span>
|
<span v-if="scope.row.status==1">开启</span>
|
||||||
|
@ -196,9 +196,9 @@ export default {
|
||||||
// SourceReq:{
|
// SourceReq:{
|
||||||
//
|
//
|
||||||
// },
|
// },
|
||||||
// engine:{
|
engine:{
|
||||||
//
|
|
||||||
// },
|
},
|
||||||
arr:[],
|
arr:[],
|
||||||
};
|
};
|
||||||
},
|
},
|
||||||
|
|
Loading…
Reference in New Issue