123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554 |
- <template>
- <a-card :bordered="false">
- <a-form :form="form1" :self-update="true" @submit="handleForm1Submit">
- <a-row class="form-row" :gutter="16">
- <a-col :lg="6" :md="12" :sm="24">
- <a-form-item label="仓库名">
- <a-input
- placeholder="请输入仓库名称"
- v-decorator="[
- 'name',
- {rules: [{ required: true, message: '请输入仓库名称', whitespace: true}]}
- ]" />
- </a-form-item>
- </a-col>
- <a-col :xl="{span: 7, offset: 1}" :lg="{span: 8}" :md="{span: 12}" :sm="24">
- <a-form-item
- label="仓库域名">
- <a-input
- addonBefore="http://"
- addonAfter=".com"
- placeholder="请输入"
- v-decorator="[
- 'url',
- {rules: [{ required: true, message: '请输入仓库域名', whitespace: true}]}
- ]" />
- </a-form-item>
- </a-col>
- <a-col :xl="{span: 9, offset: 1}" :lg="{span: 10}" :md="{span: 24}" :sm="24">
- <a-form-item
- label="仓库管理员">
- <a-select placeholder="请选择管理员" v-decorator="[ 'owner', {rules: [{ required: true, message: '请选择管理员'}]} ]">
- <a-select-option value="王同学">王同学</a-select-option>
- <a-select-option value="李同学">李同学</a-select-option>
- <a-select-option value="黄同学">黄同学</a-select-option>
- </a-select>
- </a-form-item>
- </a-col>
- </a-row>
- <a-row class="form-row" :gutter="16">
- <a-col :lg="6" :md="12" :sm="24">
- <a-form-item
- label="审批人">
- <a-select placeholder="请选择审批员" v-decorator="[ 'approver', {rules: [{ required: true, message: '请选择审批员'}]} ]">
- <a-select-option value="王晓丽">王晓丽</a-select-option>
- <a-select-option value="李军">李军</a-select-option>
- </a-select>
- </a-form-item>
- </a-col>
- <a-col :xl="{span: 7, offset: 1}" :lg="{span: 8}" :md="{span: 12}" :sm="24">
- <a-form-item
- label="生效日期">
- <a-range-picker
- style="width: 100%"
- v-decorator="[
- 'dateRange',
- {rules: [{ required: true, message: '请选择生效日期'}]}
- ]" />
- </a-form-item>
- </a-col>
- <a-col :xl="{span: 9, offset: 1}" :lg="{span: 10}" :md="{span: 24}" :sm="24">
- <a-form-item
- label="仓库类型">
- <a-select
- placeholder="请选择仓库类型"
- v-decorator="[
- 'type',
- {rules: [{ required: true, message: '请选择仓库类型'}]}
- ]" >
- <a-select-option value="公开">公开</a-select-option>
- <a-select-option value="私密">私密</a-select-option>
- </a-select>
- </a-form-item>
- </a-col>
- </a-row>
- <a-form-item v-if="showSubmit">
- <a-button htmlType="submit" >Submit</a-button>
- </a-form-item>
- </a-form>
- <a-form :form="form2" :self-update="true" @submit="handleForm2Submit">
- <a-row class="form-row" :gutter="16">
- <a-col :lg="6" :md="12" :sm="24">
- <a-form-item label="仓库名">
- <a-input
- placeholder="请输入仓库名称"
- v-decorator="[
- 'name',
- {rules: [{ required: true, message: '请输入仓库名称', whitespace: true}]}
- ]" />
- </a-form-item>
- </a-col>
- <a-col :xl="{span: 7, offset: 1}" :lg="{span: 8}" :md="{span: 12}" :sm="24">
- <a-form-item
- label="仓库域名">
- <a-input
- addonBefore="http://"
- addonAfter=".com"
- placeholder="请输入"
- v-decorator="[
- 'url',
- {rules: [{ required: true, message: '请输入仓库域名', whitespace: true}]}
- ]" />
- </a-form-item>
- </a-col>
- <a-col :xl="{span: 9, offset: 1}" :lg="{span: 10}" :md="{span: 24}" :sm="24">
- <a-form-item
- label="仓库管理员">
- <a-select placeholder="请选择管理员" v-decorator="[ 'owner', {rules: [{ required: true, message: '请选择管理员'}]} ]">
- <a-select-option value="王同学">王同学</a-select-option>
- <a-select-option value="李同学">李同学</a-select-option>
- <a-select-option value="黄同学">黄同学</a-select-option>
- </a-select>
- </a-form-item>
- </a-col>
- </a-row>
- <a-row class="form-row" :gutter="16">
- <a-col :lg="6" :md="12" :sm="24">
- <a-form-item
- label="审批人">
- <a-select placeholder="请选择审批员" v-decorator="[ 'approver', {rules: [{ required: true, message: '请选择审批员'}]} ]">
- <a-select-option value="王晓丽">王晓丽</a-select-option>
- <a-select-option value="李军">李军</a-select-option>
- </a-select>
- </a-form-item>
- </a-col>
- <a-col :xl="{span: 7, offset: 1}" :lg="{span: 8}" :md="{span: 12}" :sm="24">
- <a-form-item
- label="生效日期">
- <a-range-picker
- style="width: 100%"
- v-decorator="[
- 'dateRange',
- {rules: [{ required: true, message: '请选择生效日期'}]}
- ]" />
- </a-form-item>
- </a-col>
- <a-col :xl="{span: 9, offset: 1}" :lg="{span: 10}" :md="{span: 24}" :sm="24">
- <a-form-item
- label="仓库类型">
- <a-select
- placeholder="请选择仓库类型"
- v-decorator="[
- 'type',
- {rules: [{ required: true, message: '请选择仓库类型'}]}
- ]" >
- <a-select-option value="公开">公开</a-select-option>
- <a-select-option value="私密">私密</a-select-option>
- </a-select>
- </a-form-item>
- </a-col>
- </a-row>
- <a-form-item v-if="showSubmit">
- <a-button htmlType="submit" >Submit</a-button>
- </a-form-item>
- </a-form>
- <a-form :form="form3" :self-update="true" @submit="handleForm2Submit">
- <a-row class="form-row" :gutter="16">
- <a-col :lg="6" :md="12" :sm="24">
- <a-form-item label="仓库名">
- <a-input
- placeholder="请输入仓库名称"
- v-decorator="[
- 'name',
- {rules: [{ required: true, message: '请输入仓库名称', whitespace: true}]}
- ]" />
- </a-form-item>
- </a-col>
- <a-col :xl="{span: 7, offset: 1}" :lg="{span: 8}" :md="{span: 12}" :sm="24">
- <a-form-item
- label="仓库域名">
- <a-input
- addonBefore="http://"
- addonAfter=".com"
- placeholder="请输入"
- v-decorator="[
- 'url',
- {rules: [{ required: true, message: '请输入仓库域名', whitespace: true}]}
- ]" />
- </a-form-item>
- </a-col>
- <a-col :xl="{span: 9, offset: 1}" :lg="{span: 10}" :md="{span: 24}" :sm="24">
- <a-form-item
- label="仓库管理员">
- <a-select placeholder="请选择管理员" v-decorator="[ 'owner', {rules: [{ required: true, message: '请选择管理员'}]} ]">
- <a-select-option value="王同学">王同学</a-select-option>
- <a-select-option value="李同学">李同学</a-select-option>
- <a-select-option value="黄同学">黄同学</a-select-option>
- </a-select>
- </a-form-item>
- </a-col>
- </a-row>
- <a-row class="form-row" :gutter="16">
- <a-col :lg="6" :md="12" :sm="24">
- <a-form-item
- label="审批人">
- <a-select placeholder="请选择审批员" v-decorator="[ 'approver', {rules: [{ required: true, message: '请选择审批员'}]} ]">
- <a-select-option value="王晓丽">王晓丽</a-select-option>
- <a-select-option value="李军">李军</a-select-option>
- </a-select>
- </a-form-item>
- </a-col>
- <a-col :xl="{span: 7, offset: 1}" :lg="{span: 8}" :md="{span: 12}" :sm="24">
- <a-form-item
- label="生效日期">
- <a-range-picker
- style="width: 100%"
- v-decorator="[
- 'dateRange',
- {rules: [{ required: true, message: '请选择生效日期'}]}
- ]" />
- </a-form-item>
- </a-col>
- <a-col :xl="{span: 9, offset: 1}" :lg="{span: 10}" :md="{span: 24}" :sm="24">
- <a-form-item
- label="仓库类型">
- <a-select
- placeholder="请选择仓库类型"
- v-decorator="[
- 'type',
- {rules: [{ required: true, message: '请选择仓库类型'}]}
- ]" >
- <a-select-option value="公开">公开</a-select-option>
- <a-select-option value="私密">私密</a-select-option>
- </a-select>
- </a-form-item>
- </a-col>
- </a-row>
- <a-form-item v-if="showSubmit">
- <a-button htmlType="submit" >Submit</a-button>
- </a-form-item>
- </a-form>
- <a-form :form="form4" :self-update="true" @submit="handleForm2Submit">
- <a-row class="form-row" :gutter="16">
- <a-col :lg="6" :md="12" :sm="24">
- <a-form-item label="仓库名">
- <a-input
- placeholder="请输入仓库名称"
- v-decorator="[
- 'name',
- {rules: [{ required: true, message: '请输入仓库名称', whitespace: true}]}
- ]" />
- </a-form-item>
- </a-col>
- <a-col :xl="{span: 7, offset: 1}" :lg="{span: 8}" :md="{span: 12}" :sm="24">
- <a-form-item
- label="仓库域名">
- <a-input
- addonBefore="http://"
- addonAfter=".com"
- placeholder="请输入"
- v-decorator="[
- 'url',
- {rules: [{ required: true, message: '请输入仓库域名', whitespace: true}]}
- ]" />
- </a-form-item>
- </a-col>
- <a-col :xl="{span: 9, offset: 1}" :lg="{span: 10}" :md="{span: 24}" :sm="24">
- <a-form-item
- label="仓库管理员">
- <a-select placeholder="请选择管理员" v-decorator="[ 'owner', {rules: [{ required: true, message: '请选择管理员'}]} ]">
- <a-select-option value="王同学">王同学</a-select-option>
- <a-select-option value="李同学">李同学</a-select-option>
- <a-select-option value="黄同学">黄同学</a-select-option>
- </a-select>
- </a-form-item>
- </a-col>
- </a-row>
- <a-row class="form-row" :gutter="16">
- <a-col :lg="6" :md="12" :sm="24">
- <a-form-item
- label="审批人">
- <a-select placeholder="请选择审批员" v-decorator="[ 'approver', {rules: [{ required: true, message: '请选择审批员'}]} ]">
- <a-select-option value="王晓丽">王晓丽</a-select-option>
- <a-select-option value="李军">李军</a-select-option>
- </a-select>
- </a-form-item>
- </a-col>
- <a-col :xl="{span: 7, offset: 1}" :lg="{span: 8}" :md="{span: 12}" :sm="24">
- <a-form-item
- label="生效日期">
- <a-range-picker
- style="width: 100%"
- v-decorator="[
- 'dateRange',
- {rules: [{ required: true, message: '请选择生效日期'}]}
- ]" />
- </a-form-item>
- </a-col>
- <a-col :xl="{span: 9, offset: 1}" :lg="{span: 10}" :md="{span: 24}" :sm="24">
- <a-form-item
- label="仓库类型">
- <a-select
- placeholder="请选择仓库类型"
- v-decorator="[
- 'type',
- {rules: [{ required: true, message: '请选择仓库类型'}]}
- ]" >
- <a-select-option value="公开">公开</a-select-option>
- <a-select-option value="私密">私密</a-select-option>
- </a-select>
- </a-form-item>
- </a-col>
- </a-row>
- <a-form-item v-if="showSubmit">
- <a-button htmlType="submit" >Submit</a-button>
- </a-form-item>
- </a-form>
- <a-form :form="form5" :self-update="true" @submit="handleForm2Submit">
- <a-row class="form-row" :gutter="16">
- <a-col :lg="6" :md="12" :sm="24">
- <a-form-item label="仓库名">
- <a-input
- placeholder="请输入仓库名称"
- v-decorator="[
- 'name',
- {rules: [{ required: true, message: '请输入仓库名称', whitespace: true}]}
- ]" />
- </a-form-item>
- </a-col>
- <a-col :xl="{span: 7, offset: 1}" :lg="{span: 8}" :md="{span: 12}" :sm="24">
- <a-form-item
- label="仓库域名">
- <a-input
- addonBefore="http://"
- addonAfter=".com"
- placeholder="请输入"
- v-decorator="[
- 'url',
- {rules: [{ required: true, message: '请输入仓库域名', whitespace: true}]}
- ]" />
- </a-form-item>
- </a-col>
- <a-col :xl="{span: 9, offset: 1}" :lg="{span: 10}" :md="{span: 24}" :sm="24">
- <a-form-item
- label="仓库管理员">
- <a-select placeholder="请选择管理员" v-decorator="[ 'owner', {rules: [{ required: true, message: '请选择管理员'}]} ]">
- <a-select-option value="王同学">王同学</a-select-option>
- <a-select-option value="李同学">李同学</a-select-option>
- <a-select-option value="黄同学">黄同学</a-select-option>
- </a-select>
- </a-form-item>
- </a-col>
- </a-row>
- <a-row class="form-row" :gutter="16">
- <a-col :lg="6" :md="12" :sm="24">
- <a-form-item
- label="审批人">
- <a-select placeholder="请选择审批员" v-decorator="[ 'approver', {rules: [{ required: true, message: '请选择审批员'}]} ]">
- <a-select-option value="王晓丽">王晓丽</a-select-option>
- <a-select-option value="李军">李军</a-select-option>
- </a-select>
- </a-form-item>
- </a-col>
- <a-col :xl="{span: 7, offset: 1}" :lg="{span: 8}" :md="{span: 12}" :sm="24">
- <a-form-item
- label="生效日期">
- <a-range-picker
- style="width: 100%"
- v-decorator="[
- 'dateRange',
- {rules: [{ required: true, message: '请选择生效日期'}]}
- ]" />
- </a-form-item>
- </a-col>
- <a-col :xl="{span: 9, offset: 1}" :lg="{span: 10}" :md="{span: 24}" :sm="24">
- <a-form-item
- label="仓库类型">
- <a-select
- placeholder="请选择仓库类型"
- v-decorator="[
- 'type',
- {rules: [{ required: true, message: '请选择仓库类型'}]}
- ]" >
- <a-select-option value="公开">公开</a-select-option>
- <a-select-option value="私密">私密</a-select-option>
- </a-select>
- </a-form-item>
- </a-col>
- </a-row>
- <a-form-item v-if="showSubmit">
- <a-button htmlType="submit" >Submit</a-button>
- </a-form-item>
- </a-form>
- <a-divider />
- <a-table
- :columns="columns"
- :dataSource="data"
- :pagination="false"
- :loading="tableLoading"
- >
- <template v-for="(col, i) in ['name', 'workId', 'department']" :slot="col" slot-scope="text, record">
- <a-input
- :key="col"
- v-if="record.editable"
- style="margin: -5px 0"
- :value="text"
- :placeholder="columns[i].title"
- @change="e => handleChange(e.target.value, record.key, col)"
- />
- <template v-else>{{ text }}</template>
- </template>
- <template slot="operation" slot-scope="text, record">
- <template v-if="record.editable">
- <span v-if="record.isNew">
- <a @click="saveRow(record)">添加</a>
- <a-divider type="vertical" />
- <a-popconfirm title="是否要删除此行?" @confirm="remove(record.key)">
- <a>删除</a>
- </a-popconfirm>
- </span>
- <span v-else>
- <a @click="saveRow(record)">保存</a>
- <a-divider type="vertical" />
- <a @click="cancel(record.key)">取消</a>
- </span>
- </template>
- <span v-else>
- <a @click="toggle(record.key)">编辑</a>
- <a-divider type="vertical" />
- <a-popconfirm title="是否要删除此行?" @confirm="remove(record.key)">
- <a>删除</a>
- </a-popconfirm>
- </span>
- </template>
- </a-table>
- <a-button style="width: 100%; margin-top: 16px; margin-bottom: 8px" type="dashed" icon="plus" @click="newMember">新增成员</a-button>
- </a-card>
- </template>
- <script>
- const columns = [
- {
- title: '成员姓名',
- dataIndex: 'name',
- key: 'name',
- width: '20%',
- scopedSlots: { customRender: 'name' }
- },
- {
- title: '工号',
- dataIndex: 'workId',
- key: 'workId',
- width: '20%',
- scopedSlots: { customRender: 'workId' }
- },
- {
- title: '所属部门',
- dataIndex: 'department',
- key: 'department',
- width: '40%',
- scopedSlots: { customRender: 'department' }
- },
- {
- title: '操作',
- key: 'action',
- scopedSlots: { customRender: 'operation' }
- }
- ]
- export default {
- name: 'BigForm',
- data () {
- return {
- showSubmit: true,
- form1: this.$form.createForm(this),
- form2: this.$form.createForm(this),
- form3: this.$form.createForm(this),
- form4: this.$form.createForm(this),
- form5: this.$form.createForm(this),
- tableLoading: false,
- columns,
- data: [{
- key: '1',
- name: '小明',
- workId: '001',
- editable: false,
- department: '行政部'
- },
- {
- key: '2',
- name: '李莉',
- workId: '002',
- editable: false,
- department: 'IT部'
- },
- {
- key: '3',
- name: '王小帅',
- workId: '003',
- editable: false,
- department: '财务部'
- }]
- }
- },
- mounted () {
- // 加 10 个表单行
- new Array(10).fill(0).forEach(() => {
- this.newMember()
- })
- },
- methods: {
- handleForm1Submit (e) {
- e.preventDefault()
- this.form1.validateFields()
- },
- handleForm2Submit (e) {
- e.preventDefault()
- this.form2.validateFields()
- },
- handleChange (value, key, column) {
- const target = this.data.find(item => key === item.key)
- if (target) {
- target[column] = value
- }
- },
- toggle (record) {
- },
- saveRow (record) {
- },
- cancel (key) {
- },
- remove (key) {
- this.data = this.data.filter(item => item.key !== key)
- },
- newMember () {
- const length = this.data.length
- this.data.push({
- key: length === 0 ? '1' : (parseInt(this.data[length - 1].key) + 1).toString(),
- name: '',
- workId: '',
- department: '',
- editable: true,
- isNew: true
- })
- }
- }
- }
- </script>
- <style scoped>
- </style>
|