This commit is contained in:
parent
37936dbb76
commit
126504f14f
|
|
@ -88,6 +88,9 @@
|
||||||
"node": ">=8.9",
|
"node": ">=8.9",
|
||||||
"npm": ">= 3.0.0"
|
"npm": ">= 3.0.0"
|
||||||
},
|
},
|
||||||
|
"resolutions": {
|
||||||
|
"**/lodash": "4.17.21"
|
||||||
|
},
|
||||||
"browserslist": [
|
"browserslist": [
|
||||||
"> 1%",
|
"> 1%",
|
||||||
"last 2 versions"
|
"last 2 versions"
|
||||||
|
|
|
||||||
|
|
@ -178,7 +178,7 @@ import {
|
||||||
editCardReplacementApplyAPI,
|
editCardReplacementApplyAPI,
|
||||||
} from '@/api/construction-person/attendance-manage/card-replacement-apply'
|
} from '@/api/construction-person/attendance-manage/card-replacement-apply'
|
||||||
import { getCardReplacementAuditDetailAPI } from '@/api/construction-person/attendance-manage/card-replacement-audit'
|
import { getCardReplacementAuditDetailAPI } from '@/api/construction-person/attendance-manage/card-replacement-audit'
|
||||||
import debounce from 'lodash/debounce'
|
// import debounce from 'lodash/debounce'
|
||||||
export default {
|
export default {
|
||||||
name: 'AddApplyForm',
|
name: 'AddApplyForm',
|
||||||
props: {
|
props: {
|
||||||
|
|
|
||||||
|
|
@ -358,7 +358,6 @@
|
||||||
import TableModel from '@/components/TableModel'
|
import TableModel from '@/components/TableModel'
|
||||||
import DialogModel from '@/components/DialogModel'
|
import DialogModel from '@/components/DialogModel'
|
||||||
import UploadFileFormData from '@/components/UploadFileFormData'
|
import UploadFileFormData from '@/components/UploadFileFormData'
|
||||||
import axios from 'axios'
|
|
||||||
import { formLabel, columnsList, dialogConfig } from './config'
|
import { formLabel, columnsList, dialogConfig } from './config'
|
||||||
import {
|
import {
|
||||||
getSubSelectListCommonFun,
|
getSubSelectListCommonFun,
|
||||||
|
|
|
||||||
|
|
@ -41,7 +41,7 @@
|
||||||
v-model="loginForm.code"
|
v-model="loginForm.code"
|
||||||
auto-complete="off"
|
auto-complete="off"
|
||||||
placeholder="验证码"
|
placeholder="验证码"
|
||||||
style="width: 63%"
|
class="code-input"
|
||||||
@keyup.enter.native="handleLogin"
|
@keyup.enter.native="handleLogin"
|
||||||
>
|
>
|
||||||
<svg-icon
|
<svg-icon
|
||||||
|
|
@ -58,9 +58,7 @@
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
<el-checkbox
|
<el-checkbox v-model="loginForm.rememberMe" class="remember-me"
|
||||||
v-model="loginForm.rememberMe"
|
|
||||||
style="margin: 0px 0px 25px 0px"
|
|
||||||
>记住密码</el-checkbox
|
>记住密码</el-checkbox
|
||||||
>
|
>
|
||||||
<el-form-item style="width: 100%">
|
<el-form-item style="width: 100%">
|
||||||
|
|
@ -68,13 +66,13 @@
|
||||||
:loading="loading"
|
:loading="loading"
|
||||||
size="medium"
|
size="medium"
|
||||||
type="primary"
|
type="primary"
|
||||||
style="width: 100%"
|
class="login-button"
|
||||||
@click.native.prevent="handleLogin"
|
@click.native.prevent="handleLogin"
|
||||||
>
|
>
|
||||||
<span v-if="!loading">登 录</span>
|
<span v-if="!loading">登 录</span>
|
||||||
<span v-else>登 录 中...</span>
|
<span v-else>登 录 中...</span>
|
||||||
</el-button>
|
</el-button>
|
||||||
<div style="float: right" v-if="register">
|
<div class="register-link" v-if="register">
|
||||||
<router-link class="link-type" :to="'/register'"
|
<router-link class="link-type" :to="'/register'"
|
||||||
>立即注册</router-link
|
>立即注册</router-link
|
||||||
>
|
>
|
||||||
|
|
@ -277,4 +275,20 @@ export default {
|
||||||
.login-code-img {
|
.login-code-img {
|
||||||
height: 38px;
|
height: 38px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.code-input {
|
||||||
|
width: 63%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.remember-me {
|
||||||
|
margin: 0px 0px 25px 0px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.login-button {
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.register-link {
|
||||||
|
float: right;
|
||||||
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|
|
||||||
|
|
@ -182,7 +182,7 @@
|
||||||
<script>
|
<script>
|
||||||
import Pagination from '@/components/Pagination'
|
import Pagination from '@/components/Pagination'
|
||||||
|
|
||||||
import _ from 'lodash/fp'
|
// import _ from 'lodash/fp'
|
||||||
import { downloadFile } from '@/utils/download'
|
import { downloadFile } from '@/utils/download'
|
||||||
|
|
||||||
import { getErrLogs, downloadErrLogs } from '@/api/system/log'
|
import { getErrLogs, downloadErrLogs } from '@/api/system/log'
|
||||||
|
|
|
||||||
|
|
@ -175,7 +175,7 @@
|
||||||
<script>
|
<script>
|
||||||
import Pagination from '@/components/Pagination'
|
import Pagination from '@/components/Pagination'
|
||||||
|
|
||||||
import _ from 'lodash/fp'
|
// import _ from 'lodash/fp'
|
||||||
import { downloadFile } from '@/utils/download'
|
import { downloadFile } from '@/utils/download'
|
||||||
|
|
||||||
import { getYwLogs, downloadYwLogs } from '@/api/system/log'
|
import { getYwLogs, downloadYwLogs } from '@/api/system/log'
|
||||||
|
|
|
||||||
|
|
@ -41,10 +41,10 @@
|
||||||
class="filter-item ml-20"
|
class="filter-item ml-20"
|
||||||
>
|
>
|
||||||
<el-option
|
<el-option
|
||||||
v-for="item in Object.keys(operateList)"
|
|
||||||
:key="item"
|
:key="item"
|
||||||
:value="operateList[item]"
|
:value="operateList[item]"
|
||||||
:label="operateList[item]"
|
:label="operateList[item]"
|
||||||
|
v-for="item in Object.keys(operateList)"
|
||||||
/>
|
/>
|
||||||
</el-select>
|
</el-select>
|
||||||
|
|
||||||
|
|
@ -165,7 +165,7 @@
|
||||||
<script>
|
<script>
|
||||||
import Pagination from '@/components/Pagination'
|
import Pagination from '@/components/Pagination'
|
||||||
|
|
||||||
import _ from 'lodash/fp'
|
// import _ from 'lodash/fp'
|
||||||
import { downloadFile } from '@/utils/download'
|
import { downloadFile } from '@/utils/download'
|
||||||
|
|
||||||
import { getSysLogs, downloadSysLogs } from '@/api/system/log'
|
import { getSysLogs, downloadSysLogs } from '@/api/system/log'
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue