chengkun
2025-09-05 4822304b63e1bd6327860af7f3db0133cecf167f
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
const App = {
    mixins: [sharedMixin], /////共用的方法/////
    data() {
        return {
            dialogBrand: false,
            searchData: {
                page: 1,
                page_size: 20,
                kw: '',
            },
            loading: false,
            goodsBrandList: [],
            other: {},
            brandInfo: {},
            dialogVisible_Picture: false,
            brand_id: 0,
            goodsBrandFilingsList: [],
            brandAgreementList: [],
            brandCertList: [],
            loading_brand_agreement: false,
            loading_brand_cert: false,
            previewImageUrl: '',
        };
    },
    mounted() {
        this.getGoodsBrandList();
    },
    created() { },
    methods: {
        reviewGoodsBrand(status) {
            const that = this;
            let tips = ''
            if (status == 1) {
                tips = '确定通过审核吗?'
            } else {
                tips = '确定不通过审核吗?'
            }
 
            that.$confirm(
                tips,
                '警告',
                {
                    confirmButtonText: '确定',
                    cancelButtonText: '取消',
                    type: 'warning',
                    center: true,
                }
            ).then(() => {
                let url = "/admin/goodsBrand/reviewGoodsBrand.html"
                postRequest(url, { brand_id: that.brand_id, status: status }).then(res => {
                    if (res.data.code == 200) {
                        that.$notify({
                            title: '成功',
                            message: res.data.message,
                            position: 'top-left',
                            type: 'success',
                            duration: 1000,
                        });
                        that.dialogBrand = false
                        that.getGoodsBrandList();
                    }
                    else {
                        that.$notify.error({
                            title: '错误',
                            position: 'top-left',
                            message: res.data.message
                        });
 
                    }
                });
                /////////////                
            }).catch(() => {
                //取消,不做处理
            })
 
        },
        // 获取备案范围列表
        getGoodsBrandFilingsList() {
            const that = this;
            const url = "/admin/goodsBrand/getGoodsBrandFilingsList.html";
            postRequest(url, { brand_id: that.brand_id }).then((res) => {
                if (res.data.code === 200) {
                    that.goodsBrandFilingsList = res.data.list;
                }
            }).catch((error) => {
                // 处理请求失败的情况
 
            })
        },
        // 获取授权协议列表
        getBrandAgreementList() {
            const that = this;
            that.loading_brand_agreement = true;
            const url = "/admin/goodsBrand/getBrandAgreementList.html";
            postRequest(url, { brand_id: that.brand_id }).then((res) => {
                that.loading_brand_agreement = false;
                if (res.data.code === 200) {
                    that.brandAgreementList = res.data.list;////商品附件列表          
                }
            }).catch((error) => {
                // 处理请求失败的情况
                that.loading_brand_agreement = false;
            });
        },
        // 获取品牌证书列表
        getBrandCertList() {
            const that = this;
            that.loading_brand_cert = true;
            const url = "/admin/goodsBrand/getBrandCertList.html";
            postRequest(url, { brand_id: that.brand_id }).then((res) => {
                that.loading_brand_cert = false;
                if (res.data.code === 200) {
                    that.brandCertList = res.data.list;////商品附件列表          
                }
            }).catch((error) => {
                // 处理请求失败的情况
                that.loading_brand_cert = false;
            });
        },
        previewPictureCard(url) {
            this.previewImageUrl = url
            this.dialogVisible_Picture = true
        },
        showBrand(row) {
            let that = this;
            that.dialogBrand = true
            that.brandInfo = row;
            that.brand_id = row.id
            that.getGoodsBrandFilingsList();
            that.getBrandAgreementList();
            that.getBrandCertList();
        },
        ///改变翻页中的每页设置多少条数据///////
        handleSizeChange(page_size) {
            this.searchData.page_size = page_size;
            this.getGoodsBrandList();
        },
 
        ///改变翻页中的当前页///////
        handleCurrentChange(page) {
            this.searchData.page = page;
            this.getGoodsBrandList();
        },
        /////获取品牌列表/////
        getGoodsBrandList() {
            let that = this;
            let url = "/admin/goodsBrand/getGoodsBrandList.html"
            
            postRequest(url, that.searchData).then(res => {
                
                if (res.data.code == 200) {
                    that.goodsBrandList = res.data.list;
                    that.other = res.data.other;
                }
            });
        },
    }
};
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");