| | |
| | | > |
| | | <a-input |
| | | placeholder="请输申请单编码" |
| | | :disabled="disableSubmit" |
| | | v-decorator="['num', validatorRules.num]" |
| | | /> |
| | | </a-form-item> |
| | |
| | | > |
| | | <a-select |
| | | :placeholder="'请选择领用部门'" |
| | | :disabled="disableSubmit" |
| | | :options="this.departs" |
| | | style="width: 100%" |
| | | v-decorator="['departId', validatorRules.departId]" |
| | |
| | | </a-spin> |
| | | <a-button |
| | | type="primary" |
| | | :disabled="disableSubmit" |
| | | :style="{ marginRight: '8px',marginBottom:'8px' }" |
| | | :loading="confirmLoading" |
| | | @click="selectSparePartInventory()" |
| | |
| | | <div :key="col.dataIndex"> |
| | | <a-input-number |
| | | :value="text" |
| | | |
| | | v-if="col.dataIndex == 'outboundMainQuantity'" |
| | | :min="0" |
| | | :disabled="disableSubmit" |
| | | :max="record.mainQuantity" |
| | | @change="(e)=>handleChange(e, record.key, col, index)" |
| | | /> |
| | |
| | | <span |
| | | slot="action" |
| | | slot-scope="text, record, index" |
| | | |
| | | > |
| | | <a-popconfirm |
| | | |
| | | title="确定删除吗?" |
| | | :disabled="disableSubmit" |
| | | @confirm="() => handleDelete(text,record, index)" |
| | | > |
| | | <a>删除</a> |
| | |
| | | |
| | | <a-button |
| | | @click="handleOk()" |
| | | :disabled="disableSubmit" |
| | | type="primary" |
| | | :loading="confirmLoading" |
| | | >确定</a-button> |
| | |
| | | }, |
| | | data() { |
| | | return { |
| | | disabled:false, |
| | | departs: [], |
| | | columns: [ |
| | | { |