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
b59ed521
Commit
b59ed521
authored
Jul 10, 2024
by
youjie
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'master' of
http://gitlab.oytour.com/luochao/superman
parents
51bfaddb
92fa74c0
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
2823 additions
and
0 deletions
+2823
-0
douyinOrder.vue
src/components/SingleAirTicket/douyinOrder.vue
+448
-0
TravelPrice2 copy.vue
...newTravelmanager/TravelGroupControl/TravelPrice2 copy.vue
+2132
-0
douyinTips.vue
src/components/systemManagement/douyinTips.vue
+228
-0
config.js
src/router/config.js
+15
-0
No files found.
src/components/SingleAirTicket/douyinOrder.vue
0 → 100644
View file @
b59ed521
This diff is collapsed.
Click to expand it.
src/components/newTravelmanager/TravelGroupControl/TravelPrice2 copy.vue
0 → 100644
View file @
b59ed521
This diff is collapsed.
Click to expand it.
src/components/systemManagement/douyinTips.vue
0 → 100644
View file @
b59ed521
<
style
>
.LM_mainDiv
{
overflow-y
:
auto
;
}
.LP_table
{
margin-top
:
10px
;
background-color
:
#fff
;
border-top
:
1px
solid
#d1d1d1
;
/*border-left: 1px solid #d1d1d1;*/
/* border-right: 1px solid #d1d1d1; */
font-size
:
14px
;
width
:
100%
;
min-width
:
1200px
;
padding-bottom
:
5px
;
}
.LP_table
tr
{
height
:
40px
;
}
.LP_table
tr
th
{
border-left
:
1px
solid
#d1d1d1
;
border-bottom
:
1px
solid
#d1d1d1
;
/* border-right: 1px solid #d1d1d1; */
position
:
relative
;
background-color
:
#E6E6E6
;
}
.LP_table
tr
th
:last-child
{
border-right
:
1px
solid
#d1d1d1
;
}
.LP_table
td
{
border-left
:
1px
solid
#d1d1d1
;
border-bottom
:
1px
solid
#d1d1d1
;
/* border-right: 1px solid #d1d1d1; */
text-align
:
center
;
padding
:
5px
0
;
}
.LP_table
td
:last-child
{
border-right
:
1px
solid
#d1d1d1
;
}
.LP_table
.el-button--primary
{
padding
:
5px
;
}
.Lp_role
{
position
:
absolute
;
top
:
15px
;
left
:
30px
;
}
.Lp_company
{
position
:
absolute
;
right
:
30px
;
top
:
5px
;
}
.comLessDiv
{
width
:
100%
;
height
:
40px
;
margin-top
:
5px
;
padding-bottom
:
5px
;
border-bottom
:
1px
solid
#d1d1d1
;
display
:
flex
;
justify-content
:
center
;
align-items
:
center
;
}
.comLessDiv
:last-child
{
border
:
0
;
padding-bottom
:
0
;
}
.comLessDiv
input
{
padding
:
0
5px
;
}
.comLessDiv
.el-input-group__append
,
.comLessDiv
.el-input-group__append
button
{
padding
:
0
8px
;
cursor
:
pointer
;
}
.addLessPrice
{
margin-left
:
10px
;
color
:
seagreen
;
cursor
:
pointer
;
}
.lessBtn
{
margin-top
:
5px
;
}
</
style
>
<
template
>
<div>
<div
class=
"LM_mainDiv"
>
<!--保存-->
<table
border=
"0"
cellspacing=
"0"
cellpadding=
"0"
class=
"LP_table"
v-loading=
"this.loading"
>
<tr>
<th
width=
"40%"
>
项目名称
</th>
<th
width=
"150"
>
{{
$t
(
'hotel.table_operat'
)
}}
<i
class=
"iconfont icon-bumenguanli-tianjia addLessPrice"
@
click=
"addLessPrice(item)"
></i></th>
</tr>
<tr>
<td>
<div
v-for=
"subItem in dataList"
class=
"comLessDiv"
>
<el-input
placeholder=
"名称"
v-model=
"subItem.Name"
>
</el-input>
</div>
</td>
<td>
<div
v-for=
"(subItem,subIndex) in dataList"
class=
"comLessDiv"
>
<input
type=
'button'
class=
"normalBtn lessBtn"
@
click=
"SaveLessPrice(subItem)"
:value=
"$t('pub.saveBtn')"
/>
<input
type=
'button'
class=
"normalBtn lessBtn"
@
click=
"RemoveItem( subItem, subIndex)"
value=
"删除"
/>
</div>
</td>
</tr>
</table>
</div>
</div>
</
template
>
<
script
>
export
default
{
data
()
{
return
{
//列表
dataList
:
[],
//角色列表
RoleList
:
[],
loading
:
false
,
LineList
:
[],
commonSelect
:
0
,
};
},
methods
:
{
//保存少价管理
SaveLessPrice
(
subItem
)
{
if
(
subItem
)
{
if
(
subItem
.
Name
.
length
==
0
)
{
return
this
.
Error
(
'请填写标记信息'
);
}
}
this
.
apipost
(
"dict_post_Set"
,
subItem
,
res
=>
{
if
(
res
.
data
.
resultCode
==
1
)
{
this
.
Success
(
res
.
data
.
message
);
this
.
getList
();
}
else
{
this
.
Error
(
res
.
data
.
message
);
}
},
err
=>
{}
);
},
//获取列表
getList
()
{
this
.
loading
=
true
;
var
that
=
this
;
that
.
apipost
(
"dict_post_GetList"
,
{
Key
:
'DouYin_MainOrder'
},
res
=>
{
that
.
loading
=
false
;
if
(
res
.
data
.
resultCode
==
1
)
{
var
data
=
res
.
data
.
data
;
that
.
dataList
=
data
;
}
else
{
that
.
Error
(
res
.
data
.
message
);
}
},
err
=>
{}
);
},
//获取列表
RemoveItem
(
subItem
,
index
)
{
if
(
subItem
.
ID
==
0
)
{
this
.
dataList
.
splice
(
index
,
1
);
return
;
}
var
that
=
this
;
this
.
Confirm
(
"是否删除此标记信息?"
,
function
()
{
if
(
subItem
.
ID
>
0
)
{
that
.
apipost
(
"dict_post_Remove"
,
{
dictID
:
subItem
.
ID
},
res
=>
{
if
(
res
.
data
.
resultCode
==
1
)
{
that
.
Success
(
"操作成功!"
);
that
.
getList
();
}
else
{
that
.
Error
(
res
.
data
.
message
);
}
},
err
=>
{}
);
}
});
},
//点击添加
addLessPrice
()
{
var
obj
=
{
Name
:
''
,
DictKey
:
'DouYin_MainOrder'
,
ID
:
0
,
}
this
.
dataList
.
push
(
obj
);
this
.
$forceUpdate
()
}
},
mounted
()
{
this
.
getList
();
},
};
</
script
>
src/router/config.js
View file @
b59ed521
...
...
@@ -2204,6 +2204,14 @@ export default {
title
:
'单机票订单'
},
},
{
path
:
'/douyinOrder'
,
//抖音订单
name
:
'douyinOrder'
,
component
:
resolve
=>
require
([
'@/components/SingleAirTicket/douyinOrder'
],
resolve
),
meta
:
{
title
:
'抖音订单'
},
},
{
path
:
'/CharterAddEditVehicle'
,
//新增/编辑团订
name
:
'CharterAddEditVehicle'
,
...
...
@@ -3822,6 +3830,13 @@ export default {
meta
:
{
title
:
'奖励管理'
}
},
{
//奖励管理
path
:
'/douyinTips'
,
name
:
'douyinTips'
,
component
:
resolve
=>
require
([
'@/components/systemManagement/douyinTips'
],
resolve
),
meta
:
{
title
:
'抖音订单标记管理'
}
},
{
// 财务往来单据 收入确认单
path
:
'/priceIncomeConfirmList'
,
name
:
'priceIncomeConfirmList'
,
...
...
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