chengkun
2025-09-04 0ea78440cb53b7ecf0ef715e3f51d88918c5821d
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
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
var seller_id = $('#seller_id').val();
const App = {
    mixins: [sharedMixin], /////共用的方法/////
    data() {
        return {
            seller_info: {},
            seller_id: seller_id,
            personRules: {
                account_type: [
                    { required: true, message: '请选择账户类型', trigger: 'change' },
                ],
                first_name: [
                    { required: true, message: '请输入名称', trigger: 'blur' }
                ],
                last_name: [
                    { required: true, message: '请输入姓氏', trigger: 'blur' }
                ],
                detailed_address: [
                    { required: false, message: '请输入详细地址', trigger: 'blur' },
                ],
                cate_code: [
                    { required: true, message: '请选择国家/省份/城市', trigger: 'change' },
                ],
                ec_exp: [
                    { required: true, message: '请选择电商经验', trigger: 'change' },
                ],
                main_area: [
                    { required: true, message: '请选择主营区域', trigger: 'change' },
                ],
                main_dis_platform: [
                    { required: true, message: '请选择主营平台', trigger: 'change' },
                ],
            },
            businessRules: {
                account_type: [
                    { required: true, message: '请选择账户类型', trigger: 'change' },
                ],
                first_name: [
                    { required: true, message: '请输入联系人名称', trigger: 'blur' }
                ],
                last_name: [
                    { required: true, message: '请输入联系人姓氏', trigger: 'blur' }
                ],
                cate_code: [
                    { required: true, message: '请选择国家/省份/城市', trigger: 'change' },
                ],
                detailed_address: [
                    { required: true, message: '请输入详细地址', trigger: 'blur' },
                ],
                company_name: [
                    { required: true, message: '请输入公司名称', trigger: 'blur' },
                ],
                main_business: [
                    { required: true, message: '请选择公司主营业务', trigger: 'change' },
                ],
                company_scale: [
                    { required: true, message: '请选择公司规模', trigger: 'change' },
                ],
                ec_exp: [
                    { required: true, message: '请选择电商经验', trigger: 'change' },
                ],
                main_area: [
                    { required: true, message: '请选择主营区域', trigger: 'change' },
                ],
                main_dis_platform: [
                    { required: true, message: '请选择主营平台', trigger: 'change' },
                ],
            },
            baseInfoRules: {},
            baseInfo: {
                id: '',
                account_type: 1,
                first_name: '',
                last_name: '',
                main_area: [],
                company_name: '',
                company_scale: '',
                main_business: '',
                main_dis_platform: [],
            },
            countryList: [],
            provinceList: [],
            cityList: [],
            ecExps: [
                { value: 1, label: '无' },
                { value: 2, label: '一年以下' },
                { value: 3, label: '三年以内' },
                { value: 4, label: '三年以上' },
            ],
            mainAreas: [
                { id: 1, country_name: '美国' },
                { id: 2, country_name: '英国' },
                { id: 3, country_name: '德国' },
                { id: 4, country_name: '法国' },
                { id: 9999, country_name: '其他国家' },
            ],
            operateStrs: [
                { id: 1, name: '铺货' },
                { id: 2, name: '精细化运营' },
            ],
            disPlatformList: [],
            mainBusiness: [
                { id: 1, name: '贸易型卖家' },
                { id: 2, name: '工厂型卖家' },
                { id: 3, name: '产品分销服务商' },
                { id: 4, name: '代运营服务商' },
                { id: 5, name: '物流服务商' },
                { id: 6, name: 'IT服务商' },
                { id: 7, name: '其他' },
            ],
            company_scales: [
                { id: 1, name: '20人以内' },
                { id: 2, name: '20-100人' },
                { id: 3, name: '100-500人' },
                { id: 4, name: '500人以上' },
            ],
        };
    },
    mounted() {
        this.getCountryCodeList();
        this.getDisPlatformList();
        if (seller_id > 0) {
            this.get_seller_info();
        }
    },
    created() { },
    methods: {
        getCountryCodeList() {
            let that = this;
            const url = "/admin/seller/getCountryCodeList.html";
            postRequest(url, {}).then((res) => {
                if (res.data.code === 200) {
                    that.countryList = res.data.list;
                } else {
                    that.countryList = [];
                }
            }).catch((error) => {
                // 处理请求失败的情况
                that.$notify.error({
                    title: that.t('common.error', '错误'),
                    position: "top-left",
                    message: "获取代码失败",
                });
            });
        },
        getDisPlatformList() {
            let that = this;
            const url = "/admin/seller/getDisPlatformList.html";
            postRequest(url, {}).then((res) => {
                if (res.data.code === 200) {
                    that.disPlatformList = res.data.list;
                } else {
                    that.disPlatformList = [];
                }
            }).catch((error) => {
                // 处理请求失败的情况
                that.$notify.error({
                    title: that.t('common.error', '错误'),
                    position: "top-left",
                    message: "获取代码失败",
                });
            });
        },
        /////进入供应商编辑页面/////
        goto_edit_seller(id) {
            window.location.href = '/admin/seller/add/id/' + id + ".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(() => {
                //取消
            })
 
        },
 
        /////获取供应商信息/////
        get_seller_info() {
            let that = this;
            let url = "/admin/seller/get_seller_info.html"
            postRequest(url, {
                id: that.seller_id
            }).then(res => {
                if (res.data.code == 200) {
                    that.seller_info = res.data.data;
                    that.baseInfo = res.data.data.base_info;
                } else {
                    that.$message({
                        message: res.data.message,
                        type: 'error',
                    })
                }
            });
        },
        /////保存供应商信息//////////
        save_seller_info() {
            let that = this;
            // return false;
            let url = "/admin/seller/save_seller_info.html"
            postRequest(url, that.seller_info).then(res => {
                if (res.data.code == 200) {
                    that.$message({
                        message: res.data.message,
                        type: 'success',
                        duration: 1000,
                        onClose: function () {
                            if (that.seller_info.id > 0) {
                                that.get_seller_info();
                            } else {
                                window.location.href = "/admin/seller/index.html";
                            }
                        }
                    })
                } else {
                    that.$message({
                        message: res.data.message,
                        type: 'error',
                    })
                }
            });
 
        },
        formatDate(time) {
            return moment(time * 1000).format("YYYY-MM-DD");
        },
    }
};
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");