chengkun
2025-06-05 4080b5997b38ca84b3b203c7101dcadb97b76925
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
var t = $('#t').val();
const App = {
    mixins: [sharedMixin], /////共用的方法/////
    data() {
        return {
            active: t,
            seller_title: '编辑供应商',
            seller_button_txt: '',
            currindex: '',
            direction: 'ltr',
            show_seller_info: false, ////是否显示供应商编辑信息/////////////
            clearable: false,
            useritem: {},
            seller_list: [],
            other: {},
            clearable: false,
            searchdata: {
                p: 1,
                page_size: 20,
                kw: '',
            },
 
        };
    },
    mounted() {
        this.get_seller_list();
    },
    created() { },
    methods: {
 
        /////进入供应商编辑页面/////
        goto_edit_seller(id) {
            if (id && id > 0) {
                window.location.href = '/admin/seller/add/id/' + id + ".html";
            } else {
                window.location.href = "/admin/seller/add.html";
            }
        },
        delete_seller(index) {
            var that = this;
            let {
                id
            } = that.seller_list[index];
            that.$confirm(
                '确定删除吗?',
                '警告', {
                confirmButtonText: '删除',
                cancelButtonText: '取消',
                type: 'warning',
                center: true,
            }
            ).then(() => {
                let url = "/seller/seller/delete_seller.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.seller_list.splice(index, 1)
                        that.other.count--;
                    } else {
                        that.$notify.error({
                            title: '错误',
                            position: 'top-left',
                            message: res.data.message
                        });
                    }
                });
                /////////////                
            }).catch(() => {
                //取消
            })
 
        },
        save_seller() {
            let that = this;
 
            // return false;
            let url = "/admin/seller/save_seller.html"
            postRequest(url, that.useritem).then(res => {
                if (res.data.code == 200) {
                    that.$notify({
                        title: '成功',
                        message: res.data.message,
                        position: 'top-left',
                        type: 'success'
                    });
                    that.useritem = {};
                    that.show_seller_info = false;
                    if (that.currindex == -1) {
                        that.get_seller_list();
                    } else {
                        that.seller_list[that.currindex].end_time = res.data.end_time;
                    }
                } else {
                    that.$notify.error({
                        title: '错误',
                        position: 'top-left',
                        message: res.data.message
                    });
                }
            });
 
        },
        show_seller_account(index) {
 
            let that = this;
            if (index == -1) {
                that.seller_title = '添加供应商'
                that.seller_button_txt = '立即添加'
            } else {
                that.seller_title = '编辑供应商'
                that.seller_button_txt = '立即保存'
            }
            that.currindex = index;
            that.show_seller_info = !that.show_seller_info
            if (that.show_seller_info && index >= 0) {
                that.useritem = that.seller_list[index];
            } else {
                that.useritem = {};
            }
 
 
        },
        set_ban_access(index) {
            let that = this;
            let item = that.seller_list[index];
            let url = "/admin/seller/update_ban_access.html"
            postRequest(url, {
                id: item.id,
                sub_ban_access: item.sub_ban_access
            }).then(res => {
                if (res.data.code == 400) {
                    that.seller_list[index].sub_ban_access = item.sub_ban_access == 1 ? 0 : 1;
                }
            });
        },
        setAuditStatus(index) {
            let that = this;
            let {
                seller_id,
                audit_status
            } = that.seller_list[index];
            let url = "/admin/seller/setAuditStatus.html"
            postRequest(url, {
                id: seller_id,
                audit_status: audit_status
            }).then(res => {
                if (res.data.code == 400) {
                    that.seller_list[index].audit_status = audit_status == 1 ? 0 : 1;
                }
            });
        },
        handleSizeChange(val) {
            //////设置每页多少条
            this.searchdata.page_size = val
            this.get_seller_list();
        },
        handleCurrentChange(val) {
            ///改变当前页///////
            this.searchdata.p = val
            this.get_seller_list();
        },
        formatDate(time) {
            return moment(time * 1000).format("YYYY-MM-DD");
        },
        searchseller_list() {
            this.get_seller_list()
        },
        get_seller_list() {
            let that = this;
            let url = "/admin/seller/seller_list.html"
            postRequest(url, that.searchdata).then(res => {
 
                if (res.data.code == 200) {
                    that.seller_list = res.data.list;
                    that.other = res.data.other;
                }
            });
        },
    }
};
const app = Vue.createApp(App);
for ([key, component] of Object.entries(ElementPlusIconsVue)) {
    app.component(key, component)
}
app.use(ElementPlus, {
    locale: ElementPlusLocaleZhCn,
});
app.mount("#vue_item");