213 lines
6.7 KiB
Vue
213 lines
6.7 KiB
Vue
<template>
|
|
<view class="container" style="paddingBottom:1rpx;">
|
|
<u-navbar
|
|
leftIconSize="40rpx"
|
|
leftIconColor="#333333"
|
|
title="借贷账户管理"
|
|
>
|
|
</u-navbar>
|
|
<view class="section">
|
|
<view class="section-title">{{ title}}</view>
|
|
<view class="form-view">
|
|
<u--form labelPosition="left" :model="form" :rules="rules" ref="uForm" label-width="auto"
|
|
:labelStyle="{ color: '#333333', fontSize: '30rpx' }">
|
|
<u-form-item label="借贷名称" prop="name" required >
|
|
<u--input v-model="form.name" placeholder="请填写借贷名称"
|
|
inputAlign="right" border="none"></u--input>
|
|
</u-form-item>
|
|
<u-form-item label="账号" prop="code" required >
|
|
<u--input v-model="form.code" placeholder="请填写账号"
|
|
inputAlign="right" border="none"></u--input>
|
|
</u-form-item>
|
|
<u-form-item label="类型" prop="lendTypeName" required @click="handleShowTeam">
|
|
<u--input v-model="form.lendTypeName" disabled disabledColor="#ffffff" placeholder="请选择类型"
|
|
inputAlign="right" border="none"></u--input>
|
|
<u-icon slot="right" name="arrow-down"></u-icon>
|
|
</u-form-item>
|
|
|
|
<u-form-item label="备注" prop="remark" labelPosition="top">
|
|
<u--textarea v-model="form.remark" placeholder="请填写备注" border="none" autoHeight inputAlign="right" count
|
|
maxlength="20000" style="padding:18rpx 0;"></u--textarea>
|
|
</u-form-item>
|
|
</u--form>
|
|
<view class="form-btn">
|
|
<u-button type="primary" text="提交" @click="submit"></u-button>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
<u-toast ref="uToast"></u-toast>
|
|
<u-picker itemHeight="88" :show="showTeam" :columns="lendTypeList" keyName="dictLabel" @cancel="handleCancel"
|
|
@confirm="handleConfirm"></u-picker>
|
|
<u-datetime-picker
|
|
:show="datePickShow"
|
|
mode="date"
|
|
ref="createTimeRef"
|
|
@cancel="datePickShow=false"
|
|
@confirm="datePickConfirm"
|
|
itemHeight="88"
|
|
></u-datetime-picker>
|
|
</view>
|
|
</template>
|
|
|
|
<script setup>
|
|
import { getBankcardLend, addBankcardLend, updateBankcardLend } from '@/api/invest/bankcardlend'
|
|
import { getDicts } from '@/api/system/dict/data.js'
|
|
const { proxy } = getCurrentInstance()
|
|
import dayjs from 'dayjs'
|
|
import {onLoad,onReady} from "@dcloudio/uni-app";
|
|
// 计算属性与监听属性是在vue中而非uniap中 需要注意!!!
|
|
import {reactive ,toRefs,ref,computed ,getCurrentInstance }from "vue";
|
|
const datePickShow = ref(false)
|
|
const showTeam = ref(false)
|
|
const title = ref("借贷账户管理")
|
|
const lendTypeList = ref([])
|
|
const dateType = ref(1)
|
|
const data = reactive({
|
|
form: {
|
|
id: null,
|
|
name: null,
|
|
type: '3',
|
|
code: null,
|
|
openingBank: null,
|
|
activationDate: null,
|
|
billDate: null,
|
|
payDate: null,
|
|
delayPeriod: null,
|
|
creditLimit: null,
|
|
effectiveDate: null,
|
|
cvv: null,
|
|
createBy: null,
|
|
createTime: null,
|
|
updateBy: null,
|
|
updateTime: null,
|
|
delFlag: null,
|
|
remark: null,
|
|
debitType: null
|
|
},
|
|
// dateType:'1',
|
|
rules: {
|
|
name: [{ type: 'string', required: true, message: '借贷名称不能为空', trigger: ['change', 'blur'] }],
|
|
code: [{ type: 'string', required: true, message: '账号不能为空', trigger: ['change', 'blur'] }],
|
|
lendTypeName: [{ type: 'string', required: true, message: '类型不能为空', trigger: ['change', 'blur'] }],
|
|
}
|
|
})
|
|
const { form, rules} = toRefs(data)
|
|
|
|
onLoad((option) => {
|
|
form.value.id = option.id
|
|
if(form.value.id!=null){
|
|
title.value="借贷账户管理-修改"
|
|
}else{
|
|
title.value="借贷账户管理-新增"
|
|
}
|
|
getDict()
|
|
})
|
|
onReady(() => {
|
|
form.value.activationDate = dayjs(new Date().getTime()).format("YYYY-MM-DD")
|
|
form.value.effectiveDate = dayjs(new Date().getTime()).format("YYYY-MM-DD")
|
|
})
|
|
function getDict() {
|
|
// 类型
|
|
getDicts('lend_type').then(res => {
|
|
lendTypeList.value =[res.data]
|
|
})
|
|
if(form.value.id!=null){
|
|
getBankcardLend(form.value.id).then(res => {
|
|
form.value = res.data
|
|
// 类型
|
|
getDicts('lend_type').then(result => {
|
|
form.value.lendTypeName=dictStr(form.value.lendType, result.data)
|
|
})
|
|
|
|
})
|
|
}
|
|
}
|
|
function dictStr(val, arr) {
|
|
let str = ''
|
|
arr.map(item => {
|
|
if (item.dictValue === val) {
|
|
str = item.dictLabel
|
|
}
|
|
})
|
|
return str
|
|
}
|
|
|
|
function handleShowTeam() {
|
|
if (lendTypeList.value[0].length === 0) {
|
|
proxy.$refs['uToast'].show({
|
|
message: '类型为空 ', type: 'warning'
|
|
})
|
|
} else {
|
|
showTeam.value = true
|
|
}
|
|
}
|
|
function handleConfirm(e) {
|
|
form.value.lendTypeName = e.value[0].dictLabel
|
|
form.value.lendType = e.value[0].dictValue
|
|
showTeam.value = false
|
|
}
|
|
function handleCancel() {
|
|
showTeam.value = false
|
|
}
|
|
function selectDate(type) {
|
|
dateType.value=type
|
|
datePickShow.value = true
|
|
proxy.$refs['createTimeRef'].innerValue = new Date().getTime()
|
|
}
|
|
function datePickConfirm(e) {
|
|
if(dateType.value===1){
|
|
form.value.activationDate = dayjs(e.value).format("YYYY-MM-DD")
|
|
}
|
|
if(dateType.value===2){
|
|
form.value.effectiveDate = dayjs(e.value).format("YYYY-MM-DD")
|
|
}
|
|
datePickShow.value = false
|
|
}
|
|
function submit() {
|
|
proxy.$refs['uForm'].validate().then(() => {
|
|
if (form.value.id != null) {
|
|
updateBankcardLend(form.value).then(res => {
|
|
proxy.$refs['uToast'].show({
|
|
message: '修改成功', complete() {
|
|
uni.navigateTo({ url: `/pages/work/base/lend/list` })
|
|
}
|
|
})
|
|
})
|
|
}else {
|
|
addBankcardLend(form.value).then(res => {
|
|
proxy.$refs['uToast'].show({
|
|
message: '新增成功', complete() {
|
|
uni.navigateTo({ url: `/pages/work/base/lend/list` })
|
|
}
|
|
})
|
|
})
|
|
}
|
|
})
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
.section {
|
|
margin: 24rpx;
|
|
padding: 16rpx 24rpx;
|
|
background-color: #fff;
|
|
border-radius: 8rpx;
|
|
|
|
.section-title {
|
|
width: 360rpx;
|
|
color: #333333;
|
|
line-height: 44rpx;
|
|
font-size: 30rpx;
|
|
border-left: 6rpx solid #2681FF;
|
|
padding-left: 26rpx;
|
|
}
|
|
|
|
.form-view {
|
|
padding: 20rpx 0rpx 0 10rpx;
|
|
|
|
.form-btn {
|
|
padding-top: 20rpx;
|
|
}
|
|
}
|
|
}
|
|
</style> |