Commit fa1fe682 authored by liudong1993's avatar liudong1993

1

parent 28b7e605
...@@ -189,6 +189,7 @@ ...@@ -189,6 +189,7 @@
:label="$t('objFill.caiwubz')" width="130px"> :label="$t('objFill.caiwubz')" width="130px">
<template slot-scope="scope"> <template slot-scope="scope">
<p>{{scope.row.AuditRemark}}</p> <p>{{scope.row.AuditRemark}}</p>
<i class="el-icon-edit" @click="financeRemark(scope.row)" v-if="active==1 && EmployeeId==scope.row.OutGroupAuditEmpId && EmployeeId !=5"></i>
</template> </template>
</el-table-column> </el-table-column>
<el-table-column v-if="active==2" <el-table-column v-if="active==2"
...@@ -244,6 +245,7 @@ ...@@ -244,6 +245,7 @@
custom-class="w600" custom-class="w600"
:title="$t('objFill.bohuiyy')" :title="$t('objFill.bohuiyy')"
:visible.sync="cancelOrderDialog" :visible.sync="cancelOrderDialog"
:close-on-click-modal="false"
> >
<div style="padding-bottom:20px"> <div style="padding-bottom:20px">
<el-input <el-input
...@@ -275,8 +277,9 @@ ...@@ -275,8 +277,9 @@
<el-dialog <el-dialog
custom-class="w600" custom-class="w600"
:title="$t('objFill.caiwubz')" :title="$t('objFill.tijiaoshenhe')"
:visible.sync="auditDialog" :visible.sync="auditDialog"
:close-on-click-modal="false"
> >
<div style="padding-bottom:20px"> <div style="padding-bottom:20px">
<el-input <el-input
...@@ -305,6 +308,39 @@ ...@@ -305,6 +308,39 @@
</div> </div>
</el-dialog> </el-dialog>
<el-dialog
custom-class="w600"
:title="$t('objFill.qingshurbzxx')"
:visible.sync="auditDialog2"
:close-on-click-modal="false"
>
<div style="padding-bottom:20px">
<el-input
type="textarea"
autofocus
rows="5"
clear="w300"
v-model="auditRemark"
></el-input>
<el-row :gutter="20" style="margin-top: 20px;">
<el-col :span="24" style="text-align: right;">
<input
type="button"
class="normalBtn"
:value="$t('pub.saveBtn')"
@click="auditOrderHandler2"
/>
<input
type="button"
class="hollowFixedBtn"
:value="$t('pub.closeSel')"
@click="auditDialog2 = false,auditRemark=''"
/>
</el-col>
</el-row>
</div>
</el-dialog>
<el-dialog :visible.sync="dialog.show" width="1400px" :title="$t('objFill.baojiaxiangqing')"> <el-dialog :visible.sync="dialog.show" width="1400px" :title="$t('objFill.baojiaxiangqing')">
<price-dialog :ConfigId="dialog.ConfigId" :OfferId="dialog.OfferId" ref="dialog"></price-dialog> <price-dialog :ConfigId="dialog.ConfigId" :OfferId="dialog.OfferId" ref="dialog"></price-dialog>
</el-dialog> </el-dialog>
...@@ -323,6 +359,7 @@ ...@@ -323,6 +359,7 @@
dataRow: null, dataRow: null,
cancelOrderDialog: false, cancelOrderDialog: false,
auditDialog: false, auditDialog: false,
auditDialog2: false,
loading: false, loading: false,
dataList: [], dataList: [],
active: '1', active: '1',
...@@ -526,6 +563,11 @@ ...@@ -526,6 +563,11 @@
this.auditDialog = true this.auditDialog = true
this.auditRemark=''; this.auditRemark='';
}, },
financeRemark(item){
this.dataRow = item
this.auditDialog2 = true
this.auditRemark=item.AuditRemark;
},
cancelOrderHandler(){ cancelOrderHandler(){
if(!this.cancelRemark) return this.Error(this.$t('objFill.v101.dmc.qingsrbhyy')) if(!this.cancelRemark) return this.Error(this.$t('objFill.v101.dmc.qingsrbhyy'))
let that = this; let that = this;
...@@ -543,6 +585,9 @@ ...@@ -543,6 +585,9 @@
auditOrderHandler(){ auditOrderHandler(){
this.groupAudit(2,this.dataRow.TCID); this.groupAudit(2,this.dataRow.TCID);
}, },
auditOrderHandler2(){
this.groupRemark(this.dataRow.TCID);
},
bohui(item) { bohui(item) {
this.dataRow = item this.dataRow = item
this.cancelOrderDialog = true this.cancelOrderDialog = true
...@@ -589,6 +634,24 @@ ...@@ -589,6 +634,24 @@
err => { } err => { }
); );
}, },
groupRemark(TCID){
this.apipost("travel_post_SetOutGroupAuditInfo", {
TCID:TCID,
OutGroupAuditState:4,
OutGroupAuditRemark:'',
AuditRemark: this.auditRemark
}, res => {
if (res.data.resultCode == 1) {
this.auditDialog2=false;
this.dataRow.AuditRemark=this.auditRemark;
this.Success(res.data.message);
} else {
this.Error(res.data.message);
}
},
err => { }
);
},
goTeamBalance(id, OutBranchId) {//团队收支明细 goTeamBalance(id, OutBranchId) {//团队收支明细
this.$router.push({ this.$router.push({
name: "TeamBalancePayment", name: "TeamBalancePayment",
......
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