fix
Showing
1 changed file
with
4 additions
and
1 deletions
| ... | @@ -2360,9 +2360,12 @@ const rejectDialogBtnClick = (btn, info) => { | ... | @@ -2360,9 +2360,12 @@ const rejectDialogBtnClick = (btn, info) => { |
| 2360 | <div class="tool_btns" v-if="detailType == 'add' || detailType == 'edit' || detailType == 'redit'"> | 2360 | <div class="tool_btns" v-if="detailType == 'add' || detailType == 'edit' || detailType == 'redit'"> |
| 2361 | <div class="btns"> | 2361 | <div class="btns"> |
| 2362 | <el-button @click="btnClick({ value: 'cancel' })">返回</el-button> | 2362 | <el-button @click="btnClick({ value: 'cancel' })">返回</el-button> |
| 2363 | <!-- <el-button @click="btnClick({ value: 'draft' })" | 2363 | <!-- <el-button @click="btnClick({ value: 'draft' })" |
| 2364 | v-if="route.query.type == 'add' || route.query.type == 'edit'">保存草稿</el-button> --> | 2364 | v-if="route.query.type == 'add' || route.query.type == 'edit'">保存草稿</el-button> --> |
| 2365 | <el-button type="primary" @click="btnClick({ value: 'submit' })">提交流程</el-button> | 2365 | <el-button type="primary" @click="btnClick({ value: 'submit' })">提交流程</el-button> |
| 2366 | </div> | ||
| 2367 | </div> | ||
| 2368 | <div class="tool_btns" v-else-if="detailType == 'detail'"> | ||
| 2366 | <div class="btns"> | 2369 | <div class="btns"> |
| 2367 | <el-button v-for="btn in toolBtns" :type="btn.type" :plain="btn.plain" @click="btnClick(btn)">{{ btn.label | 2370 | <el-button v-for="btn in toolBtns" :type="btn.type" :plain="btn.plain" @click="btnClick(btn)">{{ btn.label |
| 2368 | }}</el-button> | 2371 | }}</el-button> | ... | ... |
-
Please register or sign in to post a comment