feat(front):前端样式调整;

master
jiyufei 3 months ago
parent f10ddf1c0f
commit a19b22db69

@ -1,84 +1,84 @@
<template> <template>
<el-dialog :title="!dataForm.id ? '新建' :'编辑'" :close-on-click-modal="false" append-to-body :visible.sync="visible" <el-dialog :title="!dataForm.id ? '新建' : '编辑'" :close-on-click-modal="false" append-to-body :visible.sync="visible"
class="JNPF-dialog JNPF-dialog_center" lock-scroll width="1000px"> class="JNPF-dialog JNPF-dialog_center" lock-scroll width="1000px">
<el-row :gutter="15" class=""> <el-row :gutter="15" class="">
<el-form ref="formRef" :model="dataForm" :rules="dataRule" size="small" label-width="100px" <el-form ref="formRef" :model="dataForm" :rules="dataRule" size="small" label-width="100px"
label-position="right"> label-position="right">
<template v-if="!loading"> <template v-if="!loading">
<!-- 具体表单 --> <!-- 具体表单 -->
<el-col :span="8"> <el-col :span="12">
<jnpf-form-tip-item label="用户编码" prop="userCode"> <jnpf-form-tip-item label="用户编码" prop="userCode">
<JnpfInput v-model="dataForm.userCode" @change="changeData('userCode',-1)" placeholder="请输入" clearable <JnpfInput v-model="dataForm.userCode" :disabled="!changeId" @change="changeData('userCode', -1)"
:style='{"width":"100%"}'> placeholder="请输入" clearable :style='{ "width": "100%" }'>
</JnpfInput> </JnpfInput>
</jnpf-form-tip-item> </jnpf-form-tip-item>
</el-col> </el-col>
<el-col :span="8"> <el-col :span="12">
<jnpf-form-tip-item label="用户名" prop="userName"> <jnpf-form-tip-item label="用户名" prop="userName">
<JnpfInput v-model="dataForm.userName" @change="changeData('userName',-1)" placeholder="请输入" clearable <JnpfInput v-model="dataForm.userName" @change="changeData('userName', -1)" placeholder="请输入" clearable
:style='{"width":"100%"}'> :style='{ "width": "100%" }'>
</JnpfInput> </JnpfInput>
</jnpf-form-tip-item> </jnpf-form-tip-item>
</el-col> </el-col>
<el-col :span="8"> <el-col :span="12">
<jnpf-form-tip-item label="联系电话" prop="phone"> <jnpf-form-tip-item label="联系电话" prop="phone">
<JnpfInput v-model="dataForm.phone" @change="changeData('phone',-1)" placeholder="请输入" clearable <JnpfInput v-model="dataForm.phone" @change="changeData('phone', -1)" placeholder="请输入" clearable
:style='{"width":"100%"}'> :style='{ "width": "100%" }'>
</JnpfInput> </JnpfInput>
</jnpf-form-tip-item> </jnpf-form-tip-item>
</el-col> </el-col>
<el-col :span="8"> <el-col :span="12">
<jnpf-form-tip-item label="人员归属" prop="userAscription"> <jnpf-form-tip-item label="人员归属" prop="userAscription">
<JnpfSelect v-model="dataForm.userAscription" @change="changeData('userAscription',-1)" placeholder="请选择" <JnpfSelect v-model="dataForm.userAscription" @change="changeData('userAscription', -1)" placeholder="请选择"
clearable :style='{"width":"100%"}' :options="userAscriptionOptions" :props="userAscriptionProps"> clearable :style='{ "width": "100%" }' :options="userAscriptionOptions" :props="userAscriptionProps">
</JnpfSelect> </JnpfSelect>
</jnpf-form-tip-item> </jnpf-form-tip-item>
</el-col> </el-col>
<el-col :span="8"> <el-col :span="12">
<jnpf-form-tip-item label="身份证号" prop="idCard"> <jnpf-form-tip-item label="身份证号" prop="idCard">
<JnpfInput v-model="dataForm.idCard" @change="changeData('idCard',-1)" placeholder="请输入" clearable <JnpfInput v-model="dataForm.idCard" @change="changeData('idCard', -1)" placeholder="请输入" clearable
:style='{"width":"100%"}'> :style='{ "width": "100%" }'>
</JnpfInput> </JnpfInput>
</jnpf-form-tip-item> </jnpf-form-tip-item>
</el-col> </el-col>
<el-col :span="8"> <el-col :span="12">
<jnpf-form-tip-item label="开始时间" prop="effectiveStartTime"> <jnpf-form-tip-item label="开始时间" prop="effectiveStartTime">
<JnpfDatePicker v-model="dataForm.effectiveStartTime" @change="changeData('effectiveStartTime',-1)" <JnpfDatePicker v-model="dataForm.effectiveStartTime" @change="changeData('effectiveStartTime', -1)"
:startTime="dateTime(false,1,1,'','')" :endTime="dateTime(false,1,1,'','')" placeholder="请选择" clearable :startTime="dateTime(false, 1, 1, '', '')" :endTime="dateTime(false, 1, 1, '', '')" placeholder="请选择" clearable
:style='{"width":"100%"}' type="datetime" format="yyyy-MM-dd HH:mm:ss"> :style='{ "width": "100%" }' type="datetime" format="yyyy-MM-dd">
</JnpfDatePicker> </JnpfDatePicker>
</jnpf-form-tip-item> </jnpf-form-tip-item>
</el-col> </el-col>
<el-col :span="8"> <el-col :span="12">
<jnpf-form-tip-item label="结束时间" prop="effectiveEndTime"> <jnpf-form-tip-item label="结束时间" prop="effectiveEndTime">
<JnpfDatePicker v-model="dataForm.effectiveEndTime" @change="changeData('effectiveEndTime',-1)" <JnpfDatePicker v-model="dataForm.effectiveEndTime" @change="changeData('effectiveEndTime', -1)"
:startTime="dateTime(false,1,1,'','')" :endTime="dateTime(false,1,1,'','')" placeholder="请选择" clearable :startTime="dateTime(false, 1, 1, '', '')" :endTime="dateTime(false, 1, 1, '', '')" placeholder="请选择" clearable
:style='{"width":"100%"}' type="datetime" format="yyyy-MM-dd HH:mm:ss"> :style='{ "width": "100%" }' type="datetime" format="yyyy-MM-dd">
</JnpfDatePicker> </JnpfDatePicker>
</jnpf-form-tip-item> </jnpf-form-tip-item>
</el-col> </el-col>
<el-col :span="8"> <el-col :span="12">
<jnpf-form-tip-item label="出入码" prop="entryCodes"> <jnpf-form-tip-item label="出入码" prop="entryCodes">
<JnpfInput v-model="dataForm.entryCodes" @change="changeData('entryCodes',-1)" placeholder="请输入" clearable <JnpfInput v-model="dataForm.entryCodes" @change="changeData('entryCodes', -1)" placeholder="请输入" clearable
:style='{"width":"100%"}'> :style='{ "width": "100%" }'>
</JnpfInput> </JnpfInput>
</jnpf-form-tip-item> </jnpf-form-tip-item>
</el-col> </el-col>
<el-col :span="8"> <el-col :span="12">
<jnpf-form-tip-item label="归属部门" prop="merchantId" v-if="dataForm.userAscription == 2"> <jnpf-form-tip-item label="归属部门" prop="merchantId" v-if="dataForm.userAscription == 2">
<JnpfDepSelect v-model="dataForm.merchantId" @change="depSelectChangeData" placeholder="请选择" <JnpfDepSelect v-model="dataForm.merchantId" @change="depSelectChangeData" placeholder="请选择"
selectType="all" :ableIds="ableAll.merchantIdableIds" clearable :style='{"width":"100%"}'> selectType="all" :ableIds="ableAll.merchantIdableIds" clearable :style='{ "width": "100%" }'>
</JnpfDepSelect> </JnpfDepSelect>
</jnpf-form-tip-item> </jnpf-form-tip-item>
<jnpf-form-tip-item label="归属商户" prop="merchantId" v-if="dataForm.userAscription == 1"> <jnpf-form-tip-item label="归属商户" prop="merchantId" v-if="dataForm.userAscription == 1">
<JnpfPopupSelect v-model="dataForm.merchantId" @change="selectChangeData" :rowIndex="null" <JnpfPopupSelect v-model="dataForm.merchantId" @change="selectChangeData" :rowIndex="null"
:formData="dataForm" :templateJson="interfaceRes.merchantId" placeholder="请选择" propsValue="id" :formData="dataForm" :templateJson="interfaceRes.merchantId" placeholder="请选择" propsValue="id"
popupWidth="800px" popupTitle="选择数据" popupType="dialog" relationField='cmp_nm' field='merchantId' popupWidth="800px" popupTitle="选择数据" popupType="dialog" relationField='cmp_nm' field='merchantId'
interfaceId="582919057313895877" :pageSize="20" :columnOptions="merchantIdcolumnOptions" clearable interfaceId="587625521974612357" :pageSize="20" :columnOptions="merchantIdcolumnOptions" clearable
:style='{"width":"100%"}'> :style='{ "width": "100%" }'>
</JnpfPopupSelect> </JnpfPopupSelect>
</jnpf-form-tip-item> </jnpf-form-tip-item>
</el-col> </el-col>
@ -86,7 +86,7 @@
</template> </template>
</el-form> </el-form>
<SelectDialog v-if="selectDialogVisible" :config="currTableConf" :formData="dataForm" ref="selectDialog" <SelectDialog v-if="selectDialogVisible" :config="currTableConf" :formData="dataForm" ref="selectDialog"
@select="addForSelect" @close="selectDialogVisible=false" /> @select="addForSelect" @close="selectDialogVisible = false" />
</el-row> </el-row>
<span slot="footer" class="dialog-footer"> <span slot="footer" class="dialog-footer">
<!-- <div class="upAndDown-button" v-if="dataForm.id"> <!-- <div class="upAndDown-button" v-if="dataForm.id">
@ -99,7 +99,7 @@
</div> </div>
<el-button type="primary" @click="dataFormSubmit(2)" :loading="continueBtnLoading"> <el-button type="primary" @click="dataFormSubmit(2)" :loading="continueBtnLoading">
{{!dataForm.id ?'确定并新增':'确定并继续'}}</el-button> --> {{!dataForm.id ?'确定并新增':'确定并继续'}}</el-button> -->
<el-button type="primary" @click="dataFormSubmit()" :loading="btnLoading"> </el-button> <el-button type="primary" @click="dataFormSubmit()" :loading="btnLoading"> </el-button>
<el-button @click="visible = false"> </el-button> <el-button @click="visible = false"> </el-button>
</span> </span>
</el-dialog> </el-dialog>
@ -107,448 +107,451 @@
<script> <script>
import request from '@/utils/request' import request from '@/utils/request'
import { import {
mapGetters mapGetters
} from "vuex"; } from "vuex";
import { import {
getDataInterfaceRes getDataInterfaceRes
} from '@/api/systemData/dataInterface' } from '@/api/systemData/dataInterface'
import { import {
getDictionaryDataSelector getDictionaryDataSelector
} from '@/api/systemData/dictionary' } from '@/api/systemData/dictionary'
import { import {
getDefaultCurrentValueUserId getDefaultCurrentValueUserId
} from '@/api/permission/user' } from '@/api/permission/user'
import { import {
getDefaultCurrentValueDepartmentId getDefaultCurrentValueDepartmentId
} from '@/api/permission/organize' } from '@/api/permission/organize'
import { import {
getDateDay, getDateDay,
getLaterData, getLaterData,
getBeforeData, getBeforeData,
getBeforeTime, getBeforeTime,
getLaterTime getLaterTime
} from '@/components/Generator/utils/index.js' } from '@/components/Generator/utils/index.js'
import { import {
thousandsFormat thousandsFormat
} from "@/components/Generator/utils/index" } from "@/components/Generator/utils/index"
export default { export default {
components: {}, components: {},
props: [], props: [],
data() { data() {
return { return {
dataFormSubmitType: 0, dataFormSubmitType: 0,
continueBtnLoading: false, continueBtnLoading: false,
index: 0, index: 0,
prevDis: false, prevDis: false,
nextDis: false, nextDis: false,
allList: [], allList: [],
visible: false, visible: false,
loading: false, loading: false,
btnLoading: false, btnLoading: false,
formRef: 'formRef', formRef: 'formRef',
setting: {}, setting: {},
eventType: '', eventType: '',
userBoxVisible: false, userBoxVisible: false,
selectDialogVisible: false, selectDialogVisible: false,
currTableConf: {}, currTableConf: {},
dataValueAll: {}, dataValueAll: {},
addTableConf: {}, addTableConf: {},
// //
ableAll: {}, ableAll: {},
tableRows: {}, tableRows: {},
Vmodel: "", Vmodel: "",
currVmodel: "", currVmodel: "",
dataForm: { dataForm: {
userCode: undefined, userCode: undefined,
userName: undefined, userName: undefined,
idCard: undefined, idCard: undefined,
phone: undefined, phone: undefined,
userAscription: "1", userAscription: "1",
effectiveStartTime: undefined, effectiveStartTime: undefined,
effectiveEndTime: undefined, effectiveEndTime: undefined,
entryCodes: undefined, entryCodes: undefined,
merchantId: undefined, merchantId: undefined,
version: 0, version: 0,
}, },
tableRequiredData: {}, tableRequiredData: {},
dataRule: { dataRule: {
userCode: [{ userCode: [{
required: true, required: true,
message: '请输入', message: '请输入',
trigger: 'blur' trigger: 'blur'
}, ], },],
userName: [{ userName: [{
required: true, required: true,
message: '请输入', message: '请输入',
trigger: 'blur' trigger: 'blur'
}, ], },],
idCard: [{ idCard: [{
required: true, required: true,
message: '请输入', message: '请输入',
trigger: 'blur' trigger: 'blur'
}, ], },],
phone: [{ phone: [{
required: true, required: true,
message: '请输入', message: '请输入',
trigger: 'blur' trigger: 'blur'
},
{
pattern: /^1[3456789]\d{9}$|^0\d{2,3}-?\d{7,8}$/,
message: '请输入正确的联系方式',
trigger: 'blur'
},
],
userAscription: [{
required: true,
message: '请至少选择一个',
trigger: 'change'
}, ],
effectiveStartTime: [{
required: true,
message: '请选择身份证有效开始时间',
trigger: 'change'
}, ],
effectiveEndTime: [{
required: true,
message: '请选择身份证有效结束时间',
trigger: 'change'
}, ],
entryCodes: [{
required: true,
message: '请输入',
trigger: 'blur'
}, ],
},
userAscriptionOptions: [{
"fullName": "商户",
"id": "1"
}, {
"fullName": "公司",
"id": "2"
}],
userAscriptionProps: {
"label": "fullName",
"value": "id"
}, },
merchantIdcolumnOptions: [{ {
"label": "编码", pattern: /^1[3456789]\d{9}$|^0\d{2,3}-?\d{7,8}$/,
"value": "cmp_no" message: '请输入正确的联系方式',
}, { trigger: 'blur'
"label": "名称",
"value": "cmp_nm"
}, ],
childIndex: -1,
isEdit: false,
interfaceRes: {
userCode: [],
userName: [],
idCard: [],
phone: [],
userAscription: [],
effectiveStartTime: [],
effectiveEndTime: [],
entryCodes: [],
merchantId: [],
}, },
} ],
}, userAscription: [{
computed: { required: true,
...mapGetters(['userInfo']) message: '请至少选择一个',
}, trigger: 'change'
watch: {}, },],
created() { effectiveStartTime: [{
this.dataAll() required: true,
this.initDefaultData() message: '请选择身份证有效开始时间',
this.dataValueAll = JSON.parse(JSON.stringify(this.dataForm)) trigger: 'change'
}, },],
mounted() {}, effectiveEndTime: [{
methods: { required: true,
selectChangeData(var1, var2){ message: '请选择身份证有效结束时间',
this.dataForm.merchantId = var2.id; trigger: 'change'
this.dataForm.merchantName = var2.cmp_nm; },],
entryCodes: [{
required: true,
message: '请输入',
trigger: 'blur'
},],
}, },
depSelectChangeData(var1, var2){ userAscriptionOptions: [{
this.dataForm.merchantId = var2.id; "fullName": "商户",
this.dataForm.merchantName = var2.fullName; "id": "1"
}, {
"fullName": "公司",
"id": "2"
}],
userAscriptionProps: {
"label": "fullName",
"value": "id"
}, },
prev() { merchantIdcolumnOptions: [{
this.index-- "label": "编码",
if (this.index === 0) { "value": "cmp_no"
this.prevDis = true }, {
} "label": "名称",
this.nextDis = false "value": "cmp_nm"
for (let index = 0; index < this.allList.length; index++) { },],
const element = this.allList[index]; childIndex: -1,
if (this.index == index) { isEdit: false,
this.getInfo(element.id) interfaceRes: {
} userCode: [],
} userName: [],
idCard: [],
phone: [],
userAscription: [],
effectiveStartTime: [],
effectiveEndTime: [],
entryCodes: [],
merchantId: [],
}, },
next() { }
this.index++ },
if (this.index === this.allList.length - 1) { computed: {
this.nextDis = true changeId() {
} return !this.dataForm.id;
this.prevDis = false },
for (let index = 0; index < this.allList.length; index++) { ...mapGetters(['userInfo'])
const element = this.allList[index]; },
if (this.index == index) { watch: {},
this.getInfo(element.id) created() {
} this.dataAll()
this.initDefaultData()
this.dataValueAll = JSON.parse(JSON.stringify(this.dataForm))
},
mounted() { },
methods: {
selectChangeData(var1, var2) {
this.dataForm.merchantId = var2.id;
this.dataForm.merchantName = var2.cmp_nm;
},
depSelectChangeData(var1, var2) {
this.dataForm.merchantId = var2.id;
this.dataForm.merchantName = var2.fullName;
},
prev() {
this.index--
if (this.index === 0) {
this.prevDis = true
}
this.nextDis = false
for (let index = 0; index < this.allList.length; index++) {
const element = this.allList[index];
if (this.index == index) {
this.getInfo(element.id)
} }
}, }
getInfo(id) { },
request({ next() {
url: '/api/example/Person/' + id, this.index++
method: 'get' if (this.index === this.allList.length - 1) {
}).then(res => { this.nextDis = true
this.dataInfo(res.data) }
}); this.prevDis = false
}, for (let index = 0; index < this.allList.length; index++) {
goBack() { const element = this.allList[index];
this.visible = false if (this.index == index) {
this.$emit('refreshDataList', true) this.getInfo(element.id)
},
changeData(model, index) {
this.isEdit = false
this.childIndex = index
let modelAll = model.split("-");
let faceMode = "";
for (let i = 0; i < modelAll.length; i++) {
faceMode += modelAll[i];
} }
for (let key in this.interfaceRes) { }
if (key != faceMode) { },
let faceReList = this.interfaceRes[key] getInfo(id) {
for (let i = 0; i < faceReList.length; i++) { request({
if (faceReList[i].relationField == model) { url: '/api/example/Person/' + id,
let options = 'get' + key + 'Options'; method: 'get'
if (this[options]) { }).then(res => {
this[options]() this.dataInfo(res.data)
} });
this.changeData(key, index) },
goBack() {
this.visible = false
this.$emit('refreshDataList', true)
},
changeData(model, index) {
this.isEdit = false
this.childIndex = index
let modelAll = model.split("-");
let faceMode = "";
for (let i = 0; i < modelAll.length; i++) {
faceMode += modelAll[i];
}
for (let key in this.interfaceRes) {
if (key != faceMode) {
let faceReList = this.interfaceRes[key]
for (let i = 0; i < faceReList.length; i++) {
if (faceReList[i].relationField == model) {
let options = 'get' + key + 'Options';
if (this[options]) {
this[options]()
} }
this.changeData(key, index)
} }
} }
} }
}, }
changeDataFormData(type, data, model, index, defaultValue) { },
if (!this.isEdit) { changeDataFormData(type, data, model, index, defaultValue) {
if (type == 2) { if (!this.isEdit) {
for (let i = 0; i < this.dataForm[data].length; i++) { if (type == 2) {
if (index == -1) { for (let i = 0; i < this.dataForm[data].length; i++) {
this.dataForm[data][i][model] = defaultValue if (index == -1) {
} else if (index == i) { this.dataForm[data][i][model] = defaultValue
this.dataForm[data][i][model] = defaultValue } else if (index == i) {
} this.dataForm[data][i][model] = defaultValue
} }
} else {
this.dataForm[data] = defaultValue
}
}
},
dataAll() {},
clearData() {
this.dataForm = JSON.parse(JSON.stringify(this.dataValueAll))
},
init(id, isDetail, allList) {
this.prevDis = false
this.nextDis = false
this.allList = allList || []
if (allList.length) {
this.index = this.allList.findIndex(item => item.id === id)
if (this.index == 0) {
this.prevDis = true
}
if (this.index == this.allList.length - 1) {
this.nextDis = true
} }
} else { } else {
this.dataForm[data] = defaultValue
}
}
},
dataAll() { },
clearData() {
this.dataForm = JSON.parse(JSON.stringify(this.dataValueAll))
},
init(id, isDetail, allList) {
this.prevDis = false
this.nextDis = false
this.allList = allList || []
if (allList.length) {
this.index = this.allList.findIndex(item => item.id === id)
if (this.index == 0) {
this.prevDis = true this.prevDis = true
}
if (this.index == this.allList.length - 1) {
this.nextDis = true this.nextDis = true
} }
this.dataForm.id = id || 0; } else {
this.visible = true; this.prevDis = true
this.$nextTick(() => { this.nextDis = true
if (this.dataForm.id) { }
this.loading = true this.dataForm.id = id || 0;
request({ this.visible = true;
url: '/api/example/Person/' + this.dataForm.id, this.$nextTick(() => {
method: 'get' if (this.dataForm.id) {
}).then(res => { this.loading = true
this.dataInfo(res.data) request({
this.loading = false url: '/api/example/Person/' + this.dataForm.id,
}); method: 'get'
} else { }).then(res => {
this.clearData() this.dataInfo(res.data)
this.initDefaultData() this.loading = false
} });
});
this.$store.commit('generator/UPDATE_RELATION_DATA', {})
},
//
initDefaultData() {
},
//
dataFormSubmit(type) {
this.dataFormSubmitType = type ? type : 0
this.$refs['formRef'].validate((valid) => {
if (valid) {
this.request()
}
})
},
request() {
let _data = this.dataList()
if (this.dataFormSubmitType == 2) {
this.continueBtnLoading = true
} else { } else {
this.btnLoading = true this.clearData()
this.initDefaultData()
} }
if (!this.dataForm.id) { });
request({ this.$store.commit('generator/UPDATE_RELATION_DATA', {})
url: '/api/example/Person', },
method: 'post', //
data: _data initDefaultData() {
}).then((res) => {
this.$message({ },
message: res.msg, //
type: 'success', dataFormSubmit(type) {
duration: 1000, this.dataFormSubmitType = type ? type : 0
onClose: () => { this.$refs['formRef'].validate((valid) => {
if (this.dataFormSubmitType == 2) { if (valid) {
this.$nextTick(() => { this.request()
this.clearData() }
this.initDefaultData() })
}) },
this.continueBtnLoading = false request() {
return let _data = this.dataList()
} if (this.dataFormSubmitType == 2) {
this.visible = false this.continueBtnLoading = true
this.btnLoading = false } else {
this.$emit('refresh', true) this.btnLoading = true
}
if (!this.dataForm.id) {
request({
url: '/api/example/Person',
method: 'post',
data: _data
}).then((res) => {
this.$message({
message: res.msg,
type: 'success',
duration: 1000,
onClose: () => {
if (this.dataFormSubmitType == 2) {
this.$nextTick(() => {
this.clearData()
this.initDefaultData()
})
this.continueBtnLoading = false
return
} }
}) this.visible = false
}).catch(() => { this.btnLoading = false
this.btnLoading = false this.$emit('refresh', true)
this.continueBtnLoading = false }
}) })
} else { }).catch(() => {
request({ this.btnLoading = false
url: '/api/example/Person/' + this.dataForm.id, this.continueBtnLoading = false
method: 'PUT', })
data: _data } else {
}).then((res) => { request({
this.$message({ url: '/api/example/Person/' + this.dataForm.id,
message: res.msg, method: 'PUT',
type: 'success', data: _data
duration: 1000, }).then((res) => {
onClose: () => { this.$message({
if (this.dataFormSubmitType == 2) return this.continueBtnLoading = false message: res.msg,
this.visible = false type: 'success',
this.btnLoading = false duration: 1000,
this.$emit('refresh', true) onClose: () => {
} if (this.dataFormSubmitType == 2) return this.continueBtnLoading = false
}) this.visible = false
}).catch(() => { this.btnLoading = false
this.btnLoading = false this.$emit('refresh', true)
this.continueBtnLoading = false }
}) })
} }).catch(() => {
}, this.btnLoading = false
openSelectDialog(key) { this.continueBtnLoading = false
this.currTableConf = this.addTableConf[key]
this.currVmodel = key
this.selectDialogVisible = true
this.$nextTick(() => {
this.$refs.selectDialog.init()
}) })
}, }
addForSelect(data) { },
for (let i = 0; i < data.length; i++) { openSelectDialog(key) {
let t = data[i] this.currTableConf = this.addTableConf[key]
if (this['get' + this.currVmodel]) { this.currVmodel = key
this['get' + this.currVmodel](t) this.selectDialogVisible = true
} this.$nextTick(() => {
this.$refs.selectDialog.init()
})
},
addForSelect(data) {
for (let i = 0; i < data.length; i++) {
let t = data[i]
if (this['get' + this.currVmodel]) {
this['get' + this.currVmodel](t)
} }
}, }
dateTime(timeRule, timeType, timeTarget, timeValueData, dataValue) { },
let timeDataValue = null; dateTime(timeRule, timeType, timeTarget, timeValueData, dataValue) {
let timeValue = Number(timeValueData) let timeDataValue = null;
if (timeRule) { let timeValue = Number(timeValueData)
if (timeType == 1) { if (timeRule) {
timeDataValue = timeValue if (timeType == 1) {
} else if (timeType == 2) { timeDataValue = timeValue
timeDataValue = dataValue } else if (timeType == 2) {
} else if (timeType == 3) { timeDataValue = dataValue
timeDataValue = new Date().getTime() } else if (timeType == 3) {
} else if (timeType == 4) { timeDataValue = new Date().getTime()
let previousDate = ''; } else if (timeType == 4) {
if (timeTarget == 1 || timeTarget == 2) { let previousDate = '';
previousDate = getDateDay(timeTarget, timeType, timeValue) if (timeTarget == 1 || timeTarget == 2) {
timeDataValue = new Date(previousDate).getTime() previousDate = getDateDay(timeTarget, timeType, timeValue)
} else if (timeTarget == 3) { timeDataValue = new Date(previousDate).getTime()
previousDate = getBeforeData(timeValue) } else if (timeTarget == 3) {
timeDataValue = new Date(previousDate).getTime() previousDate = getBeforeData(timeValue)
} else { timeDataValue = new Date(previousDate).getTime()
timeDataValue = getBeforeTime(timeTarget, timeValue).getTime() } else {
} timeDataValue = getBeforeTime(timeTarget, timeValue).getTime()
} else if (timeType == 5) { }
let previousDate = ''; } else if (timeType == 5) {
if (timeTarget == 1 || timeTarget == 2) { let previousDate = '';
previousDate = getDateDay(timeTarget, timeType, timeValue) if (timeTarget == 1 || timeTarget == 2) {
timeDataValue = new Date(previousDate).getTime() previousDate = getDateDay(timeTarget, timeType, timeValue)
} else if (timeTarget == 3) { timeDataValue = new Date(previousDate).getTime()
previousDate = getLaterData(timeValue) } else if (timeTarget == 3) {
timeDataValue = new Date(previousDate).getTime() previousDate = getLaterData(timeValue)
} else { timeDataValue = new Date(previousDate).getTime()
timeDataValue = getLaterTime(timeTarget, timeValue).getTime() } else {
} timeDataValue = getLaterTime(timeTarget, timeValue).getTime()
} }
} }
return timeDataValue; }
}, return timeDataValue;
time(timeRule, timeType, timeTarget, timeValue, formatType, dataValue) { },
let format = formatType == 'HH:mm' ? 'HH:mm:00' : formatType time(timeRule, timeType, timeTarget, timeValue, formatType, dataValue) {
let timeDataValue = null let format = formatType == 'HH:mm' ? 'HH:mm:00' : formatType
if (timeRule) { let timeDataValue = null
if (timeType == 1) { if (timeRule) {
timeDataValue = timeValue || '00:00:00' if (timeType == 1) {
if (timeDataValue.split(':').length == 3) { timeDataValue = timeValue || '00:00:00'
timeDataValue = timeDataValue if (timeDataValue.split(':').length == 3) {
} else { timeDataValue = timeDataValue
timeDataValue = timeDataValue + ':00' } else {
} timeDataValue = timeDataValue + ':00'
} else if (timeType == 2) {
timeDataValue = dataValue
} else if (timeType == 3) {
timeDataValue = this.jnpf.toDate(new Date(), format)
} else if (timeType == 4) {
let previousDate = '';
previousDate = getBeforeTime(timeTarget, timeValue)
timeDataValue = this.jnpf.toDate(previousDate, format)
} else if (timeType == 5) {
let previousDate = '';
previousDate = getLaterTime(timeTarget, timeValue)
timeDataValue = this.jnpf.toDate(previousDate, format)
} }
} else if (timeType == 2) {
timeDataValue = dataValue
} else if (timeType == 3) {
timeDataValue = this.jnpf.toDate(new Date(), format)
} else if (timeType == 4) {
let previousDate = '';
previousDate = getBeforeTime(timeTarget, timeValue)
timeDataValue = this.jnpf.toDate(previousDate, format)
} else if (timeType == 5) {
let previousDate = '';
previousDate = getLaterTime(timeTarget, timeValue)
timeDataValue = this.jnpf.toDate(previousDate, format)
} }
return timeDataValue; }
}, return timeDataValue;
dataList() { },
var _data = this.dataForm; dataList() {
return _data; var _data = this.dataForm;
}, return _data;
dataInfo(dataAll) { },
let _dataAll = dataAll dataInfo(dataAll) {
this.dataForm = _dataAll let _dataAll = dataAll
this.isEdit = true this.dataForm = _dataAll
this.dataAll() this.isEdit = true
this.childIndex = -1 this.dataAll()
}, this.childIndex = -1
}, },
} },
}
</script> </script>

@ -56,12 +56,12 @@
</el-table-column> </el-table-column>
<el-table-column prop="effectiveStartTime" label="有效开始时间" align="center"> <el-table-column prop="effectiveStartTime" label="有效开始时间" align="center">
<template slot-scope="scope"> <template slot-scope="scope">
{{ scope.row.effectiveStartTime | toDate("yyyy-MM-dd HH:mm:ss") }} {{ scope.row.effectiveStartTime | toDate("yyyy-MM-dd") }}
</template> </template>
</el-table-column> </el-table-column>
<el-table-column prop="effectiveEndTime" label="有效结束时间" align="center"> <el-table-column prop="effectiveEndTime" label="有效结束时间" align="center">
<template slot-scope="scope"> <template slot-scope="scope">
{{ scope.row.effectiveEndTime | toDate("yyyy-MM-dd HH:mm:ss") }} {{ scope.row.effectiveEndTime | toDate("yyyy-MM-dd") }}
</template> </template>
</el-table-column> </el-table-column>
<el-table-column label="操作" fixed="right" width="150"align="center"> <el-table-column label="操作" fixed="right" width="150"align="center">

@ -51,11 +51,11 @@
<p>{{ dataForm.ascriptionId }}</p> <p>{{ dataForm.ascriptionId }}</p>
</jnpf-form-tip-item> </jnpf-form-tip-item>
</el-col> </el-col>
<el-col :span="8"> <!-- <el-col :span="8">
<jnpf-form-tip-item label="归属名称" prop="ascriptionName"> <jnpf-form-tip-item label="归属名称" prop="ascriptionName">
<p>{{ dataForm.ascriptionName }}</p> <p>{{ dataForm.ascriptionName }}</p>
</jnpf-form-tip-item> </jnpf-form-tip-item>
</el-col> </el-col> -->
</template> </template>
</el-form> </el-form>
</el-row> </el-row>

@ -8,7 +8,7 @@
<!-- 具体表单 --> <!-- 具体表单 -->
<el-col :span="8"> <el-col :span="8">
<jnpf-form-tip-item label="车牌号" prop="vehicleNumber"> <jnpf-form-tip-item label="车牌号" prop="vehicleNumber">
<JnpfInput v-model="dataForm.vehicleNumber" @change="changeData('vehicleNumber',-1)" placeholder="请输入" <JnpfInput v-model="dataForm.vehicleNumber" :disabled="!changeId" @change="changeData('vehicleNumber',-1)" placeholder="请输入"
clearable :style='{"width":"100%"}'> clearable :style='{"width":"100%"}'>
</JnpfInput> </JnpfInput>
</jnpf-form-tip-item> </jnpf-form-tip-item>
@ -87,7 +87,7 @@
<JnpfPopupSelect v-model="dataForm.ascriptionId" @change="selectChangeData" :rowIndex="null" <JnpfPopupSelect v-model="dataForm.ascriptionId" @change="selectChangeData" :rowIndex="null"
:formData="dataForm" :templateJson="interfaceRes.ascriptionName" placeholder="请选择" propsValue="id" :formData="dataForm" :templateJson="interfaceRes.ascriptionName" placeholder="请选择" propsValue="id"
popupWidth="800px" popupTitle="选择数据" popupType="dialog" relationField='cmp_nm' field='ascriptionId' popupWidth="800px" popupTitle="选择数据" popupType="dialog" relationField='cmp_nm' field='ascriptionId'
interfaceId="582919057313895877" :pageSize="20" :columnOptions="ascriptionNamecolumnOptions" clearable interfaceId="587625521974612357" :pageSize="20" :columnOptions="ascriptionNamecolumnOptions" clearable
:style='{"width":"100%"}'> :style='{"width":"100%"}'>
</JnpfPopupSelect> </JnpfPopupSelect>
</jnpf-form-tip-item> </jnpf-form-tip-item>

Loading…
Cancel
Save