Commit f9fc2461 authored by 沈良进's avatar 沈良进

save

parent 873f71ca
...@@ -376,6 +376,9 @@ ...@@ -376,6 +376,9 @@
<span>{{$t('scen.sc_cp')}}</span> <span>{{$t('scen.sc_cp')}}</span>
{{item.OutBranchName}} {{item.OutBranchName}}
</p> </p>
<p class="travelnowrap">
<span style="cursor: pointer;" @click="showDialog(item.ConfigId, item.OfferId)">价格信息</span>
</p>
</div> </div>
</div> </div>
<div class="el-col" style="width:190px;"> <div class="el-col" style="width:190px;">
...@@ -685,12 +688,23 @@ ...@@ -685,12 +688,23 @@
<button class="normalBtn" type="primary" @click="SetSellingPoints">{{$t('pub.sureBtn')}}</button> <button class="normalBtn" type="primary" @click="SetSellingPoints">{{$t('pub.sureBtn')}}</button>
</div> </div>
</div> </div>
<el-dialog :visible.sync="dialog.show" width="1400px" title="价格信息">
<price-dialog :ConfigId="dialog.ConfigId" :OfferId="dialog.OfferId" ref="dialog"></price-dialog>
</el-dialog>
</div> </div>
</template> </template>
<script> <script>
import priceDialog from '../TravelNewQuotation/priceDialog.vue';
export default { export default {
components: {
priceDialog
},
data() { data() {
return { return {
dialog: {
show: false,
ConfigId: '',OfferId: ''
},
//查询数据列表 //查询数据列表
queryCommonData: { queryCommonData: {
//线路列表 //线路列表
...@@ -834,6 +848,15 @@ ...@@ -834,6 +848,15 @@
}; };
}, },
methods: { methods: {
showDialog(ConfigId,OfferId) {
this.dialog = {
show: true,
ConfigId,OfferId
}
this.$nextTick(() => {
this.$refs.dialog.getPostData()
})
},
downloadFile: function (item) { downloadFile: function (item) {
let reg = /^http(s)?:\/\/(.*?)\//; let reg = /^http(s)?:\/\/(.*?)\//;
this.downloadFileRename(item.FullUrl.replace(reg, ""), item.Name); this.downloadFileRename(item.FullUrl.replace(reg, ""), item.Name);
......
...@@ -628,6 +628,9 @@ ...@@ -628,6 +628,9 @@
goToOpenTravel(item) { goToOpenTravel(item) {
var routeName = this.$route.name; var routeName = this.$route.name;
var path = 'TravelManager5'; var path = 'TravelManager5';
if(item.TeamType === 1) {
path = 'TravelManager3'
}
// if (routeName == 'newQuotation') { // if (routeName == 'newQuotation') {
// path = 'TravelManager6' // path = 'TravelManager6'
// } // }
......
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