Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
S
SuperMan
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
1
Issues
1
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
罗超
SuperMan
Commits
137781c1
Commit
137781c1
authored
Oct 18, 2024
by
黄奎
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
页面修改
parent
c571d5f0
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
132 additions
and
47 deletions
+132
-47
RestaurantPackage.vue
src/components/Restaurant/RestaurantPackage.vue
+63
-46
restaurantList.vue
src/components/Restaurant/restaurantList.vue
+1
-1
priceCode.vue
src/components/commonPage/priceCode.vue
+68
-0
No files found.
src/components/Restaurant/RestaurantPackage.vue
View file @
137781c1
...
...
@@ -103,7 +103,7 @@
<li>
<input
type=
"button"
class=
"hollowFixedBtn"
:value=
"$t('pub.searchBtn')"
@
click=
"getList(),resetPageIndex()"
/>
<input
type=
"button"
class=
"normalBtn"
<input
type=
"button"
class=
"normalBtn"
v-if=
"IsEditDmcSource==1"
@
click=
"resetId(),outerVisible = true,dialogTitle=$t('ground.tianjiataocan')"
:value=
"$t('pub.addBtn')"
/>
</li>
</ul>
...
...
@@ -153,17 +153,20 @@
</td>
<td>
<el-button-group>
<el-tooltip
class=
"item"
effect=
"dark"
:content=
"$t('system.table_edit')"
placement=
"top-start"
>
<el-button
type=
"primary"
icon=
"iconfont icon-Edit"
@
click=
"outerVisible = true,dialogTitle=$t('ground.xiugaitaocan'),updateResturant(item.Id)"
></el-button>
</el-tooltip>
<el-tooltip
class=
"item"
effect=
"dark"
:content=
"$t('restaurant.res_bidManage')"
placement=
"top-start"
>
<el-button
type=
"primary"
icon=
"iconfont icon-ico_shezhi"
@
click=
"goUrl('RestaurantPrice',item.Id)"
>
</el-button>
</el-tooltip>
<el-tooltip
class=
"item"
effect=
"dark"
:content=
"$t('system.table_delete')"
placement=
"top-start"
>
<el-button
type=
"danger"
icon=
"el-icon-delete"
@
click=
"isDelete(item.Id)"
></el-button>
</el-tooltip>
<template
v-if=
"IsEditDmcSource==1"
>
<el-tooltip
class=
"item"
effect=
"dark"
:content=
"$t('system.table_edit')"
placement=
"top-start"
>
<el-button
type=
"primary"
icon=
"iconfont icon-Edit"
@
click=
"outerVisible = true,dialogTitle=$t('ground.xiugaitaocan'),updateResturant(item.Id)"
>
</el-button>
</el-tooltip>
<el-tooltip
class=
"item"
effect=
"dark"
:content=
"$t('restaurant.res_bidManage')"
placement=
"top-start"
>
<el-button
type=
"primary"
icon=
"iconfont icon-ico_shezhi"
@
click=
"goUrl('RestaurantPrice',item.Id)"
>
</el-button>
</el-tooltip>
<el-tooltip
class=
"item"
effect=
"dark"
:content=
"$t('system.table_delete')"
placement=
"top-start"
>
<el-button
type=
"danger"
icon=
"el-icon-delete"
@
click=
"isDelete(item.Id)"
></el-button>
</el-tooltip>
</
template
>
</el-button-group>
</td>
</tr>
...
...
@@ -186,7 +189,7 @@
</el-option>
</el-select>
</el-form-item>
<el-form-item
:label=
"$t('hotel.hotel_produceDes')"
prop=
"MealDesc"
>
<el-input
class=
"w300"
type=
"textarea"
v-model=
"addMsg.MealDesc"
maxlength=
"200"
></el-input>
</el-form-item>
...
...
@@ -241,10 +244,25 @@
required
:
true
,
message
:
this
.
$t
(
'ground.qingxztc'
)
}]
}
},
IsEditDmcSource
:
0
,
//是否可修改套餐
};
},
methods
:
{
//获取酒店修改与报价添加修改权限
GetHotelPirceStockAuth
()
{
let
editDmcSource
=
"F_EditDmcSource"
;
this
.
apipost
(
'userauth_get_CheckUserAuthNewService'
,
''
,
res
=>
{
if
(
res
.
data
.
resultCode
==
1
)
{
var
tempData
=
res
.
data
.
data
;
if
(
tempData
&&
tempData
.
length
>
0
)
{
if
(
tempData
.
includes
(
editDmcSource
))
{
//查看列表权限
this
.
IsEditDmcSource
=
1
;
}
}
}
});
},
getList
()
{
this
.
loading
=
true
;
this
.
apipost
(
...
...
@@ -335,38 +353,36 @@
if
(
res
.
data
.
resultCode
==
1
)
{
this
.
Success
(
res
.
data
.
message
);
this
.
getList
();
}
else
if
(
res
.
data
.
resultCode
==
2
)
{
//该套餐下面存在报价信息不能删除
this
.
$confirm
(
"该套餐下面存在报价信息"
+
this
.
$t
(
'restaurant.res_confirm'
)
+
this
.
$t
(
'system.table_delete'
),
this
.
$t
(
'tips.tips'
),
{
confirmButtonText
:
this
.
$t
(
'pub.sureBtn'
),
cancelButtonText
:
this
.
$t
(
'pub.cancelBtn'
),
type
:
"warning"
})
.
then
(()
=>
{
let
msg
=
{
ID
:
ID
,
IsDel
:
1
,
};
this
.
apipost
(
"meal_post_Remove"
,
msg
,
res
=>
{
if
(
res
.
data
.
resultCode
==
1
)
{
this
.
Success
(
res
.
data
.
message
);
this
.
getList
();
}
else
{
this
.
Error
(
res
.
data
.
message
);
}
},
null
);
})
.
catch
(()
=>
{
this
.
Info
(
this
.
$t
(
'ground.yiquxsc'
));
});
}
else
{
}
else
if
(
res
.
data
.
resultCode
==
2
)
{
//该套餐下面存在报价信息不能删除
this
.
$confirm
(
"该套餐下面存在报价信息"
+
this
.
$t
(
'restaurant.res_confirm'
)
+
this
.
$t
(
'system.table_delete'
),
this
.
$t
(
'tips.tips'
),
{
confirmButtonText
:
this
.
$t
(
'pub.sureBtn'
),
cancelButtonText
:
this
.
$t
(
'pub.cancelBtn'
),
type
:
"warning"
})
.
then
(()
=>
{
let
msg
=
{
ID
:
ID
,
IsDel
:
1
,
};
this
.
apipost
(
"meal_post_Remove"
,
msg
,
res
=>
{
if
(
res
.
data
.
resultCode
==
1
)
{
this
.
Success
(
res
.
data
.
message
);
this
.
getList
();
}
else
{
this
.
Error
(
res
.
data
.
message
);
}
},
null
);
})
.
catch
(()
=>
{
this
.
Info
(
this
.
$t
(
'ground.yiquxsc'
));
});
}
else
{
this
.
Error
(
res
.
data
.
message
);
}
},
...
...
@@ -433,6 +449,7 @@
}
},
mounted
()
{
this
.
GetHotelPirceStockAuth
();
this
.
initResrestaurant
();
this
.
addMsg
.
DiningId
=
parseInt
(
this
.
$route
.
query
.
id
);
this
.
msg
.
DiningId
=
this
.
$route
.
query
.
id
;
...
...
src/components/Restaurant/restaurantList.vue
View file @
137781c1
...
...
@@ -380,7 +380,7 @@
<button
v-if=
"IsEditDmcSource==1"
@
click=
"goSubInfo('restaurantInfoManage',item.ID)"
class=
"hotelBtn"
>
{{$t('pub.updateMsg')}}
</button>
<button
v-if=
"IsHotelPriceStock==1&&IsEditDmcSource==1"
@
click=
"goUrl('RestaurantPackage',item.ID)"
<button
@
click=
"goUrl('RestaurantPackage',item.ID)"
class=
"hotelBtn"
>
{{$t('restaurant.res_package')}}
</button>
<button
@
click=
"goSubInfo('restaurantInfoDetail',item.ID)"
class=
"hotelBtn"
>
{{$t('fnc.xiangqing')}}
</button>
...
...
src/components/commonPage/priceCode.vue
0 → 100644
View file @
137781c1
<
style
>
.priceCodeDiv
{
width
:
280px
;
height
:
210px
;
display
:
flex
;
justify-content
:
center
;
align-items
:
center
;
}
</
style
>
<
template
>
<div
class=
"priceCodeDiv"
>
<img
:src=
"'data:image/png;base64,'+TCQrCode"
/>
</div>
</
template
>
<
script
>
export
default
{
props
:
[
"priceInfo"
,
"showSurveyType"
],
data
()
{
return
{
loading
:
false
,
TCQrCode
:
""
};
},
components
:
{
},
methods
:
{
//生成车行意见调查表二维码
createPriceImg
()
{
let
urlObj
=
this
.
domainManager
();
let
msg
=
{
TCID
:
this
.
priceInfo
.
TCID
,
pUrl
:
""
,
};
if
(
this
.
showSurveyType
==
1
)
{
msg
.
pUrl
=
"/html/ImpressionOpinionSurvey/guestlogin.html"
}
else
{
msg
.
pUrl
=
"/html/ImpressionOpinionSurvey/busSign.html"
}
console
.
log
(
"createPriceImg"
,
msg
)
this
.
$http
({
headers
:
{
'Content-Type'
:
'application/json'
},
method
:
'post'
,
url
:
urlObj
.
DomainUrl
+
'/api/file/GetSurveyQrCode?'
,
data
:
{
"msg"
:
msg
}
}).
then
(
res
=>
{
if
(
res
.
data
.
resultCode
===
1
)
{
this
.
TCQrCode
=
res
.
data
.
data
;
}
}).
catch
(
err
=>
{})
},
closeCode
()
{
}
},
mounted
()
{
this
.
createPriceImg
();
}
};
</
script
>
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment