1234567891011121314151617181920212223242526272829303132333435363738394041 |
- import request from '@/helpers/request'
- import { state } from '@/state'
- import { defineComponent } from 'vue'
- // 预览协议 - 原生实名认证使用
- export default defineComponent({
- name: 'preview-protocol',
- data() {
- return {
- protocolHTML: '' as any
- }
- },
- async mounted() {
- try {
- // 判断是否有协议内容
- if (!this.protocolHTML) {
- const { data } = await request.get(
- state.platformApi + '/open/userContractRecord/queryLatestContractTemplate',
- {
- params: {
- contractType: 'WITHDRAW'
- }
- }
- )
- this.protocolHTML = data.contractTemplateContent || ''
- }
- } catch {
- //
- }
- },
- render() {
- return (
- <div id="mProtocol">
- <div
- style="font-size: 14px;padding: 12px;color: #333;line-height: 1.4;"
- v-html={this.protocolHTML}
- ></div>
- </div>
- )
- }
- })
|