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
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
| let notice_id = $('#notice_id').val();
| const App = {
| mixins: [sharedMixin],/////共用的方法/////
| data() {
| return {
| notice_id: notice_id,
| dialog: {
| addDialogStatus: false,
| },
| loading: {
| loading: false,
| addLoading: false,
| },
| loading_attachment: false,
| attachmentList: [],
| notice_title: "新增商城公告",
| other: {},
| clearable: false,
| searchdata: {
| page: 1,
| page_size: 20,
| kw: '',
| },
| noticeRules: {
| title: [
| { required: true, message: '请输入公告标题', trigger: 'blur' }
| ],
| publish_time: [
| { required: true, message: '请填写发布时间', trigger: 'blur' },
| ],
| content: [
| { required: true, message: '请输入公告内容', trigger: 'blur' }
| ],
|
| },
| noticeInfo: {
| title: '',
| publish_time: this.curentTime(),
| content: '',
| },
| };
| },
| mounted() {
| this.getTinymce();
| this.create();
| },
| created() { },
| methods: {
| // 新增与编辑
| create() {
| const that = this;
| if (that.notice_id > 0) {
| that.notice_title = "编辑商城公告"
|
| let url = "/admin/notice/getNoticeDetail.html"
| postRequest(url, { notice_id: that.notice_id }).then(res => {
|
| if (res.data.code === 200) {
| that.noticeInfo = res.data.info
| that.getAttachmentList();
| tinymce.get('tinymce-content').setContent(that.noticeInfo.content);
|
| }
| else {
| that.$notify.error({
| title: '错误',
| position: 'top-left',
| message: res.data.message
| });
| }
| }).catch((error) => {
| that.$notify.error({
| title: "错误",
| position: "top-left",
| message: "请求发生错误,请稍后重试",
| });
| });
|
| }
| else {
| that.notice_title = "新增商城公告"
| }
| },
| // 上传附件
| uploadAttachment(param) {
| const that = this;
| var fileobj = param.file;
| var form = new FormData();
| form.append('file', fileobj);
| form.append('notice_id', that.noticeInfo.id);
| const url = "/admin/notice/uploadAttachment.html";
| axios.post(url, form).then((res) => {
| if (res.data.code === 200) {
| that.getAttachmentList();
| }
| param.onSuccess(res)
| }).catch(({ err }) => {
| param.onError(err)
| });
| },
| // 获取附件列表
| getAttachmentList() {
| const that = this;
| that.loading_attachment = true;
| const url = "/admin/notice/getAttachmentList.html";
| postRequest(url, { notice_id: that.noticeInfo.id }).then((res) => {
| that.loading_attachment = false;
| if (res.data.code === 200) {
| that.attachmentList = res.data.list;////商品附件列表
| }
| else {
| that.attachmentList = [];
| }
| }).catch((error) => {
| // 处理请求失败的情况
| that.loading_attachment = false;
| });
| },
| // 删除附件
| deleteAttachment(index) {
| const that = this;
| let { id } = that.attachmentList[index];
| that.$confirm(
| '确定删除吗?',
| '警告',
| {
| confirmButtonText: '删除',
| cancelButtonText: '取消',
| type: 'warning',
| center: true,
| }
| ).then(() => {
| let url = "/admin/notice/deleteAttachment.html"
| postRequest(url, { id: id }).then(res => {
| if (res.data.code === 200) {
| that.$notify({
| title: '成功',
| message: res.data.message,
| position: 'top-left',
| type: 'success'
| });
| that.attachmentList.splice(index, 1)
| }
| else {
| that.$notify.error({
| title: '错误',
| position: 'top-left',
| message: res.data.message
| });
| }
| }).catch((error) => {
| that.$notify.error({
| title: "错误",
| position: "top-left",
| message: "请求发生错误,请稍后重试",
| });
| });
| /////////////
| }).catch(() => {
| //取消,不做处理
| })
|
| },
| // 提交表单
| submitForm() {
| let that = this;
| that.noticeInfo.content = tinymce.get('tinymce-content').getContent()
| that.$refs['Form'].validate(valid => {
| if (valid) {
| if (that.loading.addLoading) {
| return;
| }
| that.loading.addLoading = true;
| const url = "/admin/notice/saveNotice.html";
| postRequest(url, that.noticeInfo).then((res) => {
| if (res.data.code === 200) {
| that.$notify({
| title: "成功",
| message: res.data.message,
| position: "top-left",
| type: "success",
| });
| that.noticeInfo.id = res.data.id;
| } else {
| that.$notify.error({
| title: "错误",
| position: "top-left",
| message: res.data.message,
| });
| }
| that.loading.addLoading = false;
| // that.dialog.addDialogStatus = false;
| }).catch((error) => {
| // 处理请求失败的情况
| that.$notify.error({
| title: "错误",
| position: "top-left",
| message: "添加公告失败",
| });
| that.loading.addLoading = false;
| });
| }
| });
| },
| // 关闭表单
| backForm() {
| history.back();
| },
|
| // 初始化富文本编辑器
| getTinymce() {
| tinymce.init({
| selector: '.textarea',
| license_key: 'gpl',
| language: "zh_CN",
| entity_encoding: "raw",
| convert_urls: false,
| width: "100%",
| height: 500,
| fontsize_formats: "8pt 9pt 10pt 11pt 12pt 14pt 18pt 22pt 26pt 36pt",
| autoresize_min_height: 300,
| autoresize_max_height: 300,
| resize: false,
| statusbar: false,
| branding: false,
| promotion: false,
| });
| },
| }
| };
| const app = Vue.createApp(App);
| for (const [key, component] of Object.entries(ElementPlusIconsVue)) {
| app.component(key, component)
| }
| app.use(ElementPlus, {
| locale: ElementPlusLocaleZhCn,
| });
| app.mount("#vue_item");
|
|