You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
7 lines
438 B
7 lines
438 B
<el-dialog :title="(agreeContent && agreeContent.title) || ''" :visible="agreeVisible" width="900px" center custom-class="agree-dialog" @close="agreeClose">
|
|
<span v-if="agreeContent && agreeContent.content" v-html="agreeContent.content"></span>
|
|
<el-empty v-else description="暂无内容"></el-empty>
|
|
<span slot="footer" class="dialog-footer">
|
|
<el-button @click="agreeClose">确定</el-button>
|
|
</span>
|
|
</el-dialog> |