Merge branch 'main' into 'stg'

发起文书送达

See merge request cloud-mediate/mediate-manage-web!91
This commit is contained in:
刘翕 2025-02-26 08:57:18 +00:00
commit fe30222331
6 changed files with 8 additions and 9 deletions

View File

@ -134,8 +134,8 @@ import api from "@/services/caseManagement";
</script>
<style scoped lang="scss">
.dialog-case-record{
.el-dialog .el-dialog__header{background-color: #C66A5B;}
.el-dialog__header{background-color: #C66A5B;}
.el-dialog .el-dialog__header{background-color: #5d7eeac7;}
.el-dialog__header{background-color: #5d7eeac7;}
}
.dialog-case-trace{
padding: 16px 20px;
@ -158,7 +158,7 @@ import api from "@/services/caseManagement";
<style lang="scss">
.dialog-case-record{
.el-dialog .el-dialog__header {
background-color: #C66A5B;
background-color: #5d7eeac7;
height: 43px !important;
line-height: 50px !important;
}

View File

@ -45,7 +45,7 @@
<div v-if="leftActive == 1" class="case-debt-info">
<div class="descriptions-t" style="position: relative;">
<div class="mediate-status-log">
<img v-if="baseInfo.mediateStatus == 4" src="../../../assets/image/mediate/mediatefail.png" />
<img v-if="baseInfo.mediateStatus == 6" src="../../../assets/image/mediate/mediatefail.png" />
<img v-if="baseInfo.mediateStatus == 5" src="../../../assets/image/mediate/mediatesuccess.png" />
</div>
<div class="f16 f-weight600 descriptions-t-title">基本信息</div>

View File

@ -213,7 +213,7 @@
<i class="f24 el-icon-document-checked color-4E5969"></i>
<div class="pl-4 f14">办结</div>
</div>
<div class="flex-row justify-content-between align-items-center cursor-pointer bottom-case-btn" @click="handleChangeMediation(4)">
<div class="flex-row justify-content-between align-items-center cursor-pointer bottom-case-btn" @click="handleChangeMediation(6)">
<i class="f24 el-icon-document-delete color-4E5969"></i>
<div class="pl-4 f14">失败</div>
</div>

View File

@ -221,7 +221,7 @@ export default {
}
.bag-BC6F60{
background-color: #BC6F60;
background-color: #5d7eeac7;
}
.bor-E5E6EB{
border-bottom: solid 1px #E5E6EB;

View File

@ -68,11 +68,10 @@ import api from "@/services/caseManagement";
},
handleSubmit(){
if(!this.$clickThrottle()) { return }//
if (this.ObjectInfo.fileTypes.length == 0){
if (this.ObjectInfo.documentTypes.length == 0){
this.$message.warning("请选择文书类型!");
return
}
this.ObjectInfo.caseId = this.caseId
api.traceServedCreate(this.ObjectInfo).then((res) => {
this.$message.success("发起签字成功");

View File

@ -2,7 +2,7 @@
/* 防止重复点击 */
let clickTimer = 0
function clickThrottle(interval = 3000) {
function clickThrottle(interval = 1500) {
let now = +new Date(); // 获取当前时间的时间戳
let timer = clickTimer; // 记录触发事件的事件戳