Blame view

src/pages/custom-service/components/faq.js 1.39 KB
simon committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
/**
 * 页面描述:FAQ
 * 内容从CMS中取
 */

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

export default {
	data() {
		return {
			key: 'value',
simon committed
16
			dataList: []
simon committed
17 18 19 20 21 22 23 24 25 26 27 28
		}
	},
	components: {},
	computed: {
		locale() {
			return this.$i18n.locale || 'tc';
		},
		i18n() {
			return this.$i18n.messages && this.$i18n.locale ? this.$i18n.messages[this.$i18n.locale] : {};
		},
	},
	methods: {
simon committed
29 30 31
		// 折叠/收起
		onMoreHandler(item) {
			item.more = !item.more;
simon committed
32
		},
simon committed
33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73
		queryFaq() {
			httpPost({
				url: api.faq,
				data: {
					page: 1,
					size: 999999
				}
			}).then((result) => {
				let lang = this.$i18n.locale;
				let dataList = [];
				result.forEach(element => {
					let item = {}
					switch (lang) {
						case "en":
							item.q = element.questionEn;
							item.a = element.answerEn;
							break;

						case "zh":
							item.q = element.questionCn;
							item.a = element.answerCn;
							break;

						default:
							item.q = element.questionTc;
							item.a = element.answerTc;
							break;
					}
					item.more = false;
					dataList.push(item)
				});
				this.dataList = dataList;
				console.log("dataList:", dataList);
			}).catch((err) => {});
		},
		initData() {
			this.queryFaq();
		}
	},
	mounted() {
		this.initData();
simon committed
74
	},
simon committed
75 76 77 78 79 80 81
	created() {
		this.$root.eventBus.$on("langChange", () => {
			try {
				this.initData();
			} catch (e) {}
		});
	}
simon committed
82
}