Commit 2733541e authored by youjie's avatar youjie

no message

parent 2a76414d
......@@ -91,7 +91,7 @@ import { date,useQuasar } from 'quasar'
import { DateType, getDateType, getDayOfWeek } from '../../../utils/tools'
import { useI18n } from 'vue-i18n'
import HotelPriceList from './HotelPriceList.vue'
import TableOperation from "../Table-Operation.vue"
import TableOperation from "./Table-Operation.vue"
export default defineComponent({
components: { HotelPriceList, TableOperation },
name: 'list-table',
......
......@@ -52,12 +52,12 @@
<script lang="ts">
import { defineComponent, ref, reactive, toRefs, provide, onMounted, inject } from 'vue'
import { SitLang } from '../../@types';
import { SitLang } from '../../../@types';
import { useI18n } from 'vue-i18n'
import { dispatchAction } from '../../store/utils';
import { UserActionsType } from '../../store/modules/user/actions';
import useScrollModule from '../../module/scrollbar/scrollModule'
import message from '../../utils/message'
import { dispatchAction } from '../../../store/utils';
import { UserActionsType } from '../../../store/modules/user/actions';
import useScrollModule from '../../../module/scrollbar/scrollModule'
import message from '../../../utils/message'
export default defineComponent({
props: {
// rightCarOpen:{
......
......@@ -64,7 +64,7 @@ import { date } from 'quasar'
import { HotelRate, useHotel } from '../../../utils/hotelRate'
import { useQuasar } from 'quasar'
import useScrollModule from '../../../module/scrollbar/scrollModule'
import ListCar from "../ListCar.vue"
import ListCar from "./ListCar.vue"
export default defineComponent({
components: { svgIcon, ListCar },
setup() {
......
......@@ -24,11 +24,11 @@
<script lang="ts">
import { defineComponent, ref, reactive, toRefs, provide, onMounted, inject } from 'vue'
import { SitLang } from '../../@types';
import { SitLang } from '../../../@types';
import { useI18n } from 'vue-i18n'
import { dispatchAction } from '../../store/utils';
import { UserActionsType } from '../../store/modules/user/actions';
import message from '../../utils/message'
import { dispatchAction } from '../../../store/utils';
import { UserActionsType } from '../../../store/modules/user/actions';
import message from '../../../utils/message'
export default defineComponent({
props: {
hotelInfor:{
......@@ -41,9 +41,17 @@
const data=reactive({
addNum: 1,
hotelInfor: props.hotelInfor,
DetailList:[]
DetailList:Array[]
})
console.log(props.hotelInfor.PriceList[0],'====')
if(data.hotelInfor.PriceList[0].AddBedPrice){
}
console.log(data.hotelInfor.PriceList[0].AddBedPrice,'====3人間成本价')
console.log(data.hotelInfor.PriceList[0].BidroomPrice,'====大床成本价')
console.log(data.hotelInfor.PriceList[0].CostPrice,'====標間成本价')
console.log(data.hotelInfor.PriceList[0].GuideRoomPrice,'====司機房成本价')
console.log(data.hotelInfor.PriceList[0].SingleroomPrice,'====自然单间成本价')
data.addNum = inject('addNum')
const methods = {
addGoods(type:any){
......
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