Commit b0509094 authored by 华国豪's avatar 华国豪 🙄

新增员工财务单据交接页面

parent 5c1b333e
......@@ -312,5 +312,8 @@ export const obj = {
kehushuliang: "客户数量",
tuikuanzhuangt: "退款状态",
yingfujine: "应付金额",
menpiaozhongl: "门票种类",
youjia: "有价",
jingdanxinx: "景点价格信息",
}
export default obj;
\ No newline at end of file
......@@ -312,5 +312,8 @@ export const obj = {
kehushuliang: "客戶數量",
tuikuanzhuangt: "退款狀態",
yingfujine: "應付金額",
menpiaozhongl: "門票種類",
youjia: "有價",
jingdanxinx: "景點價格資訊",
}
export default obj;
\ No newline at end of file
This diff is collapsed.
......@@ -141,13 +141,15 @@ export default {
msg:{
pageIndex:1,
pageSize:5,
CreateBy: 0,
},
dataList:[],
addMsg:{
reciveEmpId:'',
startDate:'',
endDate:'',
delegateContent:''
delegateContent:'',
InitiatorEmpId: 0
},
delegateContent:[],
transactionDate:[],
......@@ -273,6 +275,7 @@ export default {
}
},
mounted(){
this.msg.CreateBy = this.addMsg.InitiatorEmpId = this.$route.query.id
this.getList()
let userInfo=this.getLocalStorage();
this.userId = userInfo.EmployeeId;
......
......@@ -98,6 +98,9 @@
<el-tooltip class="item" effect="dark" :content="$t('adm.adm_bindaccountinfo')" placement="top">
<el-button type="primary" class='zidingyiFz' icon="iconfont icon-bangdingzhagnhuxinxi" circle @click="goUrl('empBankAccount',item.EmployeeId)"></el-button>
</el-tooltip>
<el-tooltip class="item" effect="dark" content="单据交接" placement="top">
<el-button type="primary" class='zidingyiFz' icon="iconfont icon-zhuanhuan2" circle @click="goUrl('GetWOrkTransferPageLis',item.EmployeeId)"></el-button>
</el-tooltip>
</td>
</tr>
......
......@@ -273,7 +273,7 @@
</li>
<li>
<span>
<em>门票总类</em>
<em>{{$t('ground.menpiaozhongl')}}</em>
<el-select v-model="msg.IsFree" class='multiple_input w210' :placeholder="$t('pub.pleaseSel')">
<!-- <el-option :label="$t('pub.unlimitedSel')" :value='-1'></el-option> -->
<el-option v-for="item in IsFreeList" :key="item.value" :label="item.label" :value="item.value">
......@@ -286,7 +286,7 @@
@click="resetPageIndex(),selectResource()">{{$t('pub.searchBtn')}}</button>
<button class="normalBtn" type="button"
@click="$router.push('scenicSpotInfoManage')">{{$t('pub.addBtn')}}</button>
<button class="hollowFixedBtn" type="button" @click="DownLoadFile()">下载</button>
<button class="hollowFixedBtn" type="button" @click="DownLoadFile()">{{$t('adm.adm_download')}}</button>
</li>
</ul>
</div>
......@@ -342,23 +342,23 @@
deleteID: "",
status: [{
value: "0",
label: "正常"
label: this.$t('pub.normalSel')
},
{
value: "1",
label: "删除"
label: this.$t('system.table_delete')
}
],
IsFreeList: [{
value: "-1",
label: "不限"
label: this.$t('pub.unlimitedSel')
}, {
value: "0",
label: "免费"
label: this.$t('advmanager.v_free')
},
{
value: "1",
label: "有价"
label: this.$t('ground.youjia')
}
],
loading: true,
......@@ -432,14 +432,14 @@
},
isdelete(ID) {
var that = this;
that.Confirm("是否删除?", function () {
that.Confirm(that.$t('tips.shifoushanchu'), function () {
that.apipost(
"ticketcoupons_post_Remove", {
ID: ID
},
response => {
if (response.data.resultCode == 1) {
that.Success("删除成功");
that.Success(that.$$t('tips.shanchuchenggong'));
that.selectResource();
} else {
that.Error(response.data.message);
......@@ -460,7 +460,7 @@
let _seconds = myDate.getSeconds() > 9 ? myDate.getSeconds() : '0' + myDate.getSeconds();
let downDate = _year + _month + _date + _hours + _minutes + _seconds;
var fileName = "景点价格信息" + downDate + ".xls";
var fileName = this.$t('ground.jingdanxinx') + downDate + ".xls";
this.GetLocalFile("dmcstatistics_post_GetTicketCouponsExport", this.msg, fileName,
res => {
this.loading = false;
......
......@@ -3006,6 +3006,13 @@ export default {
meta: {
title: '我的财务单据'
},
}, { //财务 财务单据 员工财务单据交接
path: '/GetWOrkTransferPageLis',
name: 'GetWOrkTransferPageLis',
component: resolve => require(['@/components/FinancialModule/GetWOrkTransferPageLis'], resolve),
meta: {
title: '员工财务单据交接'
},
}, { //财务 财务单据 挂账单据
path: '/FinancialAccounting',
name: 'FinancialAccounting',
......
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