faq.js 834 Bytes
/**
 * 页面描述:FAQ
 * 内容从CMS中取
 */

import api from '@/api/api'
import {
	httpGet,
	httpPost
} from '@/api/fetch-api.js'

export default {
	data() {
		return {
			key: 'value',
			dataList: [{
				q: "我可以更改平安•傳家福的身故賠償支付方式嗎?",
				a: "答: 於第一保單週年日後,您可填妥<保單服務申請書>並遞交給我們申請更改身故賠償支付方式。這項表格可於我們的官網下載。",
			}]
		}
	},
	components: {},
	computed: {
		locale() {
			return this.$i18n.locale || 'tc';
		},
		i18n() {
			return this.$i18n.messages && this.$i18n.locale ? this.$i18n.messages[this.$i18n.locale] : {};
		},
	},
	methods: {
		downloadHandle(item) {
			if (item.download) {
				window.open(item.download);
			}
		},
		initData() {}
	},
	mounted() {},
	created() {}
}