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

save

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