|
@@ -43,12 +43,12 @@
|
|
|
<span v-else>{{ scope.row.CompanyName }}</span>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
- <el-table-column prop="SellerName" label="所属销售" align="center">
|
|
|
+ <el-table-column prop="SellerName" label="所属销售" align="center" width="125">
|
|
|
<template slot-scope="scope">
|
|
|
<span>{{ scope.row.SellerName }}</span>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
- <el-table-column prop="CreateTime" label="申请时间" min-width="130" align="center">
|
|
|
+ <el-table-column prop="CreateTime" label="申请时间" width="160" align="center">
|
|
|
<template slot-scope="scope">
|
|
|
<span>{{ scope.row.CreateTime }}</span>
|
|
|
</template>
|
|
@@ -58,11 +58,16 @@
|
|
|
<span>{{ scope.row.CompanyIdTypeName }}</span>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
- <el-table-column prop="ApplicationSource" label="申请来源" min-width="130" align="center">
|
|
|
+ <el-table-column prop="ApplicationSource" label="申请来源" width="115" align="center">
|
|
|
<template slot-scope="scope">
|
|
|
<span>{{ scope.row.ApplicationSource }}</span>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
+ <el-table-column prop="Title" label="申请内容" min-width="130" align="center">
|
|
|
+ <template slot-scope="scope">
|
|
|
+ <span class="editsty" @click="applicationContent(scope.row)">{{ scope.row.Title }}</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(item.HttpUrl, "_blank");
|
|
|
+ console.log(item);
|
|
|
+ },
|
|
|
},
|
|
|
created() {},
|
|
|
mounted() {
|