Compare commits

...

12 Commits

Author SHA1 Message Date
lys 40c7a4f7a0 feature/2.19.1.2501.01-PC端Token验证 2025-04-25 13:55:23 +08:00
lys fad6c3a2b1 Merge branch 'feature/2.19.1.2501.01-验证码验证' into feature/2.19.1.2501.01-PC端Token验证
# Conflicts:
#	pc4mobx/hrmSalary/pages/mobilePayroll/index.js
2025-04-25 13:40:44 +08:00
lys 04b3415353 release/2.19.1.2501.01 2025-04-25 13:38:43 +08:00
lys e539f7b040 release/2.19.1.2501.01 2025-04-25 09:51:19 +08:00
lys e9d301927f release/2.19.1.2501.01 2025-04-24 16:50:18 +08:00
lys dee1059ca7 release/2.19.1.2501.01 2025-04-24 16:38:36 +08:00
lys 9a50947d8a release/2.19.1.2501.01 2025-04-23 17:34:46 +08:00
lys d652b2cdc6 release/2.19.1.2501.01 2025-04-23 16:13:49 +08:00
lys 51ac08d6fc release/2.19.1.2501.01 2025-04-22 09:35:04 +08:00
lys ae43a2aa7c release/2.19.1.2501.01 2025-04-18 16:21:49 +08:00
lys 82ffd93fd5 5release/2.19.1.2501.01 2025-04-18 15:10:05 +08:00
lys 34b2052926 feature/2.19.1.2501.01-PC端Token验证 2025-04-18 14:49:19 +08:00
20 changed files with 341 additions and 148 deletions

View File

@ -202,8 +202,12 @@ export const salaryBillSendSum = (params) => {
return postFetch("/api/bs/hrmsalary/salaryBill/send/sum", params); return postFetch("/api/bs/hrmsalary/salaryBill/send/sum", params);
}; };
//工资单发放-发送短信验证码 //工资单发放-发送短信验证码
export const sendMobileCode = (params) => { export const sendMobileCode = (params, header = {}) => {
return postFetch("/api/bs/hrmsalary/salaryBill/sendMobileCode", params); return postFetch("/api/bs/hrmsalary/salaryBill/sendMobileCode", params, header);
};
//工资单发放-发送短信验证码
export const checkMobileCode = (params, header = {}) => {
return postFetch("/api/bs/hrmsalary/salaryBill/checkMobileCode", params, header);
}; };
//工资单-验证方式 //工资单-验证方式
export const payrollCheckType = async header => { export const payrollCheckType = async header => {

View File

@ -6,35 +6,36 @@
*/ */
import React, { Component } from "react"; import React, { Component } from "react";
import { WeaDialog, WeaError, WeaFormItem, WeaInput, WeaLocaleProvider, WeaSearchGroup } from "ecCom"; import { WeaDialog, WeaError, WeaFormItem, WeaInput, WeaLocaleProvider, WeaSearchGroup } from "ecCom";
import { sendMobileCode } from "../../apis/payroll"; import { WeaForm, WeaSwitch } from "comsMobx";
import { Button } from "antd"; import { checkMobileCode, sendMobileCode } from "../../apis/payroll";
import { getQueryString } from "../../util/url";
import FormInfo from "../FormInfo";
import { captchaCondition } from "../../pages/mobilePayroll/pwdCondtion";
import MobileModal from "../../pages/mobilePayroll/mobileModal";
import { Button, message } from "antd";
import "./index.less"; import "./index.less";
const form = new WeaForm();
const { getLabel } = WeaLocaleProvider; const { getLabel } = WeaLocaleProvider;
class Index extends Component { class Index extends Component {
constructor(props) { constructor(props) {
super(props); super(props);
this.state = { this.state = { captcha: "", time: 60 };
captcha: "",
time: 60
};
this.timeRef = null; this.timeRef = null;
} }
componentDidMount() {
form.initFormFields(captchaCondition);
}
componentWillUnmount() { componentWillUnmount() {
clearInterval(this.timeRef); clearInterval(this.timeRef);
} this.setState({ captcha: "", time: 60 });
componentWillReceiveProps(nextProps, nextContext) {
if (nextProps.visible !== this.props.visible && !nextProps.visible) {
clearInterval(this.timeRef);
this.setState({ captcha: "", time: 60 });
}
} }
handleSendCaptcha = () => { handleSendCaptcha = () => {
sendMobileCode({ id: this.props.id }).then(({ status, data }) => { sendMobileCode({ id: this.props.id }, this.props.salaryBillToken).then(({ status }) => {
if (status) { if (status) {
this.timeRef = setInterval(() => { this.timeRef = setInterval(() => {
const { time } = this.state; const { time } = this.state;
@ -48,44 +49,74 @@ class Index extends Component {
} }
}); });
}; };
handleConfirm = () => { handleConfirm = async () => {
if (!this.state.captcha) { const type = getQueryString("type"), f = await form.validateForm();
if (!this.state.captcha && type !== "phone") {
this.refs.weaError.showError(); this.refs.weaError.showError();
// return return;
} else if (!f.isValid && type === "phone") {
f.showErrors();
return;
} }
this.props.onCancel(); checkMobileCode({ id: this.props.id, mobileCode: this.state.captcha }, this.props.salaryBillToken)
this.props.onConfirm(); .then(({ status, errormsg }) => {
if (status) {
this.props.onCancel();
this.props.onConfirm();
} else {
message.error(errormsg);
}
});
}; };
render() { render() {
const { captcha, time } = this.state; const { captcha, time } = this.state, type = getQueryString("type");
return ( const itemRender = {
<WeaDialog mobileCode: (field, textAreaProps, form, formParams) => {
initLoadCss {...this.props} style={{ width: 550 }} return (<div className="captchaInputBox">
className="captchaWrapper" title={getLabel(111, "验证码验证")} <WeaSwitch fieldConfig={{ ...field, ...textAreaProps }} form={form} formParams={formParams}
buttons={[ onChange={() => this.setState({ captcha: form.getFormParams().mobileCode })}/>
<Button type="primary" onClick={this.handleConfirm}>{getLabel(826, "确定")}</Button> <Button type="primary" onClick={this.handleSendCaptcha} disabled={time !== 60}>
]} {
> time === 60 ? getLabel(111, "发送验证码") : `${time}S`
<WeaSearchGroup needTigger={false} title="" showGroup> }
<WeaFormItem </Button>
label={getLabel(111, "验证码")} </div>);
labelCol={{ span: 8 }} }
wrapperCol={{ span: 16 }} };
> return (<React.Fragment>
<WeaError tipPosition="bottom" ref="weaError" error={getLabel(826, "验证码未填写")}> {
<div className="captchaInputBox"> type === "phone" ? <MobileModal title={getLabel(111, "验证码验证")} onConfirm={this.handleConfirm}>
<WeaInput value={captcha} onChange={captcha => this.setState({ captcha })}/> <FormInfo center={false} itemRender={itemRender} form={form} formFields={captchaCondition}/>
<Button type="primary" onClick={this.handleSendCaptcha} disabled={time !== 60}> </MobileModal> :
{ <WeaDialog
time === 60 ? getLabel(111, "发送验证码") : `${time}S` initLoadCss {...this.props} style={{ width: 550 }}
} className="captchaWrapper" title={getLabel(111, "验证码验证")}
</Button> buttons={[
</div> <Button type="primary" onClick={this.handleConfirm}>{getLabel(826, "确定")}</Button>
</WeaError> ]}
</WeaFormItem> >
</WeaSearchGroup> <WeaSearchGroup needTigger={false} title="" showGroup>
</WeaDialog> <WeaFormItem
label={getLabel(111, "验证码")}
labelCol={{ span: 8 }}
wrapperCol={{ span: 16 }}
>
<WeaError tipPosition="bottom" ref="weaError" error={getLabel(111, "验证码未填写")}>
<div className="captchaInputBox">
<WeaInput value={captcha} onChange={captcha => this.setState({ captcha })}/>
<Button type="primary" onClick={this.handleSendCaptcha} disabled={time !== 60}>
{
time === 60 ? getLabel(111, "发送验证码") : `${time}S`
}
</Button>
</div>
</WeaError>
</WeaFormItem>
</WeaSearchGroup>
</WeaDialog>
}
</React.Fragment>
); );
} }
} }

View File

@ -5,25 +5,25 @@
.wea-form-item-wrapper { .wea-form-item-wrapper {
.wea-error { .wea-error {
width: 100%; width: 100%;
.captchaInputBox {
display: flex;
align-items: center;
.wea-input-normal {
flex: 1;
}
button {
padding: 8px 10px;
border-radius: 0;
min-width: 80px;
text-align: center;
height: 30px;
line-height: 15px;
}
}
} }
} }
} }
} }
.captchaInputBox {
display: flex;
align-items: center;
.wea-input-normal {
flex: 1;
}
button {
padding: 8px 10px;
border-radius: 0;
min-width: 80px;
text-align: center;
height: 30px;
line-height: 15px;
}
}

View File

@ -10,7 +10,7 @@ class Content extends Component {
const { onlyOneGrup, showData } = dealTemplate(_.filter(itemTypeList, o => !!o), "pc"); const { onlyOneGrup, showData } = dealTemplate(_.filter(itemTypeList, o => !!o), "pc");
return ( return (
<div className="salary-preview-container"> <div className="salary-preview-container">
<div style={{ border: "10px solid #F3F9FF" }}> <div style={{ border: "10px solid #F3F9FF", width: "100%" }}>
<div className="edition-center"> <div className="edition-center">
<div className="header"> <div className="header">
<div className="header-title">{theme || ""}</div> <div className="header-title">{theme || ""}</div>

View File

@ -166,7 +166,7 @@ class SalaryDetails extends Component {
this.postMessageToChild({ this.postMessageToChild({
dataSource, pageInfo, selectedRowKeys, showTotalCell, calcDetail: true, tableScrollHeight: 154, sumRow, dataSource, pageInfo, selectedRowKeys, showTotalCell, calcDetail: true, tableScrollHeight: 154, sumRow,
columns: _.map(columns, (it, idx) => ({ columns: _.map(columns, (it, idx) => ({
dataIndex: it.column || it.dataIndex, title: it.text || it.title, calcDetail: true, dataIndex: it.column || it.dataIndex, title: it.text || it.title, calcDetail: true, showSee: false,
width: (it.dataIndex === "taxAgent" || it.dataIndex === "salarySob") ? 176 : (it.width || it.oldWidth), width: (it.dataIndex === "taxAgent" || it.dataIndex === "salarySob") ? 176 : (it.width || it.oldWidth),
fixed: (idx === 1 || idx === 0 || idx === 2) ? "left" : "", fixed: (idx === 1 || idx === 0 || idx === 2) ? "left" : "",
ellipsis: true ellipsis: true

View File

@ -6,7 +6,8 @@
*/ */
import React, { Component } from "react"; import React, { Component } from "react";
import { inject, observer } from "mobx-react"; import { inject, observer } from "mobx-react";
import { WeaLocaleProvider, WeaTop } from "ecCom"; import { WeaLocaleProvider, WeaTools, WeaTop } from "ecCom";
import { WeaForm } from "comsMobx";
import { Button, message, Modal } from "antd"; import { Button, message, Modal } from "antd";
import moment from "moment"; import moment from "moment";
import CalculateQuery from "./components/calculateQuery"; import CalculateQuery from "./components/calculateQuery";
@ -15,9 +16,15 @@ import CalculateDialog from "./components/calculateDialog";
import ProgressModal from "../../components/progressModal"; import ProgressModal from "../../components/progressModal";
import LogDialog from "../../components/logViewModal"; import LogDialog from "../../components/logViewModal";
import { backCalculate, deleteSalaryacct, fileSalaryAcct, reAccounting } from "../../apis/calculate"; import { backCalculate, deleteSalaryacct, fileSalaryAcct, reAccounting } from "../../apis/calculate";
import FormInfo from "../../components/FormInfo";
import { queryConditions } from "./config";
import { getTaxAgentSelectList } from "../../apis/taxAgent";
import cs from "classnames";
import "./index.less"; import "./index.less";
const getKey = WeaTools.getKey;
const getLabel = WeaLocaleProvider.getLabel; const getLabel = WeaLocaleProvider.getLabel;
const form = new WeaForm();
@inject("calculateStore", "taxAgentStore") @inject("calculateStore", "taxAgentStore")
@observer @observer
@ -31,17 +38,32 @@ class Calculate extends Component {
moment(new Date()).subtract(1, "year").startOf("year").format("YYYY-MM"), moment(new Date()).subtract(1, "year").startOf("year").format("YYYY-MM"),
moment(new Date()).endOf("year").format("YYYY-MM") moment(new Date()).endOf("year").format("YYYY-MM")
] ]
}, isRefresh: false, logDialogVisible: false, }, isRefresh: false, logDialogVisible: false, conditions: [],
progressModule: { visible: false, progress: 0, title: getLabel(111, "正在归档中请稍后") }, progressModule: { visible: false, progress: 0, title: getLabel(111, "正在归档中请稍后") },
calcDaialog: { visible: false, title: "" } calcDaialog: { visible: false, title: "" }, showAdvance: false
}; };
this.timer = null; this.timer = null;
this.handleDebounce = null; this.handleDebounce = null;
} }
async componentDidMount() {
const { data } = await getTaxAgentSelectList();
this.setState({
conditions: _.map(queryConditions, item => ({
...item, items: _.map(item.items, o => {
o = { ...o, label: getLabel(o.lanId, o.label) };
if (getKey(o) === "taxAgentIds") {
return { ...o, options: _.map(data, k => ({ key: k.id, showname: k.content })) };
}
return { ...o };
})
}))
}, () => form.initFormFields(this.state.conditions));
}
renderCalculateOpts = () => { renderCalculateOpts = () => {
const { taxAgentStore: { showOperateBtn } } = this.props; const { taxAgentStore: { showOperateBtn } } = this.props;
const { queryParams, isRefresh } = this.state; const { queryParams, isRefresh, showAdvance } = this.state;
let calculateOpts = [ let calculateOpts = [
<Button type="primary" onClick={() => this.setState({ <Button type="primary" onClick={() => this.setState({
calcDaialog: { calcDaialog: {
@ -49,10 +71,11 @@ class Calculate extends Component {
title: getLabel(538780, "核算") title: getLabel(538780, "核算")
} }
})}>{getLabel(538780, "核算")}</Button>, })}>{getLabel(538780, "核算")}</Button>,
<CalculateQuery queryParams={queryParams} onChange={v => this.setState({ <CalculateQuery queryParams={queryParams} onAdvance={() => this.setState({ showAdvance: !showAdvance })}
isRefresh: _.keys(v)[0] === "name" ? isRefresh : !isRefresh, onChange={v => this.setState({
queryParams: { ...queryParams, ...v } isRefresh: _.keys(v)[0] === "name" ? isRefresh : !isRefresh,
})} onSearch={() => this.setState({ isRefresh: !isRefresh })}/> queryParams: { ...queryParams, ...v }
})} onSearch={() => this.setState({ isRefresh: !isRefresh })}/>
]; ];
return !showOperateBtn ? calculateOpts.slice(1) : calculateOpts; return !showOperateBtn ? calculateOpts.slice(1) : calculateOpts;
}; };
@ -188,7 +211,9 @@ class Calculate extends Component {
}; };
render() { render() {
const { queryParams, isRefresh, calcDaialog, progressModule, logDialogVisible, filterConditions } = this.state; const {
queryParams, isRefresh, calcDaialog, progressModule, logDialogVisible, filterConditions, conditions, showAdvance
} = this.state;
return ( return (
<WeaTop title={getLabel(538011, "薪资核算")} icon={<i className="icon-coms-fa"/>} iconBgcolor="#F14A2D" <WeaTop title={getLabel(538011, "薪资核算")} icon={<i className="icon-coms-fa"/>} iconBgcolor="#F14A2D"
buttons={this.renderCalculateOpts()} className="calculate-main-layout" showDropIcon buttons={this.renderCalculateOpts()} className="calculate-main-layout" showDropIcon
@ -201,7 +226,18 @@ class Calculate extends Component {
]} ]}
> >
<div className="calculate-body"> <div className="calculate-body">
<CalculateTablelist queryParams={queryParams} isRefresh={isRefresh} onCalcOpts={this.handleCalcOpts}/> <div className={cs("advance-calc", { "show-advance-calc": showAdvance })}>
<FormInfo center={false} itemRender={{}} form={form} formFields={conditions} colCount={2}/>
<div className="advance-calc-btns">
<Button type="primary"
onClick={() => this.setState({ isRefresh: !isRefresh })}>{getLabel(111, "搜索")}</Button>
<Button type="ghost" onClick={() => form.resetForm()}>{getLabel(111, "重置")}</Button>
<Button type="ghost"
onClick={() => this.setState({ showAdvance: !showAdvance })}>{getLabel(111, "取消")}</Button>
</div>
</div>
<CalculateTablelist form={form} queryParams={queryParams} isRefresh={isRefresh}
onCalcOpts={this.handleCalcOpts}/>
<CalculateDialog {...calcDaialog} <CalculateDialog {...calcDaialog}
onCancel={(bool, id) => this.setState({ onCancel={(bool, id) => this.setState({
calcDaialog: { ...calcDaialog, visible: false }, calcDaialog: { ...calcDaialog, visible: false },

View File

@ -21,11 +21,14 @@ class Index extends Component {
<MonthRangePicker dateRange={dateRange} viewAttr={2} <MonthRangePicker dateRange={dateRange} viewAttr={2}
onChange={v => this.props.onChange({ dateRange: v })}/> onChange={v => this.props.onChange({ dateRange: v })}/>
</div> </div>
<WeaInputSearch value={name} <div className="advance-custom">
placeholder={getLabel(543431, "请输入薪资账套名称")} <WeaInputSearch value={name}
onChange={v => this.props.onChange({ name: v })} placeholder={getLabel(543431, "请输入薪资账套名称")}
onSearch={this.props.onSearch} onChange={v => this.props.onChange({ name: v })}
/> onSearch={this.props.onSearch}
/>
<a href="javascript:void(0);" onClick={this.props.onAdvance}>{getLabel(111, "高级搜索")}</a>
</div>
</div> </div>
); );
} }

View File

@ -29,12 +29,14 @@ class Index extends Component {
} }
getSalaryAcctList = (props) => { getSalaryAcctList = (props) => {
const { pageInfo } = this.state; const { pageInfo } = this.state, { queryParams, form } = props;
const { queryParams } = props; const { taxAgentIds } = form.getFormParams();
const { dateRange, ...extra } = queryParams; const { dateRange, ...extra } = queryParams;
const [startMonthStr, endMonthStr] = dateRange || []; const [startMonthStr, endMonthStr] = dateRange || [];
const params = { startMonthStr, endMonthStr, ...extra }; const params = { startMonthStr, endMonthStr, ...extra };
const payload = { ...pageInfo, ...params }; const payload = {
...pageInfo, ...params, taxAgentIds: taxAgentIds ? taxAgentIds.split(",") : []
};
this.setState({ loading: true }); this.setState({ loading: true });
getSalaryAcctList(payload).then(({ status, data }) => { getSalaryAcctList(payload).then(({ status, data }) => {
this.setState({ loading: false }); this.setState({ loading: false });

View File

@ -0,0 +1,19 @@
export const queryConditions = [
{
items: [
{
conditionType: "SELECT",
domkey: ["taxAgentIds"],
fieldcol: 14,
label: "个税扣缴义务人",
lanI: 111,
multiple: true,
options: [],
labelcol: 6,
value: "",
viewAttr: 2
}
],
defaultshow: true
}
];

View File

@ -62,6 +62,24 @@
} }
} }
.advance-custom {
display: flex;
align-items: center;
& > a {
border-radius: 0;
height: 28px;
position: relative;
color: #474747;
padding: 4px 15px;
background-color: transparent;
display: flex;
align-items: center;
border: 1px solid #d9d9d9;
border-left: none
}
}
.wea-input-focus { .wea-input-focus {
margin-top: -4px; margin-top: -4px;
} }
@ -72,6 +90,32 @@
overflow-y: hidden; overflow-y: hidden;
} }
.advance-calc {
display: none;
background: #FFF;
margin-bottom: 8px;
.advance-calc-btns {
display: flex;
justify-content: center;
align-items: center;
padding: 15px 0;
border-top: 1px solid #dadada;
button {
margin-right: 15px;
}
}
.wea-search-group, .wea-content {
padding: 0;
}
}
.show-advance-calc {
display: block;
}
.calculate-body { .calculate-body {
height: 100%; height: 100%;
width: 100%; width: 100%;

View File

@ -5,9 +5,9 @@
* Date: 2023/3/7 * Date: 2023/3/7
*/ */
import React, { Component } from "react"; import React, { Component } from "react";
import { WeaInputSearch, WeaLocaleProvider, WeaSlideModal, WeaTable, WeaTop } from "ecCom"; import { WeaInputSearch, WeaLocaleProvider, WeaSlideModal, WeaTop } from "ecCom";
import { Button } from "antd";
import { viewAttendQuote } from "../../../../apis/attendance"; import { viewAttendQuote } from "../../../../apis/attendance";
import { Button, Spin } from "antd";
import "./index.less"; import "./index.less";
const { getLabel } = WeaLocaleProvider; const { getLabel } = WeaLocaleProvider;
@ -16,11 +16,31 @@ class AttendanceDataViewSlide extends Component {
constructor(props) { constructor(props) {
super(props); super(props);
this.state = { this.state = {
loading: { query: false }, keyword: "", dataSource: [], columns: [], loading: { query: false }, keyword: "", dataSource: [], pageInfo: { current: 1, pageSize: 10, total: 0 }
pageInfo: { current: 1, pageSize: 10, total: 0 }
}; };
} }
componentDidMount() {
window.addEventListener("message", this.handleReceive, false);
}
componentWillUnmount() {
window.removeEventListener("message", this.handleReceive, false);
}
handleReceive = async ({ data }) => {
const { type, payload: { id, params } = {} } = data;
if (type === "turn") {
switch (id) {
case "PAGEINFO":
this.setState({ pageInfo: { ...this.state.pageInfo, ...params } }, () => this.viewAttendQuote());
break;
default:
break;
}
}
};
componentWillReceiveProps(nextProps, nextContext) { componentWillReceiveProps(nextProps, nextContext) {
if (nextProps.visible !== this.props.visible && nextProps.visible) { if (nextProps.visible !== this.props.visible && nextProps.visible) {
document.querySelector(".attendanceRefWrapper").classList.add("zIndex0-attendance"); document.querySelector(".attendanceRefWrapper").classList.add("zIndex0-attendance");
@ -33,19 +53,29 @@ class AttendanceDataViewSlide extends Component {
viewAttendQuote = (extraPayload = {}, props) => { viewAttendQuote = (extraPayload = {}, props) => {
const { loading, pageInfo, keyword } = this.state; const { loading, pageInfo, keyword } = this.state;
const { attendQuoteId } = props; const { attendQuoteId } = props || this.props;
this.setState({ loading: { ...loading, query: true } }); this.setState({ loading: { ...loading, query: true } });
viewAttendQuote({ ...pageInfo, attendQuoteId, keyword, ...extraPayload }).then(({ status, data }) => { viewAttendQuote({ ...pageInfo, attendQuoteId, keyword, ...extraPayload }).then(({ status, data }) => {
this.setState({ loading: { ...loading, query: false } }); this.setState({ loading: { ...loading, query: false } });
if (status) { if (status) {
const { columns, list: dataSource, pageNum: current, pageSize, total } = data.pageInfo; const { columns, list: dataSource, pageNum: current, pageSize, total } = data.pageInfo;
this.setState({ this.setState({
pageInfo: { ...pageInfo, current, pageSize, total }, dataSource, pageInfo: { ...pageInfo, current, pageSize, total }, dataSource
columns: _.map(columns, (o, i) => ({ ...o, width: 150, fixed: i === 0 ? "left" : null })) }, () => this.postMessageToChild({
}); pageInfo: this.state.pageInfo, dataSource, showRowSelection: false, unitTableType: "attendanceView",
columns: _.map(columns, (o, i) => ({ ...o, width: 150, fixed: i === 0 ? "left" : false }))
}));
} }
}).catch(() => this.setState({ loading: { ...loading, query: false } })); }).catch(() => this.setState({ loading: { ...loading, query: false } }));
}; };
postMessageToChild = (payload = {}) => {
const i18n = {
"操作": getLabel(30585, "操作"), "编辑": getLabel(111, "编辑"), "共": getLabel(18609, "共"),
"条": getLabel(18256, "条")
};
const childFrameObj = document.getElementById("attendanceViewTable");
childFrameObj && childFrameObj.contentWindow.postMessage(JSON.stringify({ ...payload, i18n }), "*");
};
handleExportAttendQuote = () => { handleExportAttendQuote = () => {
if (!this.handleDebounce) { if (!this.handleDebounce) {
this.handleDebounce = _.debounce(() => { this.handleDebounce = _.debounce(() => {
@ -60,24 +90,7 @@ class AttendanceDataViewSlide extends Component {
render() { render() {
const { showOperateBtn, salaryYearMonth, ...extra } = this.props; const { showOperateBtn, salaryYearMonth, ...extra } = this.props;
const { columns, dataSource, loading, pageInfo, keyword } = this.state; const { loading, keyword } = this.state;
const pagination = {
...pageInfo,
showTotal: (total) => `${total}`,
pageSizeOptions: ["10", "20", "50", "100"],
showSizeChanger: true,
showQuickJumper: true,
onShowSizeChange: (current, pageSize) => {
this.setState({
pageInfo: { ...pageInfo, current, pageSize }
}, () => this.viewAttendQuote({}, this.props));
},
onChange: (current) => {
this.setState({
pageInfo: { ...pageInfo, current }
}, () => this.viewAttendQuote({}, this.props));
}
};
const btns = [ const btns = [
<Button type="primary" onClick={this.handleExportAttendQuote}>{getLabel(81272, "导出全部")}</Button>, <Button type="primary" onClick={this.handleExportAttendQuote}>{getLabel(81272, "导出全部")}</Button>,
<WeaInputSearch <WeaInputSearch
@ -100,9 +113,16 @@ class AttendanceDataViewSlide extends Component {
<div>{getLabel(543376, "考勤周期")}{salaryYearMonth}</div> <div>{getLabel(543376, "考勤周期")}{salaryYearMonth}</div>
<div></div> <div></div>
</div> </div>
<WeaTable <div style={{ height: `calc(100% - 40px)` }}>
columns={columns} dataSource={dataSource} bordered pagination={pagination} <Spin spinning={loading.query}>
loading={loading.query} scroll={{ x: 1200, y: `calc(100vh - 240px)` }}/> <iframe
style={{ border: 0, width: "100%", height: "100%" }}
// src="http://localhost:7607/#/unitTable"
src="/spa/hrmSalary/hrmSalaryCalculateDetail/index.html#/unitTable"
id="attendanceViewTable"
/>
</Spin>
</div>
</div> </div>
} }
/> />

View File

@ -54,8 +54,8 @@
margin-bottom: 8px; margin-bottom: 8px;
} }
.wea-new-table { .ant-spin-nested-loading, .ant-spin-container {
background: #FFF; height: 100%;
} }
} }

View File

@ -17,7 +17,7 @@ class Index extends Component {
return ( return (
<div className="salary-btn-flex"> <div className="salary-btn-flex">
<div className="mounth-range"> <div className="mounth-range">
<span className="label">{getLabel(543549, "薪资所属月")}</span> <span className="label">{getLabel(111, "税款所属期")}</span>
<MonthRangePicker dateRange={dateRange} viewAttr={2} <MonthRangePicker dateRange={dateRange} viewAttr={2}
onChange={v => this.props.onChange({ dateRange: v })}/> onChange={v => this.props.onChange({ dateRange: v })}/>
</div> </div>

View File

@ -8,7 +8,7 @@ import React, { Component } from "react";
import { WeaLocaleProvider, WeaTable } from "ecCom"; import { WeaLocaleProvider, WeaTable } from "ecCom";
import { Dropdown, Menu, message, Modal } from "antd"; import { Dropdown, Menu, message, Modal } from "antd";
import { getDeclareList, withDrawTaxDeclaration } from "../../../../apis/declare"; import { getDeclareList, withDrawTaxDeclaration } from "../../../../apis/declare";
import { sysConfCodeRule } from "../../../../apis/ruleconfig"; import { sysConfCodeRule, sysinfo } from "../../../../apis/ruleconfig";
const getLabel = WeaLocaleProvider.getLabel; const getLabel = WeaLocaleProvider.getLabel;
@ -35,18 +35,19 @@ class Index extends Component {
if (status && data === "1") this.setState({ showWithDrawBtn: data === "1" }); if (status && data === "1") this.setState({ showWithDrawBtn: data === "1" });
}); });
}; };
getDeclareList = (props) => { getDeclareList = async (props) => {
const { pageInfo } = this.state; const { data: sysData } = await sysinfo();
const { queryParams } = props; const { pageInfo } = this.state, { queryParams } = props;
const { dateRange, ...extra } = queryParams; const { dateRange, ...extra } = queryParams;
const [fromSalaryMonthStr, endSalaryMonthStr] = dateRange || []; const [fromSalaryMonth, endSalaryMonth] = dateRange || [];
const params = { fromSalaryMonthStr, endSalaryMonthStr, ...extra }; const params = { fromSalaryMonth: fromSalaryMonth + "-01", endSalaryMonth: endSalaryMonth + "-01", ...extra };
const payload = { ...pageInfo, ...params }; const payload = { ...pageInfo, ...params };
this.setState({ loading: true }); this.setState({ loading: true });
getDeclareList(payload).then(({ status, data }) => { getDeclareList(payload).then(({ status, data }) => {
this.setState({ loading: false }); this.setState({ loading: false });
if (status) { if (status) {
const { columns, list: dataSource, pageNum, pageSize, total } = data; let { columns, list: dataSource, pageNum, pageSize, total } = data;
sysData["TAX_DECLARATION_DATE_TYPE"] === "1" && (columns = _.filter(columns, o => o.dataIndex !== "salaryMonth"));
this.setState({ this.setState({
dataSource, pageInfo: { ...pageInfo, pageNum, pageSize, total }, dataSource, pageInfo: { ...pageInfo, pageNum, pageSize, total },
columns: _.map(columns, o => { columns: _.map(columns, o => {

View File

@ -92,15 +92,21 @@ export default class MobilePayroll extends React.Component {
salaryCode: _.pick(params, ["salaryCode"]).salaryCode salaryCode: _.pick(params, ["salaryCode"]).salaryCode
}); });
this.setState({ salaryBillToken: data }, () => { this.setState({ salaryBillToken: data }, () => {
API.isNeedSecondPwdVerify({ mouldCode: "HRM", itemCode: "SALARY" }, this.state.salaryBillToken) payrollCheckType(this.state.salaryBillToken).then(({ data, status }) => {
.then(({ status, isNeedSecondAuth }) => { if (status && data === "PWD") {
if (status && isNeedSecondAuth) { API.isNeedSecondPwdVerify({ mouldCode: "HRM", itemCode: "SALARY" }, this.state.salaryBillToken)
this.setState({ visible: true }); .then(({ status, isNeedSecondAuth }) => {
} else { if (status && isNeedSecondAuth) {
this.getMySalaryBill(getQueryString("id")); this.setState({ visible: true });
setInitEmVerify(); } else {
} this.getMySalaryBill(getQueryString("id"));
}); setInitEmVerify();
}
});
} else {
this.setState({ captchaVisible: true });
}
});
}); });
} }
}; };
@ -187,11 +193,16 @@ export default class MobilePayroll extends React.Component {
setInitEmVerify(); setInitEmVerify();
}}/> }}/>
{/*发送验证码*/} {/*发送验证码*/}
<CaptchaModal {
visible={captchaVisible} id={getQueryString("id")} captchaVisible && <CaptchaModal
onCancel={() => this.setState({ captchaVisible: false })} visible={captchaVisible} id={getQueryString("id")} salaryBillToken={this.state.salaryBillToken}
onConfirm={() => this.props.mySalaryStore.setInitEmVerify()} onCancel={() => this.setState({ captchaVisible: false })}
/> onConfirm={() => {
setInitEmVerify();
this.getMySalaryBill(getQueryString("id"));
}}
/>
}
</React.Fragment>; </React.Fragment>;
const { const {
salaryTemplate, salaryGroups, employeeInformation, sendTime, confirmStatus, showAck, showFeedback salaryTemplate, salaryGroups, employeeInformation, sendTime, confirmStatus, showAck, showFeedback

View File

@ -1,6 +1,25 @@
import { WeaLocaleProvider } from "ecCom"; import { WeaLocaleProvider } from "ecCom";
const { getLabel } = WeaLocaleProvider; const { getLabel } = WeaLocaleProvider;
export const captchaCondition = [
{
items: [
{
colSpan: 1,
conditionType: "INPUT",
domkey: ["mobileCode"],
fieldcol: 18,
label: getLabel(111, "验证码"),
labelcol: 6,
detailtype: 1,
rules: "required|string",
viewAttr: 3
}
],
title: "",
defaultshow: true
}
];
export const loginCondition = [ export const loginCondition = [
{ {
items: [ items: [

View File

@ -14,6 +14,8 @@ import { confirmSalaryBill, feedBackSalaryBill, payrollCheckType } from "../../a
import CaptchaModal from "../../components/captchaModal"; import CaptchaModal from "../../components/captchaModal";
import "./index.less"; import "./index.less";
const isIPhone = new RegExp("\\biPhone\\b|\\biPod\\b", "i").test(window.navigator.userAgent);
const isEm = window.navigator.userAgent.indexOf("E-Mobile7") >= 0;
const { getLabel } = WeaLocaleProvider; const { getLabel } = WeaLocaleProvider;
@inject("mySalaryStore") @inject("mySalaryStore")
@ -123,7 +125,7 @@ export const ConfirmBtns = (props) => {
<Button type="primary" onClick={props.confirmSalaryBill}>{getLabel(111, "确认")}</Button> <Button type="primary" onClick={props.confirmSalaryBill}>{getLabel(111, "确认")}</Button>
} }
{ {
props.showFeedback === "1" && ((props.showFeedback === "1" && !isIPhone) || (props.showFeedback === "1" && isIPhone && isEm)) &&
<Button type="ghost" onClick={props.goFeedback}>{getLabel(111, "反馈")}</Button> <Button type="ghost" onClick={props.goFeedback}>{getLabel(111, "反馈")}</Button>
} }
</div>; </div>;

View File

@ -173,8 +173,8 @@
.ph-switch { .ph-switch {
height: 100%; height: 100%;
margin: 0 auto; display: flex;
text-align: center; justify-content: center;
.active, .phs-btn:hover { .active, .phs-btn:hover {
background-color: rgba(0, 0, 0, .15); background-color: rgba(0, 0, 0, .15);
@ -184,8 +184,9 @@
.phs-btn { .phs-btn {
height: 50px; height: 50px;
min-width: 88px; min-width: 88px;
line-height: 50px; display: flex;
display: inline-block; justify-content: center;
align-items: center;
color: #fff; color: #fff;
padding: 0 15px; padding: 0 15px;
cursor: pointer; cursor: pointer;

View File

@ -53,7 +53,7 @@ class Index extends Component {
} = payrollTempForm.getFormParams(), } = payrollTempForm.getFormParams(),
{ ackFeedbackStatus, feedbackStatus, autoAckDays, ...extraFb } = payrollTempFeedbackForm.getFormParams(), { ackFeedbackStatus, feedbackStatus, autoAckDays, ...extraFb } = payrollTempFeedbackForm.getFormParams(),
{ formData, smsSettingDialog } = this.tmpBaseSetRef.state; { formData, smsSettingDialog } = this.tmpBaseSetRef.state;
if (autoSendStatus !== "1" && emailStatus !== "1" && msgStatus !== "1" && smsStatus !== 1) { if (autoSendStatus !== "1" && emailStatus !== "1" && msgStatus !== "1" && smsStatus !== "1") {
message.warning(getLabel(111, "工资单模板至少开启一个发送通道")); message.warning(getLabel(111, "工资单模板至少开启一个发送通道"));
return; return;
} }

View File

@ -16,12 +16,12 @@ export const formHeaderPost = (url, method, params, header) => {
body: formdata body: formdata
}).then(res => res.json()); }).then(res => res.json());
}; };
export const postFetch = (url, params) => { export const postFetch = (url, params, header = {}) => {
if (typeof localStorage.access_token === "string" && localStorage.access_token !== "") { if (typeof localStorage.access_token === "string" && localStorage.access_token !== "") {
params.access_token = localStorage.access_token; params.access_token = localStorage.access_token;
} }
url = server + url + "?__random__=" + (new Date()).valueOf(); url = server + url + "?__random__=" + (new Date()).valueOf();
return fetch(url, getFetchParams("POST", params)).then(res => res.json()); return fetch(url, getFetchParams("POST", params, header)).then(res => res.json());
}; };
export const headerRequestFetch = (url, method, params, header) => { export const headerRequestFetch = (url, method, params, header) => {
if (typeof localStorage.access_token === "string" && localStorage.access_token !== "") { if (typeof localStorage.access_token === "string" && localStorage.access_token !== "") {