Commit f6192f97 authored by liudong1993's avatar liudong1993

1

parents c4571052 ac3e742b
...@@ -417,7 +417,7 @@ ...@@ -417,7 +417,7 @@
</div> </div>
<div> <div>
<p>{{subItem.CustomerFollowUpModel.CreateByStr}}</p> <p>{{subItem.CustomerFollowUpModel.CreateByStr}}</p>
<p class="font-color-info">{{subItem.UpdateDate}}</p> <p class="font-color-info">{{subItem.UpdateDateStr}}</p>
</div> </div>
<div class="tag"> <div class="tag">
<span>{{subItem.CustomerFollowUpModel.FollowUpTypeStr}}</span> <span>{{subItem.CustomerFollowUpModel.FollowUpTypeStr}}</span>
...@@ -439,7 +439,7 @@ ...@@ -439,7 +439,7 @@
</p> </p>
</div> </div>
</div> </div>
<p> <span class="font-color-info">下次联系时间:</span> <span>{{subItem.CustomerFollowUpModel.NextContactDate}}</span></p> <p> <span class="font-color-info">下次联系时间:</span> <span>{{subItem.CustomerFollowUpModel.NextContactDateStr}}</span></p>
</div> </div>
</div> </div>
</div> </div>
......
...@@ -118,7 +118,15 @@ ...@@ -118,7 +118,15 @@
label="退款" label="退款"
show-overflow-tooltip> show-overflow-tooltip>
<template slot-scope="scope"> <template slot-scope="scope">
{{scope.row.BackMoney}}<i v-if="scope.row.OrderStatus!=1" @click="makeAdocument(scope.row,2)" class="iconfont iconjia- numIcon"></i> <!-- v-if="scope.row.OrderStatus!=1" -->
{{scope.row.BackMoney}}<i @click="makeAdocument(scope.row,2)" class="iconfont iconjia- numIcon"></i>
</template>
</el-table-column>
<el-table-column
label="成本"
show-overflow-tooltip>
<template slot-scope="scope">
{{scope.row.PayMoney}}<i @click="makeAdocument(scope.row,3)" class="iconfont iconjia- numIcon"></i>
</template> </template>
</el-table-column> </el-table-column>
<el-table-column <el-table-column
...@@ -135,13 +143,6 @@ ...@@ -135,13 +143,6 @@
</p> </p>
</template> </template>
</el-table-column> </el-table-column>
<el-table-column
label="成本"
show-overflow-tooltip>
<template slot-scope="scope">
{{scope.row.PayMoney}}<i v-if="scope.row.OrderStatus!=1" @click="makeAdocument(scope.row,3)" class="iconfont iconjia- numIcon"></i>
</template>
</el-table-column>
<el-table-column <el-table-column
label="出票状态" label="出票状态"
show-overflow-tooltip> show-overflow-tooltip>
...@@ -165,7 +166,7 @@ ...@@ -165,7 +166,7 @@
</el-table-column> </el-table-column>
<el-table-column <el-table-column
prop="Remark" prop="Remark"
label="下单备注" label="客户需求"
show-overflow-tooltip> show-overflow-tooltip>
</el-table-column> </el-table-column>
<el-table-column <el-table-column
...@@ -262,19 +263,17 @@ export default { ...@@ -262,19 +263,17 @@ export default {
}, },
methods: { methods: {
// 制作单据 // 制作单据
makeAdocument(row,type){ makeAdocument(row,num){
if(type!=1){ let type
type = 2 type = num==1? 1:2
}
let href let href
let url let url
if(this.isOnline()){ if(this.isOnline()){
url = 'http://yx.oytour.com/#/' url = 'http://yx.oytour.com/#/'
href = url +'automaticLogin?token=' + this.getLocalStorage().token +'&type=' +type
}else{ }else{
url = 'http://www.test.com:8081/#/' url = 'http://www.test.com:8081/#/'
href = url+'automaticLogin?token=' + this.getLocalStorage().token +'&type=' +type
} }
href = url+'automaticLogin?token='+this.getLocalStorage().token+'&type='+type+'&OtherType=55'+'&ReFinanceId='+row.OrderId+'&ReFinanceId2='+num+'&GuestId=' +row.GuestId
window.open(href); window.open(href);
}, },
// 操作日志 // 操作日志
......
...@@ -82,8 +82,9 @@ ...@@ -82,8 +82,9 @@
<p>{{detailsData.SurName + detailsData.Name}}</p> <p>{{detailsData.SurName + detailsData.Name}}</p>
</div> </div>
<div class="right" v-if="!hiddenMenu"> <div class="right" v-if="!hiddenMenu">
{{detailsData.IsCreate}}
<el-button class="crm-btn query-btn" @click="editCust">编辑</el-button> <el-button class="crm-btn query-btn" @click="editCust">编辑</el-button>
<el-dropdown @command="handleCommand" style="top: 1px;"> <el-dropdown @command="handleCommand" style="top: 1px;" v-if="detailsData.IsCreate==1">
<el-button class="crm-btn crm-btn-more easy-btn margin-right0"> <el-button class="crm-btn crm-btn-more easy-btn margin-right0">
<i class="iconfont icongengduo"></i> <i class="iconfont icongengduo"></i>
</el-button> </el-button>
...@@ -104,7 +105,7 @@ ...@@ -104,7 +105,7 @@
<span class="info-lable">创建时间:</span><span>{{detailsData.CreateDate ? detailsData.CreateDate : ''}}</span> <span class="info-lable">创建时间:</span><span>{{detailsData.CreateDate ? detailsData.CreateDate : ''}}</span>
</el-col> </el-col>
</el-row> </el-row>
</div> </div>
<div class="content"> <div class="content">
<el-tabs v-model="activeName" @tab-click="handleClick"> <el-tabs v-model="activeName" @tab-click="handleClick">
...@@ -183,9 +184,8 @@ ...@@ -183,9 +184,8 @@
deep: true, deep: true,
}, },
}, },
created() created() {
{
}, },
mounted() { mounted() {
let $this = this; let $this = this;
...@@ -242,8 +242,7 @@ ...@@ -242,8 +242,7 @@
this.$emit("transferS", 3); this.$emit("transferS", 3);
} else if (command === "g") {} } else if (command === "g") {}
}, },
handleClick(tab, event) { handleClick(tab, event) {},
},
editCust() { editCust() {
this.$emit("editCustS", 1); this.$emit("editCustS", 1);
}, },
......
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