Commit 2b60959d authored by 黄奎's avatar 黄奎

页面修改

parent ed8cfdad
...@@ -25,7 +25,7 @@ Vue.prototype.domainManager = function () { ...@@ -25,7 +25,7 @@ Vue.prototype.domainManager = function () {
if (domainNameUrl.indexOf('oytour') !== -1) { if (domainNameUrl.indexOf('oytour') !== -1) {
domainUrl = "http://reborn.oytour.com"; domainUrl = "http://reborn.oytour.com";
} }
//domainUrl = "http://192.168.5.46:8501"; //domainUrl = "http://192.168.5.46";
var obj = { var obj = {
//主地址 //主地址
DomainUrl: domainUrl, DomainUrl: domainUrl,
......
...@@ -55,14 +55,12 @@ export default { ...@@ -55,14 +55,12 @@ export default {
}, },
watch: { watch: {
value: function() { value: function() {
console.log('switch change', this.value)
this.inputSelect = this.value this.inputSelect = this.value
} }
}, },
methods: { methods: {
changeSelect() { changeSelect() {
this.inputSelect = !this.inputSelect this.inputSelect = !this.inputSelect
console.log('changeSelect', this.inputSelect, this.value)
this.$emit('input', this.inputSelect) this.$emit('input', this.inputSelect)
} }
} }
......
...@@ -896,8 +896,9 @@ export default { ...@@ -896,8 +896,9 @@ export default {
}, },
GotoDetails(item) { GotoDetails(item) {
console.log("item",item);
this.CommonJump( this.CommonJump(
"/detailsProduct/" + encodeURIComponent(item.id) + "/" + item.configId, "/detailsProduct/" + encodeURIComponent(item.id) + "/" + item.configId+"/"+item.teamType,
{}, {},
"blank" "blank"
); );
......
This diff is collapsed.
...@@ -82,7 +82,7 @@ export default { ...@@ -82,7 +82,7 @@ export default {
price: { price: {
handler(n, o) { handler(n, o) {
this.m = n; this.m = n;
console.log(n) console.log("flight",n)
}, },
deep: true, deep: true,
immediate: true, immediate: true,
......
This diff is collapsed.
...@@ -4,7 +4,6 @@ ...@@ -4,7 +4,6 @@
<div class="text-grey-6 f12 q-my-sm">此行程包含多個出發城市</div> <div class="text-grey-6 f12 q-my-sm">此行程包含多個出發城市</div>
<div class="row q-col-gutter-md"> <div class="row q-col-gutter-md">
<div v-for="(x,i) in m.unionCityList" :key="i"><q-chip size="14px" square>{{ x.cityName }}</q-chip></div> <div v-for="(x,i) in m.unionCityList" :key="i"><q-chip size="14px" square>{{ x.cityName }}</q-chip></div>
</div> </div>
</div> </div>
</template> </template>
...@@ -16,7 +15,7 @@ export default { ...@@ -16,7 +15,7 @@ export default {
price: { price: {
handler(n, o) { handler(n, o) {
this.m = n; this.m = n;
console.log(n) console.log("startCity",n)
}, },
deep: true, deep: true,
immediate: true, immediate: true,
......
This diff is collapsed.
...@@ -35,7 +35,7 @@ const routes = [{ ...@@ -35,7 +35,7 @@ const routes = [{
component: () => component: () =>
import ('pages/details.vue') import ('pages/details.vue')
}, { //行程2024 }, { //行程2024
path: '/detailsProduct/:id/:configId', path: '/detailsProduct/:id/:configId/:teamType',
meta: { title: '行程' }, meta: { title: '行程' },
component: () => component: () =>
import ('pages/detailsProduct.vue') import ('pages/detailsProduct.vue')
......
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