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
const App = {
    mixins: [sharedMixin],/////共用的方法/////
    data() {
        return {
            create_stock_title: "新增仓库",
            Visible_thirdPartyStock: false,
            create_stock_addree_title: "新增仓库地址",
            Visible_thirdPartyStock_address: false,
            currindex: '',
            direction: 'ltr',
            clearable: false,
            useritem: {},
            stock_list: [],
            other: {},
            clearable: false,
            searchdata: {
                page: 1,
                page_size: 20,
                kw: '',
            },
            create_stock_form: {
                stock_type: 1,//////自建仓
                docking_system: 0,
            },
            create_stock_address_form: {},
            docking_system_options: [
                {
                    value: 0,
                    label: '无',
                },
            ],
            stock_address_list: [],
            third_party_stock_id: 0,
            suit_range_list: [{
                id: 1,
                name: '订单发货'
            }, {
                id: 2,
                name: '售后退件'
            }, {
                id: 3,
                name: '入库收货'
            }],
        };
    },
    mounted() {
        this.get_stock_list();
    },
    created() { },
    methods: {
        create_stock(index) {
            if (index >= 0) {
                this.create_stock_title = "审核仓库信息";
                this.create_stock_form = this.stock_list[index];
                this.third_party_stock_id = this.create_stock_form.id
                this.get_stock_address_list();
            } else {
                return false;
            }
            this.Visible_thirdPartyStock = true;
 
        },
 
        handleSizeChange(val) {
            //////设置每页多少条
            this.searchdata.page_size = val
            this.get_stock_list();
        },
        handleCurrentChange(val) {
            ///改变当前页///////
            this.searchdata.p = val
            this.get_stock_list();
        },
        searchstock_list() {
            this.get_stock_list()
        },
        get_stock_list() {
            let that = this;
            let url = "/admin/thirdPartyStockTemp/stockList.html"
            postRequest(url, that.searchdata).then(res => {
                if (res.data.code == 200) {
                    that.stock_list = res.data.list;
                    that.other = res.data.other;
                }
            });
        },
        reviewStock(status) {
            let that = this;
            
 
            let { id } = that.create_stock_form;
            let url = "/admin/thirdPartyStockTemp/reviewStock.html"
            postRequest(url, { id: id, status: status }).then(res => {
                
                if (res.data.code == 200) {
                    that.$notify({
                        title: '成功',
                        message: res.data.message,
                        position: 'top-left',
                        type: 'success'
                    });
                    that.create_stock_form.status = status;
                    that.create_stock_form.need_review = 1;
                    if (status == 1) {
                        //一键通过时,所有地址通过审核
                        that.stock_address_list.find(item => {
                            if (item.status != 1) {
                                item.status = status;
                            }
                        })
                    }
                    that.Visible_thirdPartyStock = false;
                }
                else {
                    that.$notify.error({
                        title: '错误',
                        position: 'top-left',
                        message: res.data.message
                    });
                }
            });
        },
        ////////审核地址
        reviewAddress(index, status) {
            let that = this;
 
            let { id } = that.stock_address_list[index];
            
            let url = "/admin/thirdPartyStockTemp/reviewAddress.html"
            postRequest(url, { id: id, status: status }).then(res => {
                if (res.data.code == 200) {
                    that.$notify({
                        title: '成功',
                        message: res.data.message,
                        position: 'top-left',
                        type: 'success'
                    });
                    // that.stock_address_list[index].status = status;
                    // if (status == 2) {
                    //     //一个地址不通过审核,仓库不通过审核
                    //     that.create_stock_form.status = status;
                    // }
                    that.stock_address_list[index].status = res.data.status;
 
                    if (res.data.stock_status != 0) {
                        that.create_stock_form.status = res.data.stock_status;
                    }
                    if (res.data.need_review == 1) {
                        that.create_stock_form.need_review = res.data.need_review;
                        that.Visible_thirdPartyStock = false;
                    }
 
                }
                else {
                    that.$notify.error({
                        title: '错误',
                        position: 'top-left',
                        message: res.data.message
                    });
 
                }
            });
        },
        get_stock_address_list() {
            let that = this;
            that.stock_address_list = [];
            let url = "/admin/thirdPartyStockTemp/stockAddressList.html"
            postRequest(url, { third_party_stock_id: that.third_party_stock_id }).then(res => {
                
                if (res.data.code == 200) {
                    that.stock_address_list = res.data.list;
                }
                else {
                    that.stock_address_list = [];
                    that.create_stock_address(-1);
                }
            });
        },
 
    }
};
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");