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
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
const App = {
    mixins: [sharedMixin],/////共用的方法/////
    data() {
        return {
            loading: false,
            dialog: {
                addDialogStatus: false,
            },
            Add_title: "新增退换货类型",
            currindex: '',
            direction: 'ltr',
            clearable: false,
            useritem: {},
            list: [],
            other: {},
            searchdata: {
                page: 1,
                page_size: 50,
                kw: '',
            },
            Add_form: {
                name: '',
                is_proportion: 2,
                proportion: 0,
                note: '',
            },
            typeList:[
                {
                    id: 1,
                    name: '仅退款',
                },
                {
                    id: 2,
                    name: '退货退款',
                },
                {
                    id: 3,
                    name: '换货(重发)',
                },
                {
                    id: 4,
                    name: '补发',
                }
            ],
            typeListObj: {},
        };
    },
    mounted() {
        this.initType();
        this.index();
    },
    created() { },
    methods: {
        initType(){
            this.typeList.forEach(v => {
                this.typeListObj[v.id.toString()] = v.name;
            });
        },
        getType(type){
            if (!Object.prototype.hasOwnProperty.call(this.typeList, type.toString())) {
                return '';
            }
            return this.typeListObj[type.toString()]
        },
        getIsProportion(isProportion){
            let returnTxt = '';
            switch (parseInt(isProportion)) {
                case 1:
                    returnTxt = '是';
                    break;
                case 2:
                    returnTxt = '否';
                    break;
            }
            // if (!Object.prototype.hasOwnProperty.call(this.typeList, type.toString())) {
            //     return '';
            // }
            // return this.typeListObj[type.toString()]
            return returnTxt;
        },
        getProportion(row) {
            let returnTxt = '';
            if (parseInt(row.is_proportion) === 1) {
                returnTxt = row.proportion+'%';
            }
            return returnTxt;
        },
        del(index) {
            
            var that = this;
            let { id } = that.list[index];
            
 
            that.$confirm(
                '确定删除吗?',
                '警告',
                {
                    confirmButtonText: '删除',
                    cancelButtonText: '取消',
                    type: 'warning',
                    center: true,
                }
            ).then(() => {
                let url = "/admin/returnExchange/delete.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.list.splice(index, 1)
                        that.other.count--;
                    }
                    else {
                        that.$notify.error({
                            title: '错误',
                            position: 'top-left',
                            message: res.data.message
                        });
                    }
                });
                /////////////                
            }).catch(() => {
                //取消
            })
 
        },
        Add(index) {
            if (index >= 0) {
                this.Add_title = "编辑退换货类型";
                this.Add_form = this.list[index];
            } else {
                this.Add_title = "新增退换货类型";
                this.Add_form = {}
            }
            this.loading = false;
            this.dialog.addDialogStatus = true;
        },
        submit() {
            let that = this;
            that.loading = true
            let url = "/admin/returnExchange/save.html"
            postRequest(url, that.Add_form).then(res => {
                that.loading = false;
                if (res.data.code == 200) {
                    that.$notify({
                        title: '成功',
                        message: res.data.message,
                        position: 'top-left',
                        type: 'success'
                    });
                    this.dialog.addDialogStatus = false;
                    that.index();
                }
                else {
                    that.$notify.error({
                        title: '错误',
                        position: 'top-left',
                        message: res.data.message
                    });
                }
            }).then((res) => {
                that.loading = false;
            });
        },
        handleSizeChange(val) {
            //////设置每页多少条
            this.searchdata.page_size = val
            this.index();
        },
        handleCurrentChange(val) {
            ///改变当前页///////
            this.searchdata.p = val
            this.index();
        },
        index() {
            let that = this;
            let url = "/admin/returnExchange/index.html"
            postRequest(url, that.searchdata).then(res => {
                
                if (res.data.code == 200) {
                    that.list = res.data.list;
                    that.other = res.data.other;
                }
                else {
                    that.list = [];
                }
            });
        },
    }
};
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");