|
@@ -104,9 +104,8 @@
|
|
<div style='display:inline-block;' v-if='scope.row.taskId'>
|
|
<div style='display:inline-block;' v-if='scope.row.taskId'>
|
|
<ws-button type="primary" @click="handleaudit(scope.row)">审核</ws-button>
|
|
<ws-button type="primary" @click="handleaudit(scope.row)">审核</ws-button>
|
|
</div>
|
|
</div>
|
|
- <div style='display:inline-block;' v-if='scope.row.status=="未付款"'>
|
|
|
|
- <ws-button type="primary" @click="handlepayment(scope.row)"
|
|
|
|
- v-hasPermission="`contractManagement.nonContract.nonContractInfo.status`">付款</ws-button>
|
|
|
|
|
|
+ <div style='display:inline-block;' v-if='scope.row.status=="待付款"'>
|
|
|
|
+ <ws-button type="primary" @click="handlepayment(scope.row)" v-hasPermission="`contractManagement.nonContract.nonContractInfo.status`">付款</ws-button>
|
|
</div>
|
|
</div>
|
|
<div style='display:inline-block;' v-if='scope.row.personName==staffName'>
|
|
<div style='display:inline-block;' v-if='scope.row.personName==staffName'>
|
|
<ws-button type="primary" @click="handleedit(scope.row)"
|
|
<ws-button type="primary" @click="handleedit(scope.row)"
|
|
@@ -192,14 +191,19 @@
|
|
</div>
|
|
</div>
|
|
</el-dialog>
|
|
</el-dialog>
|
|
|
|
|
|
- <el-dialog width='50%' :visible.sync="dialogVisible1" title="审核记录">
|
|
|
|
- <div v-for="item in recordList">
|
|
|
|
- <div style='width:100%;justify-content: space-between;' class='flex'>
|
|
|
|
- <div>{{item.operateUser}}</div>
|
|
|
|
- <div>{{item.dealMsg}}</div>
|
|
|
|
- <div>{{item.createDate}}</div>
|
|
|
|
|
|
+ <el-dialog :visible.sync="dialogVisible1" title="审核记录" width="30%" top="20vh" class="title_css">
|
|
|
|
+ <div v-for="(item,index) in recordList" :key="index" class="audit">
|
|
|
|
+ <div class="audit_item">
|
|
|
|
+ <div class="audit_left">
|
|
|
|
+ <span class="audit_name">{{item.operateUser}}</span><span
|
|
|
|
+ v-if="item.approveResult">{{item.approveResult == 0 ? "驳回" : "通过"}}</span><span
|
|
|
|
+ v-else>{{item.dealMsg}}</span>
|
|
|
|
+ </div>
|
|
|
|
+ <span class="audit_date">{{item.operateDate}}</span>
|
|
|
|
+ </div>
|
|
|
|
+ <div class="audit_opinion" v-if="item.dealMsg != '付款' && item.approveResult">审核意见:{{item.verifyRemark}}</div>
|
|
|
|
+ <div class="audit_opinion" v-if="item.dealMsg == '请款' && item.approveResult == null">备注信息:{{item.verifyRemark}}
|
|
</div>
|
|
</div>
|
|
- <div style='width:100%;text-align:center;'>{{item.verifyRemark}}</div>
|
|
|
|
</div>
|
|
</div>
|
|
</el-dialog>
|
|
</el-dialog>
|
|
</div>
|
|
</div>
|
|
@@ -801,4 +805,38 @@
|
|
text-align: center !important;
|
|
text-align: center !important;
|
|
border-radius: 4px;
|
|
border-radius: 4px;
|
|
}
|
|
}
|
|
|
|
+ /deep/.title_css .el-dialog__header {
|
|
|
|
+ text-align: center !important;
|
|
|
|
+ border-radius: 4px;
|
|
|
|
+ }
|
|
|
|
+ .audit {
|
|
|
|
+ margin-bottom: 20px;
|
|
|
|
+ border-bottom: 1px solid #AFB3BF;
|
|
|
|
+ height: 70px;
|
|
|
|
+
|
|
|
|
+ .audit_item {
|
|
|
|
+ width: 100%;
|
|
|
|
+ display: flex;
|
|
|
|
+ height: 30px;
|
|
|
|
+
|
|
|
|
+ .audit_name {
|
|
|
|
+ margin-right: 30px;
|
|
|
|
+ font-size: 16px;
|
|
|
|
+ font-weight: 600;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ .audit_left {
|
|
|
|
+ width: 60%;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ .audit_date {
|
|
|
|
+ width: 40%;
|
|
|
|
+ justify-content: flex-end;
|
|
|
|
+ display: flex;
|
|
|
|
+ color: #AFB3BF;
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ .audit_opinion {}
|
|
|
|
+ }
|
|
</style>
|
|
</style>
|