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