|
@@ -63,6 +63,11 @@
|
|
|
<span>{{ scope.row.ApplicationSource }}</span>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
+ <el-table-column prop="ApplicationSource" label="申请内容" min-width="130" align="center">
|
|
|
+ <template slot-scope="scope">
|
|
|
+ <span class="editsty" @click="applicationContent(scope.row)">{{ scope.row.ApplicationSource }}</span>
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
<el-table-column label="操作" align="center" min-width="110">
|
|
|
<template slot-scope="scope">
|
|
|
<span class="editsty" v-if="scope.row.BusinessCardUrl" @click="previewImg(scope.row)">查看名片</span>
|
|
@@ -188,6 +193,11 @@ export default {
|
|
|
}
|
|
|
});
|
|
|
},
|
|
|
+ // 申请内容
|
|
|
+ applicationContent(item){
|
|
|
+ window.open('https://www.baidu.com','_blank')
|
|
|
+ console.log(item);
|
|
|
+ },
|
|
|
},
|
|
|
created() {},
|
|
|
mounted() {
|