|
|
@@ -82,6 +82,9 @@
|
|
|
:column="2"
|
|
|
class="margin-top"
|
|
|
v-if="data.confirmDissent"
|
|
|
+ border
|
|
|
+ :label-style="labelStyle"
|
|
|
+ :contentStyle="content_style"
|
|
|
>
|
|
|
<el-descriptions-item label="审核结果">{{
|
|
|
data.confirmDissent.executeStatus == 0 ? "同意" : "不同意"
|
|
|
@@ -160,12 +163,15 @@
|
|
|
</el-form-item>
|
|
|
</el-form>
|
|
|
</div>
|
|
|
- <div slot="footer" class="dialog-footer">
|
|
|
- <el-button type="primary" @click="submitForm" v-if="type != 'detail'"
|
|
|
+ <div slot="footer" class="dialog-footer" v-if="type != 'detail'">
|
|
|
+ <el-button type="primary" @click="submitForm"
|
|
|
>确 定</el-button
|
|
|
>
|
|
|
<el-button @click="cancel">取 消</el-button>
|
|
|
</div>
|
|
|
+ <div slot="footer" class="dialog-footer" style="margin-top:40px" v-else>
|
|
|
+ <el-button @click="cancel">关闭</el-button>
|
|
|
+ </div>
|
|
|
</DialogCom>
|
|
|
</template>
|
|
|
<script>
|