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
|
|
| const App = {
| mixins: [sharedMixin],/////共用的方法/////
| data() {
| return {
| loading: {
| loading: false,
| addLoading: false,
| },
| attachmentList: [],
| clearable: false,
| noticeList: [],
| other: {},
| clearable: false,
| searchdata: {
| page: 1,
| page_size: 20,
| kw: '',
| },
| };
| },
| mounted() {
| this.getNoticeList();
| },
| created() { },
| methods: {
| ///修改扩展字段的值////
| updateExt(row, field) {
| if (row.id) {
| let that = this;
| let url = "/admin/notice/updateExt.html"
| postRequest(url, { id: row.id, [field]: row[field] }).then(res => {
| if (res.data.code == 200) {
| that.$notify({
| title: "成功",
| message: res.data.message,
| position: "top-left",
| type: "success",
| });
| }
| else {
| that.$notify.error({
| title: "错误",
| position: "top-left",
| message: res.data.message,
| });
| }
| });
| }
| },
| // 编辑公告
| editNotice(id) {
| let url = "/admin/notice/create/id/" + id + ".html";
| window.location.href = url;
| },
| // 创建公告
| create() {
| let url = "/admin/notice/create.html";
| window.location.href = url;
| },
| handleSizeChange(val) {
| //////设置每页多少条
| this.searchdata.page_size = val
| this.getNoticeList();
| },
| handleCurrentChange(val) {
| ///改变当前页///////
| this.searchdata.p = val
| this.getNoticeList();
| },
| // 获取公告列表
| getNoticeList() {
| let that = this;
| that.loading.loading = true;
| let url = "/admin/notice/getNoticeList.html"
| postRequest(url, that.searchdata).then(res => {
| if (res.data.code == 200) {
| that.noticeList = res.data.list;
| that.other = res.data.other;
| }
| that.loading.loading = false;
| }).catch(() => {
| that.loading.loading = false;
| //取消,不做处理
| });
| },
| // 删除公告
| deleteNotice(index) {
| const that = this;
| let { id } = that.noticeList[index];
| that.$confirm(
| '确定删除吗?',
| '警告',
| {
| confirmButtonText: '删除',
| cancelButtonText: '取消',
| type: 'warning',
| center: true,
| }
| ).then(() => {
| let url = "/admin/notice/deleteNotice.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.noticeList.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(() => {
| //取消,不做处理
| })
|
| },
| }
| };
| 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");
|
|