|
@@ -65,7 +65,8 @@
|
|
</el-table-column>
|
|
</el-table-column>
|
|
<el-table-column prop="Title" label="申请内容" min-width="130" align="center">
|
|
<el-table-column prop="Title" label="申请内容" min-width="130" align="center">
|
|
<template slot-scope="scope">
|
|
<template slot-scope="scope">
|
|
- <span class="editsty" @click="applicationContent(scope.row)">{{ scope.row.Title }}</span>
|
|
|
|
|
|
+ <span v-if="scope.row.IsGray">{{ scope.row.Title }}</span>
|
|
|
|
+ <span v-else class="editsty" @click="applicationContent(scope.row)">{{ scope.row.Title }}</span>
|
|
</template>
|
|
</template>
|
|
</el-table-column>
|
|
</el-table-column>
|
|
<el-table-column label="操作" align="center" min-width="110">
|
|
<el-table-column label="操作" align="center" min-width="110">
|
|
@@ -196,7 +197,6 @@ export default {
|
|
// 申请内容
|
|
// 申请内容
|
|
applicationContent(item) {
|
|
applicationContent(item) {
|
|
window.open(item.HttpUrl, "_blank");
|
|
window.open(item.HttpUrl, "_blank");
|
|
- console.log(item);
|
|
|
|
},
|
|
},
|
|
},
|
|
},
|
|
created() {},
|
|
created() {},
|