1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
| // pages/bookServices/detail/components/suggest/suggest.js
| const app = getApp()
| Component({
| /**
| * 组件的属性列表
| */
| properties: {
| bookIcon: {
| type: String,
| value: ''
| },
| bookName: {
| type: String,
| value: ''
| }
| },
|
| data: {
| dialogKey: '',
| showWithInput: false,
| showTextAndTitleWithInput: false,
| inputvalue: '',
| textvalue: '',
| ratevalue: 0,
| phoneError: false,
| textError: false,
| },
| methods: {
| showDialog(e) {
| this.setData({
| showWithInput: true
| })
| },
|
| closeDialog() {
| this.setData({
| showWithInput: false,
| ratevalue: 0,
| inputvalue: '',
| textvalue: ''
| })
| },
| // 评分改变
| onChangeRate(e) {
| console.log(e.detail);
| this.setData({
| ratevalue: e.detail.value
| });
| },
| // 输入框改变
| inputChange(e) {
| this.setData({
| inputvalue: e.detail.value
| })
| const isPhoneNumber = /^(13[0-9]|14[01456879]|15[0-35-9]|16[2567]|17[0-8]|18[0-9]|19[0-35-9])\d{8}$/.test(e.detail.value);
| if (this.data.phoneError === isPhoneNumber) {
| this.setData({
| phoneError: !isPhoneNumber,
| });
| }
| },
| // 文本框改变
| textareaChange(e) {
| this.setData({
| textvalue: e.detail.value
| })
| },
| feedBack() {
| const token = wx.getStorageSync('jsek-token')
| if (!token) {
| // return wx.showToast({
| // icon: 'error',
| // title: '请先登录',
| // })
| return wx.getUserProfile({
| desc: '用户登录',
| success: (res) => {
| console.log(res);
| }
| })
| }
| let content = {
| source: this.data.ratevalue,
| phone: this.data.inputvalue,
| content: this.data.textvalue,
| icon: this.properties.bookIcon
| }
| let query = {
| topicIdOrRefCode: 'bookOpinion',
| name: this.properties.bookName,
| content: JSON.stringify(content),
| type: 'ProductComment',
| cmsTypeRefCode: '',
| newDataListRequest: []
| }
|
| app.MG.ugc.newTopicMessage(query).then((res) => {
| wx.showToast({
| title: '提交成功',
| icon: 'success',
| duration: 2000
| })
| this.closeDialog()
| })
| },
| // 确定
| confirmSuggest() {
| if (!this.data.inputvalue) {
| return this.setData({
| phoneError: true
| })
| }
| if (!this.data.textvalue || this.data.ratevalue) {
| return wx.showToast({
| success: 'error',
| title: '请填写完整表单',
| })
| }
| this.feedBack()
| }
| },
| })
|
|