|
@@ -58,7 +58,7 @@ export default {
|
|
|
},
|
|
|
// 删除
|
|
|
async deleteBtn(id) {
|
|
|
- console.log(id);
|
|
|
+ s;
|
|
|
const res = await this.transactiondetele(id);
|
|
|
this.$checkRes(res, '删除成功', '删除失败');
|
|
|
this.search();
|
|
@@ -70,9 +70,8 @@ export default {
|
|
|
async search({ skip = 0, limit = 10, ...info } = {}) {
|
|
|
if (this.user.role == '4') {
|
|
|
skip = this.skip;
|
|
|
- console.log(this.user.uid);
|
|
|
- let create_userid = this.user.uid;
|
|
|
- const res = await this.transactionslist({ skip, create_userid, limit, ...info });
|
|
|
+ let dockid = '5efc62dc0830555c780788a7';
|
|
|
+ const res = await this.transactionslist({ skip, dockid, limit, ...info });
|
|
|
this.$set(this, `recruitInfo`, res.data);
|
|
|
this.$set(this, `total`, res.total);
|
|
|
} else {
|
|
@@ -87,9 +86,7 @@ export default {
|
|
|
this.$set(this, `skip`, skip);
|
|
|
this.search();
|
|
|
},
|
|
|
-
|
|
|
//审核页面
|
|
|
-
|
|
|
async searchinfo(id) {
|
|
|
const res = await this.productpactFetch(id);
|
|
|
if (this.$checkRes(res)) {
|