(function() { Vue.component('device-reback', { template: `

意见反馈反馈记录

hi~你发现了什么问题?

  • 功能优化
  • {{list.name}}

    {{list.detail}}

最多300字

最多300字

(选填,图片最多可传4张)

最多300字

请留下您的联系方式,管理员会尽快为您找到解决方案

提 交 返 回

意见反馈已完成

您可以在反馈记录查看意见进展

返 回
返 回
确定
{{page + 2}} {{page + 1}} {{page}} {{page - 1}}
`, props: [], data: function() { return { isQuestion: true, isRecord: false, isEdit: false, judgeSelectIndex: null, questionArr: [{ name: "功能异常", detail: "举例:无法使用功能", code: "1" },{ name: "功能优化", detail: "举例:不好用、界面难看", code: "2" },{ name: "新功能建议", detail: "你希望有什么功能?", code: "3" },{ name: "其他", detail: "举例:身份信息丢失", code: "4" }], quesImg: [{src: '../../../images/bg.png'}], recordList: [{ tit: "功能异常", detail: "是啥东西爱尔家圣诞节哦按时大多数萨达阿达擦擦擦市场擦拭菜市场大神擦拭的", status: "1" },{ tit: "功能异常", detail: "是啥东西爱尔家圣诞节哦按时大多数萨达阿达擦擦擦市场擦拭菜市场大神擦拭的", status: "1" },{ tit: "功能异常", detail: "是啥东西爱尔家圣诞节哦按时大多数萨达阿达擦擦擦市场擦拭菜市场大神擦拭的", status: "0" },{ tit: "功能异常", detail: "是啥东西爱尔家圣诞节哦按时大多数萨达阿达擦擦擦市场擦拭菜市场大神擦拭的", status: "1" },{ tit: "功能异常", detail: "是啥东西爱尔家圣诞节哦按时大多数萨达阿达擦擦擦市场擦拭菜市场大神擦拭的", status: "1" },{ tit: "功能异常", detail: "是啥东西爱尔家圣诞节哦按时大多数萨达阿达擦擦擦市场擦拭菜市场大神擦拭的", status: "0" },{ tit: "功能异常", detail: "是啥东西爱尔家圣诞节哦按时大多数萨达阿达擦擦擦市场擦拭菜市场大神擦拭的", status: "1" },{ tit: "功能异常", detail: "是啥东西爱尔家圣诞节哦按时大多数萨达阿达擦擦擦市场擦拭菜市场大神擦拭的", status: "1" },{ tit: "功能异常", detail: "是啥东西爱尔家圣诞节哦按时大多数萨达阿达擦擦擦市场擦拭菜市场大神擦拭的", status: "0" },{ tit: "功能异常", detail: "是啥东西爱尔家圣诞节哦按时大多数萨达阿达擦擦擦市场擦拭菜市场大神擦拭的", status: "0" }], page: 1, editPage: null } }, methods: { select: function(key) { if(this.judgeSelectIndex == key) { this.judgeSelectIndex = null } else { this.judgeSelectIndex = key } }, record: function() { this.isRecord = true }, limit: function() {}, remove: function(key) { this.quesImg.splice(key, 1) }, submit: function() { this.isQuestion = false }, back: function() { this.isQuestion = true this.isRecord = false }, setPage: function(key) { if(+key) { this.page = +key } else { alert(key) } }, view: function(list) { this.isRecord = false this.isQuestion = true this.isEdit = true }, backRecord: function() { this.isRecord = true this.isQuestion = false this.isEdit = false } } }) })()