Commit fa1fe682 authored by liudong1993's avatar liudong1993

1

parent 28b7e605
......@@ -189,6 +189,7 @@
:label="$t('objFill.caiwubz')" width="130px">
<template slot-scope="scope">
<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>
</el-table-column>
<el-table-column v-if="active==2"
......@@ -244,6 +245,7 @@
custom-class="w600"
:title="$t('objFill.bohuiyy')"
:visible.sync="cancelOrderDialog"
:close-on-click-modal="false"
>
<div style="padding-bottom:20px">
<el-input
......@@ -275,8 +277,9 @@
<el-dialog
custom-class="w600"
:title="$t('objFill.caiwubz')"
:title="$t('objFill.tijiaoshenhe')"
:visible.sync="auditDialog"
:close-on-click-modal="false"
>
<div style="padding-bottom:20px">
<el-input
......@@ -305,6 +308,39 @@
</div>
</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')">
<price-dialog :ConfigId="dialog.ConfigId" :OfferId="dialog.OfferId" ref="dialog"></price-dialog>
</el-dialog>
......@@ -323,6 +359,7 @@
dataRow: null,
cancelOrderDialog: false,
auditDialog: false,
auditDialog2: false,
loading: false,
dataList: [],
active: '1',
......@@ -526,6 +563,11 @@
this.auditDialog = true
this.auditRemark='';
},
financeRemark(item){
this.dataRow = item
this.auditDialog2 = true
this.auditRemark=item.AuditRemark;
},
cancelOrderHandler(){
if(!this.cancelRemark) return this.Error(this.$t('objFill.v101.dmc.qingsrbhyy'))
let that = this;
......@@ -543,6 +585,9 @@
auditOrderHandler(){
this.groupAudit(2,this.dataRow.TCID);
},
auditOrderHandler2(){
this.groupRemark(this.dataRow.TCID);
},
bohui(item) {
this.dataRow = item
this.cancelOrderDialog = true
......@@ -589,6 +634,24 @@
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) {//团队收支明细
this.$router.push({
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