|
@@ -309,7 +309,6 @@ export default {
|
|
|
created() {},
|
|
|
mounted() {
|
|
|
this.userInfo = JSON.parse(oSessionStorage.getItem("userInfo"));
|
|
|
- console.log(this.userInfo);
|
|
|
|
|
|
// if (this.userInfo.type == "1") {
|
|
|
// this.channel = "";
|
|
@@ -420,7 +419,6 @@ export default {
|
|
|
}
|
|
|
},
|
|
|
resetUser(index, val) {
|
|
|
- console.log(val);
|
|
|
this.$http.get(`/user/reset/${val.id}`, {}, (res) => {
|
|
|
// this.$toast.success({message:'成功'});
|
|
|
if (res && res.code == 200) {
|
|
@@ -503,11 +501,9 @@ export default {
|
|
|
};
|
|
|
|
|
|
this.$http.post(`/order/find`, data, (res) => {
|
|
|
- console.log(res);
|
|
|
// console.log(res,'用户测试记录')
|
|
|
if (res && res.code == 200) {
|
|
|
this.tableData = res.data.content;
|
|
|
- console.log(this.tableData);
|
|
|
this.total = res.data.totalElements;
|
|
|
} else {
|
|
|
// this.$toast.fail(res.msg);
|