Commit b4d1a448 by liangjianmin

feat: 修正电子签署按钮状态逻辑,确保用户在正确状态下进行合同签署,提升用户体验

parent 02d40e05
Showing with 1 additions and 1 deletions
...@@ -69,7 +69,7 @@ ...@@ -69,7 +69,7 @@
<!-- 电子签 --> <!-- 电子签 -->
<template v-if="scope.row.contract_type == 2"> <template v-if="scope.row.contract_type == 2">
<!-- 签署状态为待签署+状态为有效 --> <!-- 签署状态为待签署+状态为有效 -->
<el-button type="primary" @click="showSignDialog(scope.row)" v-if="scope.row.status == 1 && scope.row.sign_status == 1">签署合同</el-button> <el-button type="primary" @click="showSignDialog(scope.row)" v-if="scope.row.status == 1 && scope.row.sign_status == 2">签署合同</el-button>
</template> </template>
<!-- 人工签 --> <!-- 人工签 -->
<template v-else> <template v-else>
......
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 sign in to comment