You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

261 lines
4.9 KiB

<template>
<!-- 设备 -->
<view class="work-container">
<Form :form='form' :data='data' ref="form1" @tableFormSingleColumn='tableFormSingleColumn'
@addTableFormItem='addTableFormItem' @delTableFormItem='delTableFormItem'></Form>
<view class="footer">
<view class="btns">
<button class="reset" @click="reset">重置</button>
<button class="sure" @click="submit">确定</button>
</view>
<view style="height: constant(safe-area-inset-bottom); height: env(safe-area-inset-bottom);"></view>
</view>
</view>
</template>
<script>
import Form from '@/components/form/index.vue'
export default {
components: {
Form
},
data() {
return {
form: {
disabled: false,
visible: true,
loading: false,
labelWidth: '180rpx',
border: true,
errorType: ['toast'],
formData: [{
type: 'text',
field: 'code',
label: '申请主题',
disabled: false,
required: true,
value: ''
}, {
type: 'singleColumn',
field: 'type',
label: '申请类型',
disabled: false,
required: true,
list: [{
label: '类型1',
value: 1
}, {
label: '类型2',
value: 2
}, {
label: '类型3',
value: 3
}]
}, {
type: 'tableForm',
field: 'subList',
labelPosition: 'top',
label: '申请备件',
disabled: false,
required: true,
tableThlist: [{
label: '备用名称',
field: 'name',
type: 'singleColumn',
disabled: false,
required: true,
list: 'list'
}, {
label: '库存',
field: 'stork',
type: 'singleColumn',
disabled: false,
required: true,
list: 'list1'
}, {
label: '申请数量',
field: 'number',
type: 'number',
disabled: false,
required: true,
}]
}],
rules: {
// 对name字段进行必填验证
name: [{
min: 5,
message: '简介不能少于5个字',
trigger: 'change'
},
// 对name字段进行必填验证
{
required: true,
message: '请填写姓名',
trigger: ['change', 'blur']
},
]
}
},
data: {
name: '',
subList: [{
name: 1,
stork: '1',
number: '',
inputType: 'singleColumn',
list: [{
value: 1,
label: '哈哈'
}, {
value: 2,
label: '呵呵'
}],
list1: [{
value: 1,
label: '哈哈1111'
}, {
value: 2,
label: '呵呵111'
}],
}]
}
}
},
methods: {
// 触发提交表单
submit() {
console.log('表单数据信息1:', this.data);
this.$refs.form1.$refs.form.validate().then(res => {
console.log('表单数据信息:', res);
}).catch(err => {
console.log('表单错误信息:', err);
})
console.log(this.data.subList)
let isTrue = this.data.subList.some(item => {
return !item.name || item.number === ''
})
if (isTrue) {
this.$modal.showToast('申请备件信息请填写完全')
return;
}
},
// 重置
reset() {
console.log('表单数据信息1:', this.data);
this.data = {}
},
// 表格表单组件方法
tableFormSingleColumn(field, tableFormField, tableFormVal) {
console.log(field)
console.log(tableFormField)
console.log(tableFormVal)
},
// 添加表格表单
addTableFormItem() {
this.data.subList.push({
name: 1,
stork: 2,
number: '300',
inputType: 'singleColumn',
list: [{
value: 1,
label: '哈哈额'
}, {
value: 2,
label: '呵呵额'
}],
list1: [{
value: 1,
label: '哈哈222'
}, {
value: 2,
label: '呵呵333'
}],
})
},
delTableFormItem(index) {
this.data.subList.splice(index, 1)
}
}
}
</script>
<style lang="scss" scoped>
.add-form-container {
min-height: calc(100vh - 140rpx);
background: white;
padding: 0px 30rpx 140rpx;
}
.list {
padding-bottom: 20rpx;
.item {
margin-top: 20rpx;
background: white;
padding: 30rpx;
display: flex;
align-items: center;
image {
width: 160rpx;
height: 160rpx;
margin-right: 20rpx;
}
.title {
font-size: 32rpx;
font-weight: bold;
}
.dec1 {
font-size: 28rpx;
margin-top: 16rpx;
color: #acacac;
}
.dec2 {
font-size: 28rpx;
margin-top: 6rpx;
color: #acacac;
}
}
}
.footer {
position: fixed;
bottom: 0px;
left: 0px;
width: 100%;
}
.btns {
display: flex;
button {
flex: 1;
}
.sure {
background: #409eff;
color: white;
border-radius: 0px;
&::after {
border: 1px solid #409eff;
border-radius: 0px;
}
}
.reset {
background: #F5F5F5;
border-radius: 0px;
&::after {
border-radius: 0px;
}
}
}
</style>