|
|
@ -25,9 +25,11 @@ |
|
|
|
</el-form-item> |
|
|
|
</el-form> |
|
|
|
<template slot="footer"> |
|
|
|
<div class="resi-btns"> |
|
|
|
<el-button @click="visible = false">{{ $t('cancel') }}</el-button> |
|
|
|
<el-button v-if="dataForm.flag === '2'" type="danger" @click="dataFormSubmitHandle('2')">{{ $t('checkBTGBtn') }}</el-button> |
|
|
|
<el-button v-if="dataForm.flag === '2'" type="primary" @click="dataFormSubmitHandle('1')">{{ $t('checkTGBtn') }}</el-button> |
|
|
|
</div> |
|
|
|
</template> |
|
|
|
<el-dialog :visible.sync="dialogVisible" :modal="false"> |
|
|
|
<img width="100%" :src="dialogImageUrl" alt=""> |
|
|
@ -144,3 +146,9 @@ export default { |
|
|
|
box-sizing: border-box; |
|
|
|
} |
|
|
|
</style> |
|
|
|
<style lang="scss" scoped> |
|
|
|
.resi-btns { |
|
|
|
margin-top: 20px; |
|
|
|
text-align: center; |
|
|
|
} |
|
|
|
</style> |
|
|
|