Commit d7178e4e authored by 罗超's avatar 罗超

no message

parent a3bdcbec
......@@ -9,9 +9,13 @@ export default {
return {};
},
mounted() {
let getData = JSON.stringify(this.$route.query)
getData = JSON.parse(getData)
getData = getData&&JSON.parse(getData.erpOrderObj)
let getData
if(this.$route.query){
getData = JSON.stringify(this.$route.query)
getData = JSON.parse(getData)
getData = getData&&JSON.parse(getData.erpOrderObj)
}
if (!this.getLocalStorage()&&!getData) {
this.$router.push({
path: "/login",
......
......@@ -109,7 +109,7 @@
:height="sceneList.length > 0 ? '600' : '660'" border row-class-name="font-size-12"
@selection-change="handleSelectionChange">
<el-table-column fixed type="selection" width="40"></el-table-column>
<el-table-column prop="ClueState" label="线索状态" show-overflow-tooltip>
<el-table-column prop="ClueState" label="线索状态" show-overflow-tooltip width="80">
<template slot-scope="scope">
<template v-if="scope.row.ClueState==1">
正常
......@@ -126,14 +126,14 @@
</template>
</el-table-column>
<el-table-column prop="CustomerSourceTypeStr" label="线索来源" v-if="queryType[1].show"
show-overflow-tooltip>
show-overflow-tooltip width="80">
</el-table-column>
<!--CustomerSource其他的来源 -->
<el-table-column prop="SourceAccountName" label="来源细分"
v-if="queryType[2].show && msg.CustomerType === 1" show-overflow-tooltip>
</el-table-column>
<el-table-column prop="ClueDemand" label="需求" v-if="queryType[3].show && msg.CustomerType === 1"
show-overflow-tooltip>
show-overflow-tooltip width="260">
</el-table-column>
<el-table-column prop="CustomerLevelStr" label="客户级别" sortable width="100"
v-if="queryType[4].show && msg.CustomerType === 0" show-overflow-tooltip>
......@@ -142,7 +142,7 @@
show-overflow-tooltip>
</el-table-column>
<el-table-column prop="CustomerName" label="联系人" v-if="queryType[5].show&&msg.CustomerType===1"
show-overflow-tooltip>
show-overflow-tooltip width="100">
</el-table-column>
<el-table-column prop="ContactNumber" label="联系电话" sortable v-if="queryType[6].show"
show-overflow-tooltip>
......@@ -152,9 +152,9 @@
show-overflow-tooltip>
</el-table-column>
<el-table-column prop="PersonChargeStr" label="负责人" sortable
v-if="queryType[8].show && msg.CustomerType === 1" show-overflow-tooltip>
v-if="queryType[8].show && msg.CustomerType === 1" show-overflow-tooltip width="90">
</el-table-column>
<el-table-column prop="CreateByStr" label="创建人" sortable v-if="queryType[9].show" show-overflow-tooltip>
<el-table-column prop="CreateByStr" label="创建人" sortable v-if="queryType[9].show" show-overflow-tooltip width="90">
</el-table-column>
<el-table-column prop="UpdateTime" label="上次更新时间" sortable v-if="queryType[10].show"
show-overflow-tooltip>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment