Commit 372e0c2a authored by liudong1993's avatar liudong1993
parents 0fc6f46e 795c6bc4
...@@ -159,7 +159,7 @@ export const obj = { ...@@ -159,7 +159,7 @@ export const obj = {
yinliuren: '引流人', yinliuren: '引流人',
guanlian: '关联', guanlian: '关联',
ruzhuriqi: '入住日期', ruzhuriqi: '入住日期',
ruzhuxinxi: '入信息', ruzhuxinxi: '入信息',
fangxinzonjia: '按照入住人数*房型单价=房型总价小计(不含稅)', fangxinzonjia: '按照入住人数*房型单价=房型总价小计(不含稅)',
renjian: '人间', renjian: '人间',
daodianfukuan: '到店自付', daodianfukuan: '到店自付',
......
...@@ -380,10 +380,11 @@ ...@@ -380,10 +380,11 @@
<p>{{ComplainInfo.Description}}</p> <p>{{ComplainInfo.Description}}</p>
</li> </li>
</ul> </ul>
<template v-if="userInfo.SimpleEasy&&userInfo.SimpleEasy==1">
<ul> <ul>
<li style="height:auto;line-height: 20px;padding:5px 0;"> <li style="height:auto;line-height: 20px;padding:5px 0;">
<div class="_addUpload_box _addUpload_box_btm clearfix" v-if="ComplainInfo.FileDataList.length>0"> <div class="_addUpload_box _addUpload_box_btm clearfix" v-if=" ComplainInfo.FileDataList.length>0">
<p>{{$t('objFill.fj')}}</p> <p>{{$t('objFill.fj')}}</p>
<template v-for="(file,fIndex) in ComplainInfo.FileDataList"> <template v-for="(file,fIndex) in ComplainInfo.FileDataList">
<div v-if="file.FileType==3"> <div v-if="file.FileType==3">
...@@ -404,7 +405,7 @@ ...@@ -404,7 +405,7 @@
</div> </div>
</li> </li>
</ul> </ul>
</template>
</div> </div>
<div class="CD_Conditions"> <div class="CD_Conditions">
......
...@@ -390,6 +390,7 @@ ...@@ -390,6 +390,7 @@
</span> </span>
</li> </li>
<li> <li>
<el-button class="hollowFixedBtn" v-if="IsSupperOrderEdit&&pagesTitle!='销售'" @click="setCompleted">{{$t('objFill.oneclickfinish')}}</el-button>
<input v-if="userInfo.SimpleEasy==1" type="button" class="hollowFixedBtn" :value="$t('pub.addBtn')" @click="addOrders"/> <input v-if="userInfo.SimpleEasy==1" type="button" class="hollowFixedBtn" :value="$t('pub.addBtn')" @click="addOrders"/>
<button class="hollowFixedBtn" @click="getList()">{{$t('pub.searchBtn')}}</button> <button class="hollowFixedBtn" @click="getList()">{{$t('pub.searchBtn')}}</button>
</li> </li>
...@@ -405,7 +406,7 @@ ...@@ -405,7 +406,7 @@
<span class="groupTourOrderByTuan_ico"><i <span class="groupTourOrderByTuan_ico"><i
style="background-color:#ff9800"></i><span>{{$t('fnc.ytongguo')}}</span></span></p> style="background-color:#ff9800"></i><span>{{$t('fnc.ytongguo')}}</span></span></p>
</div> </div>
<visaOrderList :pagesTitle="pagesTitle" :OrderList="dataList" v-loading="loading" @success="getList"> <visaOrderList ref="visaOrderList" :pagesTitle="pagesTitle" :OrderList="dataList" v-loading="loading" @success="getList">
</visaOrderList> </visaOrderList>
<el-pagination background @current-change="handleCurrentChange" :current-page.sync="currentPage" <el-pagination background @current-change="handleCurrentChange" :current-page.sync="currentPage"
layout="total,prev, pager, next, jumper" :page-size="this.msg.pageSize" :total="total"> layout="total,prev, pager, next, jumper" :page-size="this.msg.pageSize" :total="total">
...@@ -645,7 +646,8 @@ ...@@ -645,7 +646,8 @@
PostId: 0, PostId: 0,
IsLeave: 0, IsLeave: 0,
}, },
layerCompanyList: [] layerCompanyList: [],
IsSupperOrderEdit: false,
} }
}, },
computed: { computed: {
...@@ -663,6 +665,9 @@ ...@@ -663,6 +665,9 @@
this.getList(); this.getList();
this.$message.success('保存成功'); this.$message.success('保存成功');
}, },
setCompleted() {
this.$refs.visaOrderList.setCompleted()
},
pickerEnd(){ pickerEnd(){
if (this.msg.FinishSDate > this.msg.FinishEDate && this.msg.FinishEDate !== "") { if (this.msg.FinishSDate > this.msg.FinishEDate && this.msg.FinishEDate !== "") {
this.$message.error(this.$t('tips.jsrqbndyksriqi')); this.$message.error(this.$t('tips.jsrqbndyksriqi'));
...@@ -692,6 +697,12 @@ ...@@ -692,6 +697,12 @@
}, },
GetSupperOrderEditAuth() { GetSupperOrderEditAuth() {
var actionCode = this.$AuthCode.F_InvoiceManagement; var actionCode = this.$AuthCode.F_InvoiceManagement;
var actionCodeOrderEdit = this.$AuthCode.SupperOrderEdit;
this.CheckUserAuth(actionCodeOrderEdit, res => {
if (res.data.resultCode == 1 && res.data.data == 1) {
this.IsSupperOrderEdit = true;
}
});
this.CheckUserAuth(actionCode, res => { this.CheckUserAuth(actionCode, res => {
if (res.data.resultCode == 1 && res.data.data == 1) { if (res.data.resultCode == 1 && res.data.data == 1) {
this.F_InvoiceManagement = true; this.F_InvoiceManagement = true;
......
...@@ -505,10 +505,10 @@ ...@@ -505,10 +505,10 @@
<template> <template>
<div> <div>
<div style="text-align: right;position: fixed;top: 62px; right: 89px;"> <!-- <div style="text-align: right;position: fixed;top: 62px; right: 89px;">
<el-button class="hollowFixedBtn" v-if="IsSupperOrderEdit&&pagesTitle!='销售'" @click="setCompleted" <el-button class="hollowFixedBtn" v-if="IsSupperOrderEdit&&pagesTitle!='销售'" @click="setCompleted"
:loading="CompletedLoading">{{$t('objFill.oneclickfinish')}}</el-button> :loading="CompletedLoading">{{$t('objFill.oneclickfinish')}}</el-button>
</div> </div> -->
<el-table ref="multipleTable" :data="OrderList" tooltip-effect="dark" style="width: 100%" row-key="id" <el-table ref="multipleTable" :data="OrderList" tooltip-effect="dark" style="width: 100%" row-key="id"
@selection-change="handleSelectionChange"> @selection-change="handleSelectionChange">
<el-table-column type="selection" :selectable="selectable" :reserve-selection="true" <el-table-column type="selection" :selectable="selectable" :reserve-selection="true"
......
This diff is collapsed.
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