Commit 5b2b083c authored by 吴春's avatar 吴春

提交工资制单

parent c7adf0a6
......@@ -1537,6 +1537,7 @@
<div class="btmAddStore" :class="{'fillShow':fillShow}">
<div class="btmTitle">{{$t('objFill.daorugzdxx')}}</div>
<div style="color:red;padding:10px 0" v-if="BatchAddWagesMessage">提示:{{BatchAddWagesMessage}}</div>
<div style="height:250px;overflow-y: auto;">
<table class="impoTable" style="border-spacing: 0px 1px;" v-loading="tabLoading">
<thead>
......@@ -1547,7 +1548,7 @@
<th width="100">{{$t('objFill.leibie')}}</th>
<th >{{$t('objFill.pinzhengsc')}}</th>
<th width="150">{{$t('pub.pubRemark')}}</th>
<th width="150">下一步审核人</th>
</tr>
<tr v-for="(item,index) in importData" >
<td >
......@@ -1600,6 +1601,9 @@
<td >
<span>{{item.Notes}}</span>
</td>
<td>
<span>{{item.ReviewedBy}}</span>
</td>
</tr>
</thead>
</table>
......@@ -1791,6 +1795,7 @@
export default {
data() {
return {
BatchAddWagesMessage: '',
yfcdLoading: false,
isTerminate: -1,
outerVisible: false,
......@@ -2400,9 +2405,14 @@
qMsg,
res => {
if (res.data.resultCode == 1) {
that.tabLoading = false;
that.fillShow = false;
that.Success(res.data.message);
if(res.data.message){
this.BatchAddWagesMessage =res.data.message
}else {
that.tabLoading = false;
that.fillShow = false;
that.Success('导入成功');
}
that.getPageList();
} else {
that.Error(res.data.message);
......
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