You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
807 lines
32 KiB
807 lines
32 KiB
"use strict";
|
|
(self["webpackChunk"] = self["webpackChunk"] || []).push([[48289],{
|
|
|
|
/***/ 83379:
|
|
/*!***********************************************************************!*\
|
|
!*** ./src/pages/Materials/MyReceive/ViewModal/index.tsx + 1 modules ***!
|
|
\***********************************************************************/
|
|
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
|
|
|
|
// EXPORTS
|
|
__webpack_require__.d(__webpack_exports__, {
|
|
Z: function() { return /* binding */ MyReceive_ViewModal; }
|
|
});
|
|
|
|
// EXTERNAL MODULE: ./node_modules/_@babel_runtime@7.23.6@@babel/runtime/helpers/slicedToArray.js
|
|
var slicedToArray = __webpack_require__(79800);
|
|
var slicedToArray_default = /*#__PURE__*/__webpack_require__.n(slicedToArray);
|
|
// EXTERNAL MODULE: ./node_modules/_react@17.0.2@react/index.js
|
|
var _react_17_0_2_react = __webpack_require__(59301);
|
|
;// CONCATENATED MODULE: ./src/pages/Materials/MyReceive/ViewModal/index.less?modules
|
|
// extracted by mini-css-extract-plugin
|
|
/* harmony default export */ var ViewModalmodules = ({"header":"header___K7sRa","header_params":"header_params___Gs4AP","header_title":"header_title___Y5kF9","file_list":"file_list___HS9MA","file_list_title":"file_list_title___KPqOu","file_list_size":"file_list_size___CdVn1","search_params":"search_params___MCFyg","search":"search___bSNN5","searchIcon":"searchIcon___zTK6f","header_button":"header_button___S7osw","header_content":"header_content___rD5qw","content_div":"content_div___vOe86"});
|
|
// EXTERNAL MODULE: ./node_modules/_antd@5.9.0@antd/es/modal/index.js + 16 modules
|
|
var modal = __webpack_require__(43418);
|
|
// EXTERNAL MODULE: ./node_modules/_antd@5.9.0@antd/es/button/index.js
|
|
var es_button = __webpack_require__(3113);
|
|
// EXTERNAL MODULE: ./node_modules/_antd@5.9.0@antd/es/tooltip/index.js + 3 modules
|
|
var tooltip = __webpack_require__(6848);
|
|
// EXTERNAL MODULE: ./node_modules/_antd@5.9.0@antd/es/table/index.js + 85 modules
|
|
var table = __webpack_require__(51945);
|
|
// EXTERNAL MODULE: ./node_modules/_react@17.0.2@react/jsx-runtime.js
|
|
var jsx_runtime = __webpack_require__(37712);
|
|
;// CONCATENATED MODULE: ./src/pages/Materials/MyReceive/ViewModal/index.tsx
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
var unitType = {
|
|
1: '个',
|
|
2: '套',
|
|
3: '袋',
|
|
4: '条',
|
|
5: '根',
|
|
6: '升',
|
|
7: '毫升'
|
|
};
|
|
var ViewModal = function ViewModal(_ref) {
|
|
var _viewInfo$classroom_d, _viewInfo$classroom_d2, _viewInfo$classroom_d3, _viewInfo$classroom_d4;
|
|
var openViewModal = _ref.openViewModal,
|
|
viewInfo = _ref.viewInfo,
|
|
_onCancel = _ref.onCancel,
|
|
buttonMethod = _ref.buttonMethod,
|
|
onReject = _ref.onReject,
|
|
showButton = _ref.showButton;
|
|
var _useState = (0,_react_17_0_2_react.useState)({
|
|
content: "",
|
|
type: ""
|
|
}),
|
|
_useState2 = slicedToArray_default()(_useState, 2),
|
|
data = _useState2[0],
|
|
setData = _useState2[1];
|
|
var columns = [{
|
|
title: '物资编码',
|
|
dataIndex: 'number',
|
|
ellipsis: true
|
|
}, {
|
|
title: '物资名称',
|
|
dataIndex: 'title',
|
|
ellipsis: true
|
|
}, {
|
|
title: '规格型号',
|
|
dataIndex: 'model',
|
|
ellipsis: true
|
|
}, {
|
|
title: '存放实验室房间',
|
|
dataIndex: 'classroom_room_title',
|
|
ellipsis: true
|
|
}, {
|
|
title: '单位',
|
|
dataIndex: 'unit',
|
|
ellipsis: true,
|
|
render: function render(text) {
|
|
return /*#__PURE__*/(0,jsx_runtime.jsx)("span", {
|
|
children: unitType[text]
|
|
});
|
|
}
|
|
}, {
|
|
title: '库存',
|
|
dataIndex: 'apply_total',
|
|
ellipsis: true
|
|
}, {
|
|
title: '需申请数量',
|
|
dataIndex: 'apply_num',
|
|
ellipsis: true
|
|
}];
|
|
return /*#__PURE__*/(0,jsx_runtime.jsx)(modal/* default */.Z, {
|
|
maskClosable: false,
|
|
centered: true,
|
|
keyboard: false,
|
|
destroyOnClose: true,
|
|
className: ViewModalmodules.my_modal,
|
|
open: openViewModal,
|
|
title: "\u7269\u8D44\u660E\u7EC6",
|
|
width: "1000px",
|
|
footer: showButton ? /*#__PURE__*/(0,jsx_runtime.jsxs)(jsx_runtime.Fragment, {
|
|
children: [/*#__PURE__*/(0,jsx_runtime.jsx)(es_button/* default */.ZP, {
|
|
onClick: function onClick() {
|
|
buttonMethod('驳回', viewInfo);
|
|
},
|
|
children: "\u9A73\u56DE"
|
|
}, "cancel"), /*#__PURE__*/(0,jsx_runtime.jsx)(es_button/* default */.ZP, {
|
|
type: "primary",
|
|
onClick: function onClick() {
|
|
buttonMethod('同意', viewInfo);
|
|
},
|
|
children: "\u540C\u610F"
|
|
}, "ok")]
|
|
}) : null,
|
|
onCancel: function onCancel(e) {
|
|
_onCancel();
|
|
},
|
|
children: /*#__PURE__*/(0,jsx_runtime.jsx)("div", {
|
|
className: ViewModalmodules.header,
|
|
children: /*#__PURE__*/(0,jsx_runtime.jsxs)("div", {
|
|
className: ViewModalmodules.header_params,
|
|
children: [/*#__PURE__*/(0,jsx_runtime.jsxs)("div", {
|
|
className: ViewModalmodules.header_content,
|
|
children: [/*#__PURE__*/(0,jsx_runtime.jsxs)("div", {
|
|
style: {
|
|
maxWidth: "400px"
|
|
},
|
|
className: ViewModalmodules.content_div,
|
|
children: [" ", /*#__PURE__*/(0,jsx_runtime.jsx)("span", {
|
|
style: {
|
|
color: '#666',
|
|
marginRight: '10px'
|
|
},
|
|
children: "\u6240\u5728\u5B9E\u9A8C\u5BA4"
|
|
}), viewInfo === null || viewInfo === void 0 ? void 0 : viewInfo.classroom_title]
|
|
}), /*#__PURE__*/(0,jsx_runtime.jsx)(tooltip/* default */.Z, {
|
|
title: (viewInfo === null || viewInfo === void 0 || (_viewInfo$classroom_d = viewInfo.classroom_directors) === null || _viewInfo$classroom_d === void 0 ? void 0 : _viewInfo$classroom_d.length) > 0 ? viewInfo === null || viewInfo === void 0 || (_viewInfo$classroom_d2 = viewInfo.classroom_directors) === null || _viewInfo$classroom_d2 === void 0 ? void 0 : _viewInfo$classroom_d2.map(function (item, key) {
|
|
return /*#__PURE__*/(0,jsx_runtime.jsxs)("span", {
|
|
children: [item === null || item === void 0 ? void 0 : item.name, "(", item === null || item === void 0 ? void 0 : item.phone, ")\u3001"]
|
|
});
|
|
}) : '--',
|
|
children: /*#__PURE__*/(0,jsx_runtime.jsxs)("div", {
|
|
style: {
|
|
maxWidth: "400px",
|
|
marginLeft: '40px'
|
|
},
|
|
className: ViewModalmodules.content_div,
|
|
children: [/*#__PURE__*/(0,jsx_runtime.jsx)("span", {
|
|
style: {
|
|
color: '#666',
|
|
marginRight: '10px'
|
|
},
|
|
children: "\u5B9E\u9A8C\u5BA4\u8D1F\u8D23\u4EBA"
|
|
}), (viewInfo === null || viewInfo === void 0 || (_viewInfo$classroom_d3 = viewInfo.classroom_directors) === null || _viewInfo$classroom_d3 === void 0 ? void 0 : _viewInfo$classroom_d3.length) > 0 ? viewInfo === null || viewInfo === void 0 || (_viewInfo$classroom_d4 = viewInfo.classroom_directors) === null || _viewInfo$classroom_d4 === void 0 ? void 0 : _viewInfo$classroom_d4.map(function (item, key) {
|
|
var _viewInfo$classroom_d5;
|
|
return /*#__PURE__*/(0,jsx_runtime.jsxs)("span", {
|
|
children: [item === null || item === void 0 ? void 0 : item.name, "(", item === null || item === void 0 ? void 0 : item.phone, ")", key == (viewInfo === null || viewInfo === void 0 || (_viewInfo$classroom_d5 = viewInfo.classroom_directors) === null || _viewInfo$classroom_d5 === void 0 ? void 0 : _viewInfo$classroom_d5.length) - 1 ? '' : '、']
|
|
}, key);
|
|
}) : '--']
|
|
})
|
|
})]
|
|
}), /*#__PURE__*/(0,jsx_runtime.jsx)("div", {
|
|
style: {
|
|
width: 949,
|
|
marginBottom: '20px'
|
|
},
|
|
children: /*#__PURE__*/(0,jsx_runtime.jsx)(table/* default */.Z, {
|
|
pagination: false,
|
|
dataSource: (viewInfo === null || viewInfo === void 0 ? void 0 : viewInfo.substances) || [],
|
|
columns: columns,
|
|
scroll: {
|
|
y: 400
|
|
},
|
|
rowKey: "id"
|
|
})
|
|
})]
|
|
})
|
|
})
|
|
});
|
|
};
|
|
/* harmony default export */ var MyReceive_ViewModal = (ViewModal);
|
|
|
|
/***/ }),
|
|
|
|
/***/ 85171:
|
|
/*!*************************************************************!*\
|
|
!*** ./src/pages/Materials/MyReceive/index.tsx + 1 modules ***!
|
|
\*************************************************************/
|
|
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
|
|
// ESM COMPAT FLAG
|
|
__webpack_require__.r(__webpack_exports__);
|
|
|
|
// EXPORTS
|
|
__webpack_require__.d(__webpack_exports__, {
|
|
"default": function() { return /* binding */ MyReceive; }
|
|
});
|
|
|
|
// EXTERNAL MODULE: ./node_modules/_@babel_runtime@7.23.6@@babel/runtime/helpers/objectSpread2.js
|
|
var objectSpread2 = __webpack_require__(82242);
|
|
var objectSpread2_default = /*#__PURE__*/__webpack_require__.n(objectSpread2);
|
|
// EXTERNAL MODULE: ./node_modules/_@babel_runtime@7.23.6@@babel/runtime/helpers/toConsumableArray.js
|
|
var toConsumableArray = __webpack_require__(37205);
|
|
var toConsumableArray_default = /*#__PURE__*/__webpack_require__.n(toConsumableArray);
|
|
// EXTERNAL MODULE: ./node_modules/_@babel_runtime@7.23.6@@babel/runtime/helpers/regeneratorRuntime.js
|
|
var regeneratorRuntime = __webpack_require__(7557);
|
|
var regeneratorRuntime_default = /*#__PURE__*/__webpack_require__.n(regeneratorRuntime);
|
|
// EXTERNAL MODULE: ./node_modules/_@babel_runtime@7.23.6@@babel/runtime/helpers/asyncToGenerator.js
|
|
var asyncToGenerator = __webpack_require__(41498);
|
|
var asyncToGenerator_default = /*#__PURE__*/__webpack_require__.n(asyncToGenerator);
|
|
// EXTERNAL MODULE: ./node_modules/_@babel_runtime@7.23.6@@babel/runtime/helpers/slicedToArray.js
|
|
var slicedToArray = __webpack_require__(79800);
|
|
var slicedToArray_default = /*#__PURE__*/__webpack_require__.n(slicedToArray);
|
|
// EXTERNAL MODULE: ./node_modules/_react@17.0.2@react/index.js
|
|
var _react_17_0_2_react = __webpack_require__(59301);
|
|
// EXTERNAL MODULE: ./src/.umi-production/exports.ts
|
|
var _umi_production_exports = __webpack_require__(80608);
|
|
;// CONCATENATED MODULE: ./src/pages/Materials/MyReceive/index.less?modules
|
|
// extracted by mini-css-extract-plugin
|
|
/* harmony default export */ var MyReceivemodules = ({"header_div":"header_div___g5aU4","header_title":"header_title___bmMQ4","search":"search___vPJxM","searchIcon":"searchIcon___HIsg6","search_params":"search_params___F7Qdj","clear_Data":"clear_Data___wZkTY","content_list":"content_list___HLLIu","content":"content___AzXhj","content_img":"content_img___aIwBi","content_id":"content_id___FxUBi","content_name":"content_name___Amhwa","content_params":"content_params___koB_B","redRow":"redRow___o7s8E"});
|
|
// EXTERNAL MODULE: ./node_modules/_antd@5.9.0@antd/es/tooltip/index.js + 3 modules
|
|
var tooltip = __webpack_require__(6848);
|
|
// EXTERNAL MODULE: ./node_modules/_antd@5.9.0@antd/es/modal/index.js + 16 modules
|
|
var modal = __webpack_require__(43418);
|
|
// EXTERNAL MODULE: ./node_modules/_antd@5.9.0@antd/es/message/index.js + 4 modules
|
|
var message = __webpack_require__(8591);
|
|
// EXTERNAL MODULE: ./node_modules/_antd@5.9.0@antd/es/form/index.js + 19 modules
|
|
var es_form = __webpack_require__(78241);
|
|
// EXTERNAL MODULE: ./node_modules/_antd@5.9.0@antd/es/select/index.js
|
|
var es_select = __webpack_require__(57809);
|
|
// EXTERNAL MODULE: ./node_modules/_antd@5.9.0@antd/es/table/index.js + 85 modules
|
|
var table = __webpack_require__(51945);
|
|
// EXTERNAL MODULE: ./node_modules/_antd@5.9.0@antd/es/pagination/index.js + 10 modules
|
|
var pagination = __webpack_require__(86859);
|
|
// EXTERNAL MODULE: ./src/service/laboratory.ts
|
|
var service_laboratory = __webpack_require__(70974);
|
|
// EXTERNAL MODULE: ./node_modules/_dayjs@1.11.13@dayjs/dayjs.min.js
|
|
var dayjs_min = __webpack_require__(61186);
|
|
var dayjs_min_default = /*#__PURE__*/__webpack_require__.n(dayjs_min);
|
|
// EXTERNAL MODULE: ./src/components/NoData/index.tsx
|
|
var NoData = __webpack_require__(6638);
|
|
// EXTERNAL MODULE: ./src/service/materials.ts
|
|
var materials = __webpack_require__(32013);
|
|
// EXTERNAL MODULE: ./src/pages/Materials/MyReceive/ViewModal/index.tsx + 1 modules
|
|
var ViewModal = __webpack_require__(83379);
|
|
// EXTERNAL MODULE: ./node_modules/_react@17.0.2@react/jsx-runtime.js
|
|
var jsx_runtime = __webpack_require__(37712);
|
|
;// CONCATENATED MODULE: ./src/pages/Materials/MyReceive/index.tsx
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
var statusType = {
|
|
pending: '待审核',
|
|
approved: '待归还',
|
|
rejected: '已驳回',
|
|
canceled: '已取消',
|
|
returned: '已归还'
|
|
};
|
|
var Navigation = function Navigation(_ref) {
|
|
var loading = _ref.loading;
|
|
var _useState = (0,_react_17_0_2_react.useState)(),
|
|
_useState2 = slicedToArray_default()(_useState, 2),
|
|
keyword = _useState2[0],
|
|
setkeyword = _useState2[1];
|
|
//状态
|
|
var _useState3 = (0,_react_17_0_2_react.useState)(''),
|
|
_useState4 = slicedToArray_default()(_useState3, 2),
|
|
status = _useState4[0],
|
|
setStatus = _useState4[1];
|
|
var _useState5 = (0,_react_17_0_2_react.useState)(''),
|
|
_useState6 = slicedToArray_default()(_useState5, 2),
|
|
overdue = _useState6[0],
|
|
setOverdue = _useState6[1];
|
|
//实验室中心
|
|
var _useState7 = (0,_react_17_0_2_react.useState)([]),
|
|
_useState8 = slicedToArray_default()(_useState7, 2),
|
|
laboratoryRooms = _useState8[0],
|
|
setLaboratoryRooms = _useState8[1];
|
|
var _useState9 = (0,_react_17_0_2_react.useState)(''),
|
|
_useState10 = slicedToArray_default()(_useState9, 2),
|
|
laboratoryRoom = _useState10[0],
|
|
setLaboratoryRoom = _useState10[1];
|
|
//实验室
|
|
var _useState11 = (0,_react_17_0_2_react.useState)([]),
|
|
_useState12 = slicedToArray_default()(_useState11, 2),
|
|
laboratorys = _useState12[0],
|
|
setLaboratorys = _useState12[1];
|
|
var _useState13 = (0,_react_17_0_2_react.useState)([]),
|
|
_useState14 = slicedToArray_default()(_useState13, 2),
|
|
laboratorysUse = _useState14[0],
|
|
setLaboratorysUse = _useState14[1];
|
|
var _useState15 = (0,_react_17_0_2_react.useState)(''),
|
|
_useState16 = slicedToArray_default()(_useState15, 2),
|
|
laboratory = _useState16[0],
|
|
setLaboratory = _useState16[1];
|
|
var _useState17 = (0,_react_17_0_2_react.useState)(''),
|
|
_useState18 = slicedToArray_default()(_useState17, 2),
|
|
laboratorySq = _useState18[0],
|
|
setLaboratorySq = _useState18[1];
|
|
var _useState19 = (0,_react_17_0_2_react.useState)(false),
|
|
_useState20 = slicedToArray_default()(_useState19, 2),
|
|
openViewModal = _useState20[0],
|
|
setOpenViewModal = _useState20[1];
|
|
var _useState21 = (0,_react_17_0_2_react.useState)({}),
|
|
_useState22 = slicedToArray_default()(_useState21, 2),
|
|
viewData = _useState22[0],
|
|
setViewData = _useState22[1];
|
|
//分页
|
|
var _useState23 = (0,_react_17_0_2_react.useState)(0),
|
|
_useState24 = slicedToArray_default()(_useState23, 2),
|
|
total = _useState24[0],
|
|
setTotal = _useState24[1];
|
|
var _useState25 = (0,_react_17_0_2_react.useState)(1),
|
|
_useState26 = slicedToArray_default()(_useState25, 2),
|
|
page = _useState26[0],
|
|
setPage = _useState26[1];
|
|
var _useState27 = (0,_react_17_0_2_react.useState)(10),
|
|
_useState28 = slicedToArray_default()(_useState27, 2),
|
|
limit = _useState28[0],
|
|
setLimit = _useState28[1];
|
|
var _useState29 = (0,_react_17_0_2_react.useState)([]),
|
|
_useState30 = slicedToArray_default()(_useState29, 2),
|
|
tableData = _useState30[0],
|
|
setTableData = _useState30[1];
|
|
var columns = [{
|
|
title: '申请原因',
|
|
dataIndex: 'reason',
|
|
ellipsis: true,
|
|
render: function render(text) {
|
|
return /*#__PURE__*/(0,jsx_runtime.jsx)(tooltip/* default */.Z, {
|
|
placement: "bottomLeft",
|
|
title: text,
|
|
children: /*#__PURE__*/(0,jsx_runtime.jsx)("span", {
|
|
children: text || '--'
|
|
})
|
|
});
|
|
}
|
|
}, {
|
|
title: '申请实验室',
|
|
dataIndex: 'classroom_title',
|
|
ellipsis: true,
|
|
render: function render(text) {
|
|
return /*#__PURE__*/(0,jsx_runtime.jsx)(tooltip/* default */.Z, {
|
|
placement: "bottomLeft",
|
|
title: text,
|
|
children: /*#__PURE__*/(0,jsx_runtime.jsx)("span", {
|
|
children: text
|
|
})
|
|
});
|
|
}
|
|
}, {
|
|
title: '状态',
|
|
dataIndex: 'status',
|
|
ellipsis: true,
|
|
render: function render(text) {
|
|
return /*#__PURE__*/(0,jsx_runtime.jsx)(tooltip/* default */.Z, {
|
|
placement: "bottomLeft",
|
|
title: statusType[text],
|
|
children: /*#__PURE__*/(0,jsx_runtime.jsx)("span", {
|
|
children: statusType[text]
|
|
})
|
|
});
|
|
}
|
|
}, {
|
|
title: '使用时间',
|
|
dataIndex: 'apply_time',
|
|
ellipsis: true,
|
|
render: function render(text, record) {
|
|
return /*#__PURE__*/(0,jsx_runtime.jsx)(tooltip/* default */.Z, {
|
|
placement: "bottomLeft",
|
|
title: /*#__PURE__*/(0,jsx_runtime.jsxs)(jsx_runtime.Fragment, {
|
|
children: [/*#__PURE__*/(0,jsx_runtime.jsx)("span", {
|
|
children: record !== null && record !== void 0 && record.start_time ? dayjs_min_default()(record === null || record === void 0 ? void 0 : record.start_time).format('YYYY-MM-DD HH:mm') : '--'
|
|
}), /*#__PURE__*/(0,jsx_runtime.jsx)("br", {}), /*#__PURE__*/(0,jsx_runtime.jsx)("span", {
|
|
children: record !== null && record !== void 0 && record.end_time ? dayjs_min_default()(record === null || record === void 0 ? void 0 : record.end_time).format('YYYY-MM-DD HH:mm') : '--'
|
|
})]
|
|
}),
|
|
children: /*#__PURE__*/(0,jsx_runtime.jsxs)(jsx_runtime.Fragment, {
|
|
children: [/*#__PURE__*/(0,jsx_runtime.jsx)("div", {
|
|
className: record !== null && record !== void 0 && record.overdue ? MyReceivemodules.redRow : '',
|
|
children: record !== null && record !== void 0 && record.start_time ? dayjs_min_default()(record === null || record === void 0 ? void 0 : record.start_time).format('YYYY-MM-DD HH:mm') : '--'
|
|
}), /*#__PURE__*/(0,jsx_runtime.jsx)("div", {
|
|
className: record !== null && record !== void 0 && record.overdue ? MyReceivemodules.redRow : '',
|
|
children: record !== null && record !== void 0 && record.end_time ? dayjs_min_default()(record === null || record === void 0 ? void 0 : record.end_time).format('YYYY-MM-DD HH:mm') : '--'
|
|
})]
|
|
})
|
|
});
|
|
}
|
|
}, {
|
|
title: '使用实验室',
|
|
dataIndex: 'classroom_place_title',
|
|
ellipsis: true,
|
|
render: function render(text) {
|
|
return /*#__PURE__*/(0,jsx_runtime.jsx)(tooltip/* default */.Z, {
|
|
placement: "bottomLeft",
|
|
title: text,
|
|
children: /*#__PURE__*/(0,jsx_runtime.jsx)("span", {
|
|
children: text || '--'
|
|
})
|
|
});
|
|
}
|
|
}, {
|
|
title: '使用实验室房间',
|
|
dataIndex: 'place_title',
|
|
ellipsis: true,
|
|
render: function render(text) {
|
|
return /*#__PURE__*/(0,jsx_runtime.jsx)(tooltip/* default */.Z, {
|
|
placement: "bottomLeft",
|
|
title: text,
|
|
children: /*#__PURE__*/(0,jsx_runtime.jsx)("span", {
|
|
children: text || '--'
|
|
})
|
|
});
|
|
}
|
|
}, {
|
|
title: '申请时间',
|
|
dataIndex: 'apply_time',
|
|
ellipsis: true,
|
|
render: function render(text, record) {
|
|
return /*#__PURE__*/(0,jsx_runtime.jsx)(tooltip/* default */.Z, {
|
|
placement: "bottomLeft",
|
|
title: text ? dayjs_min_default()(text).format('YYYY-MM-DD HH:mm') : '--',
|
|
children: /*#__PURE__*/(0,jsx_runtime.jsx)("span", {
|
|
children: text ? dayjs_min_default()(text).format('YYYY-MM-DD HH:mm') : '--'
|
|
})
|
|
});
|
|
}
|
|
}, {
|
|
title: '操作',
|
|
ellipsis: true,
|
|
width: 200,
|
|
render: function render(text, record) {
|
|
return /*#__PURE__*/(0,jsx_runtime.jsxs)(jsx_runtime.Fragment, {
|
|
children: [/*#__PURE__*/(0,jsx_runtime.jsx)("span", {
|
|
style: {
|
|
color: "#165DFF",
|
|
cursor: "pointer"
|
|
},
|
|
onClick: function onClick() {
|
|
(0,materials/* receives_info */.Os)({
|
|
id: record.id
|
|
}).then(function (res) {
|
|
setViewData(res === null || res === void 0 ? void 0 : res.data);
|
|
setOpenViewModal(true);
|
|
});
|
|
},
|
|
children: "\u7533\u8BF7\u5185\u5BB9"
|
|
}), ((record === null || record === void 0 ? void 0 : record.status) == 'pending' || (record === null || record === void 0 ? void 0 : record.status) == 'rejected') && /*#__PURE__*/(0,jsx_runtime.jsx)("span", {
|
|
style: {
|
|
color: "#165DFF",
|
|
cursor: "pointer",
|
|
marginLeft: 10
|
|
},
|
|
onClick: function onClick() {
|
|
_umi_production_exports.history.push("/materials/itemAssets/AddReceive/".concat(record === null || record === void 0 ? void 0 : record.id, "?backUrl=/materials/myReceive"));
|
|
},
|
|
children: "\u4FEE\u6539"
|
|
}), (record === null || record === void 0 ? void 0 : record.status) == 'pending' && /*#__PURE__*/(0,jsx_runtime.jsx)("span", {
|
|
style: {
|
|
color: "#165DFF",
|
|
cursor: "pointer",
|
|
marginLeft: 10
|
|
},
|
|
onClick: function onClick() {
|
|
modal/* default */.Z.confirm({
|
|
centered: true,
|
|
okText: '确定',
|
|
cancelText: '取消',
|
|
title: "提示",
|
|
content: "\u8BF7\u786E\u8BA4\u662F\u5426\u53D6\u6D88\u8BE5\u9886\u7528\u7533\u8BF7",
|
|
onOk: function () {
|
|
var _onOk = asyncToGenerator_default()( /*#__PURE__*/regeneratorRuntime_default()().mark(function _callee() {
|
|
return regeneratorRuntime_default()().wrap(function _callee$(_context) {
|
|
while (1) switch (_context.prev = _context.next) {
|
|
case 0:
|
|
(0,materials/* receives_cancel */.JQ)({
|
|
id: record === null || record === void 0 ? void 0 : record.id
|
|
}).then(function (res) {
|
|
if (res.status === 0) {
|
|
message/* default */.ZP.success('取消成功');
|
|
getData(true);
|
|
}
|
|
});
|
|
case 1:
|
|
case "end":
|
|
return _context.stop();
|
|
}
|
|
}, _callee);
|
|
}));
|
|
function onOk() {
|
|
return _onOk.apply(this, arguments);
|
|
}
|
|
return onOk;
|
|
}()
|
|
});
|
|
},
|
|
children: "\u53D6\u6D88"
|
|
})]
|
|
});
|
|
}
|
|
}];
|
|
(0,_react_17_0_2_react.useEffect)(function () {
|
|
//申请实验室
|
|
(0,service_laboratory/* user_substance_classrooms */.y8)({
|
|
type: 2,
|
|
kclass: 'Receive'
|
|
}).then(function (res) {
|
|
var _res$data;
|
|
setLaboratorys([{
|
|
id: '',
|
|
title: '全部'
|
|
}].concat(toConsumableArray_default()(res === null || res === void 0 || (_res$data = res.data) === null || _res$data === void 0 ? void 0 : _res$data.list)));
|
|
});
|
|
//使用实验室
|
|
(0,service_laboratory/* user_substance_classrooms */.y8)({
|
|
type: 3,
|
|
kclass: 'Receive'
|
|
}).then(function (res) {
|
|
var _res$data2;
|
|
setLaboratorysUse([{
|
|
id: '',
|
|
title: '全部'
|
|
}].concat(toConsumableArray_default()(res === null || res === void 0 || (_res$data2 = res.data) === null || _res$data2 === void 0 ? void 0 : _res$data2.list)));
|
|
});
|
|
//实验室房间
|
|
(0,service_laboratory/* classroom_rooms_query */.jd)({
|
|
page: 1,
|
|
limit: 10000,
|
|
keyword: '',
|
|
classroom_id: laboratory
|
|
}).then(function (res) {
|
|
var _res$data3;
|
|
setLaboratoryRooms([{
|
|
id: '',
|
|
title: '全部'
|
|
}].concat(toConsumableArray_default()(res === null || res === void 0 || (_res$data3 = res.data) === null || _res$data3 === void 0 ? void 0 : _res$data3.list)));
|
|
});
|
|
}, []);
|
|
(0,_react_17_0_2_react.useEffect)(function () {
|
|
//列表查询
|
|
getData(false);
|
|
}, [page, limit]);
|
|
(0,_react_17_0_2_react.useEffect)(function () {
|
|
//列表查询
|
|
getData(true);
|
|
}, [laboratory, laboratorySq, laboratoryRoom, overdue, status, keyword]);
|
|
var getData = function getData(flag) {
|
|
if (flag) {
|
|
setPage(1);
|
|
}
|
|
(0,materials/* me_receives_query */.zO)({
|
|
page: page,
|
|
limit: limit,
|
|
status: status,
|
|
overdue: overdue,
|
|
keyword: keyword,
|
|
classroom_place_id: laboratory,
|
|
classroom_id: laboratorySq,
|
|
place_id: laboratoryRoom
|
|
}).then(function (res) {
|
|
var _res$data4, _res$data5;
|
|
setTableData(res === null || res === void 0 || (_res$data4 = res.data) === null || _res$data4 === void 0 ? void 0 : _res$data4.list);
|
|
setTotal(res === null || res === void 0 || (_res$data5 = res.data) === null || _res$data5 === void 0 ? void 0 : _res$data5.count);
|
|
});
|
|
};
|
|
var onShowSizeChange = function onShowSizeChange(page, size) {
|
|
setPage(page);
|
|
setLimit(size);
|
|
};
|
|
return /*#__PURE__*/(0,jsx_runtime.jsxs)("div", {
|
|
children: [/*#__PURE__*/(0,jsx_runtime.jsx)("div", {
|
|
className: MyReceivemodules.header_div,
|
|
children: /*#__PURE__*/(0,jsx_runtime.jsx)("div", {
|
|
className: MyReceivemodules.header_title,
|
|
children: "\u6211\u7684\u9886\u7528\u7533\u8BF7"
|
|
})
|
|
}), /*#__PURE__*/(0,jsx_runtime.jsxs)("div", {
|
|
className: MyReceivemodules.search_params,
|
|
children: [/*#__PURE__*/(0,jsx_runtime.jsx)(es_form/* default */.Z.Item, {
|
|
colon: false,
|
|
label: "\u7533\u8BF7\u5B9E\u9A8C\u5BA4",
|
|
children: /*#__PURE__*/(0,jsx_runtime.jsx)(es_select["default"], {
|
|
style: {
|
|
width: 100
|
|
},
|
|
defaultValue: laboratorySq,
|
|
value: laboratorySq,
|
|
onChange: function onChange(e) {
|
|
setLaboratorySq(e);
|
|
},
|
|
children: laboratorys === null || laboratorys === void 0 ? void 0 : laboratorys.map(function (item, index) {
|
|
return /*#__PURE__*/(0,jsx_runtime.jsx)(es_select["default"].Option, {
|
|
value: item === null || item === void 0 ? void 0 : item.id,
|
|
children: item === null || item === void 0 ? void 0 : item.title
|
|
}, index);
|
|
})
|
|
})
|
|
}), /*#__PURE__*/(0,jsx_runtime.jsx)(es_form/* default */.Z.Item, {
|
|
colon: false,
|
|
label: "\u4F7F\u7528\u5B9E\u9A8C\u5BA4",
|
|
style: {
|
|
marginLeft: '20px'
|
|
},
|
|
children: /*#__PURE__*/(0,jsx_runtime.jsx)(es_select["default"], {
|
|
style: {
|
|
width: 100
|
|
},
|
|
defaultValue: laboratory,
|
|
value: laboratory,
|
|
onChange: function onChange(e) {
|
|
setLaboratory(e);
|
|
setLaboratoryRoom('');
|
|
//实验室房间
|
|
(0,service_laboratory/* classroom_rooms_query */.jd)({
|
|
page: 1,
|
|
limit: 10000,
|
|
keyword: '',
|
|
classroom_id: e
|
|
}).then(function (res) {
|
|
var _res$data6;
|
|
setLaboratoryRooms([{
|
|
id: '',
|
|
title: '全部'
|
|
}].concat(toConsumableArray_default()(res === null || res === void 0 || (_res$data6 = res.data) === null || _res$data6 === void 0 ? void 0 : _res$data6.list)));
|
|
});
|
|
},
|
|
children: laboratorysUse === null || laboratorysUse === void 0 ? void 0 : laboratorysUse.map(function (item, index) {
|
|
return /*#__PURE__*/(0,jsx_runtime.jsx)(es_select["default"].Option, {
|
|
value: item === null || item === void 0 ? void 0 : item.id,
|
|
children: item === null || item === void 0 ? void 0 : item.title
|
|
}, index);
|
|
})
|
|
})
|
|
}), /*#__PURE__*/(0,jsx_runtime.jsx)(es_form/* default */.Z.Item, {
|
|
colon: false,
|
|
label: "\u5B9E\u9A8C\u5BA4\u623F\u95F4",
|
|
style: {
|
|
marginLeft: '20px'
|
|
},
|
|
children: /*#__PURE__*/(0,jsx_runtime.jsx)(es_select["default"], {
|
|
style: {
|
|
width: 100
|
|
},
|
|
defaultValue: laboratoryRoom,
|
|
value: laboratoryRoom,
|
|
onChange: function onChange(e) {
|
|
setLaboratoryRoom(e);
|
|
},
|
|
children: laboratoryRooms === null || laboratoryRooms === void 0 ? void 0 : laboratoryRooms.map(function (item, index) {
|
|
return /*#__PURE__*/(0,jsx_runtime.jsx)(es_select["default"].Option, {
|
|
value: item === null || item === void 0 ? void 0 : item.id,
|
|
children: item === null || item === void 0 ? void 0 : item.title
|
|
}, index);
|
|
})
|
|
})
|
|
}), /*#__PURE__*/(0,jsx_runtime.jsx)(es_form/* default */.Z.Item, {
|
|
colon: false,
|
|
label: "\u72B6\u6001",
|
|
style: {
|
|
marginLeft: 'auto'
|
|
},
|
|
children: /*#__PURE__*/(0,jsx_runtime.jsxs)(es_select["default"], {
|
|
style: {
|
|
width: 100
|
|
},
|
|
defaultValue: status,
|
|
value: status,
|
|
onChange: function onChange(e) {
|
|
setStatus(e);
|
|
},
|
|
children: [/*#__PURE__*/(0,jsx_runtime.jsx)(es_select["default"].Option, {
|
|
value: "",
|
|
children: "\u5168\u90E8"
|
|
}), /*#__PURE__*/(0,jsx_runtime.jsx)(es_select["default"].Option, {
|
|
value: "1",
|
|
children: "\u5F85\u5BA1\u6838"
|
|
}), /*#__PURE__*/(0,jsx_runtime.jsx)(es_select["default"].Option, {
|
|
value: "2",
|
|
children: "\u5F85\u5F52\u8FD8"
|
|
}), /*#__PURE__*/(0,jsx_runtime.jsx)(es_select["default"].Option, {
|
|
value: "3",
|
|
children: "\u5DF2\u9A73\u56DE"
|
|
}), /*#__PURE__*/(0,jsx_runtime.jsx)(es_select["default"].Option, {
|
|
value: "4",
|
|
children: "\u5DF2\u53D6\u6D88"
|
|
}), /*#__PURE__*/(0,jsx_runtime.jsx)(es_select["default"].Option, {
|
|
value: "5",
|
|
children: "\u5DF2\u5F52\u8FD8"
|
|
})]
|
|
})
|
|
}), /*#__PURE__*/(0,jsx_runtime.jsx)(es_form/* default */.Z.Item, {
|
|
colon: false,
|
|
label: "\u662F\u5426\u903E\u671F\u5F52\u8FD8",
|
|
style: {
|
|
marginLeft: '20px'
|
|
},
|
|
children: /*#__PURE__*/(0,jsx_runtime.jsxs)(es_select["default"], {
|
|
style: {
|
|
width: 100
|
|
},
|
|
defaultValue: overdue,
|
|
value: overdue,
|
|
onChange: function onChange(e) {
|
|
setOverdue(e);
|
|
},
|
|
children: [/*#__PURE__*/(0,jsx_runtime.jsx)(es_select["default"].Option, {
|
|
value: "",
|
|
children: "\u5168\u90E8"
|
|
}), /*#__PURE__*/(0,jsx_runtime.jsx)(es_select["default"].Option, {
|
|
value: "1",
|
|
children: "\u662F"
|
|
}), /*#__PURE__*/(0,jsx_runtime.jsx)(es_select["default"].Option, {
|
|
value: "0",
|
|
children: "\u5426"
|
|
})]
|
|
})
|
|
})]
|
|
}), (tableData === null || tableData === void 0 ? void 0 : tableData.length) > 0 ? /*#__PURE__*/(0,jsx_runtime.jsx)(table/* default */.Z, {
|
|
pagination: false,
|
|
dataSource: tableData,
|
|
columns: columns,
|
|
scroll: {
|
|
x: 1500
|
|
}
|
|
// rowClassName={(record: any, index: number) => {
|
|
// if (!record?.overdue) {
|
|
// return styles.redRow;
|
|
// }
|
|
// return '';
|
|
// }}
|
|
}) : /*#__PURE__*/(0,jsx_runtime.jsx)(NoData/* default */.Z, {
|
|
customText: "\u6682\u65E0\u6570\u636E"
|
|
}), /*#__PURE__*/(0,jsx_runtime.jsx)("aside", {
|
|
children: total > 0 ? /*#__PURE__*/(0,jsx_runtime.jsxs)("div", {
|
|
style: {
|
|
display: 'flex',
|
|
alignItems: 'center',
|
|
justifyContent: 'space-between',
|
|
padding: '10px 7px 20px 7px'
|
|
},
|
|
children: [/*#__PURE__*/(0,jsx_runtime.jsx)("div", {
|
|
children: /*#__PURE__*/(0,jsx_runtime.jsxs)("span", {
|
|
style: {
|
|
color: '#656F87'
|
|
},
|
|
children: ["\u5171", /*#__PURE__*/(0,jsx_runtime.jsx)("span", {
|
|
className: "c-light-primary",
|
|
children: total
|
|
}), "\u6761\u6570\u636E"]
|
|
})
|
|
}), /*#__PURE__*/(0,jsx_runtime.jsx)(pagination/* default */.Z, {
|
|
showSizeChanger: true,
|
|
showQuickJumper: true,
|
|
onChange: onShowSizeChange,
|
|
defaultCurrent: 1,
|
|
pageSizeOptions: ['10', '20', '50', '100'],
|
|
current: page || 1,
|
|
pageSize: limit || 10,
|
|
defaultPageSize: 10,
|
|
total: total
|
|
})]
|
|
}) : ''
|
|
}), /*#__PURE__*/(0,jsx_runtime.jsx)(ViewModal/* default */.Z, {
|
|
openViewModal: openViewModal,
|
|
viewInfo: viewData,
|
|
onCancel: function onCancel() {
|
|
return setOpenViewModal(false);
|
|
},
|
|
onReject: function onReject() {
|
|
setOpenViewModal(false);
|
|
}
|
|
})]
|
|
});
|
|
};
|
|
/* harmony default export */ var MyReceive = ((0,_umi_production_exports.connect)(function (_ref2) {
|
|
var loading = _ref2.loading,
|
|
engineeringNavigtion = _ref2.engineeringNavigtion;
|
|
return objectSpread2_default()({
|
|
loading: loading
|
|
}, engineeringNavigtion);
|
|
})(Navigation));
|
|
|
|
/***/ })
|
|
|
|
}]); |