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

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

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