123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178 |
- <template>
- <div ref="container">
- <a-modal
- :title="title"
- :width="1000"
- :visible="visible"
- :confirm-loading="confirmLoading"
- :getContainer="() => $refs.container"
- :maskStyle="{ top: '93px', left: '154px' }"
- :wrapClassName="wrapClassNameInfo()"
- :mask="isDesktop()"
- :maskClosable="false"
- @ok="handleOk"
- @cancel="handleCancel"
- cancelText="取消"
- okText="保存"
- style="top: 20%; height: 45%"
- >
- <a-spin :spinning="confirmLoading">
- <a-form :form="form">
- <a-row class="form-row" :gutter="24">
- <a-col :md="8" :sm="24">
- <a-form-item :labelCol="labelCol" :wrapperCol="wrapperCol" label="颜色">
- <a-input placeholder="请输入颜色" v-decorator.trim="['color']" />
- </a-form-item>
- </a-col>
- <a-col :md="8" :sm="24">
- <a-form-item :labelCol="labelCol" :wrapperCol="wrapperCol" label="基础重量">
- <a-input-number style="width: 100%" placeholder="请输入基础重量(kg)" v-decorator.trim="['weight']" />
- </a-form-item>
- </a-col>
- <a-col :md="8" :sm="24">
- <a-form-item :labelCol="labelCol" :wrapperCol="wrapperCol" label="保质期">
- <a-input-number style="width: 100%" placeholder="请输入保质期(天)" v-decorator.trim="['expiryNum']" />
- </a-form-item>
- </a-col>
- <a-col :md="8" :sm="24">
- <a-form-item :labelCol="labelCol" :wrapperCol="wrapperCol" label="类别">
- <a-tree-select
- style="width: 100%"
- :dropdownStyle="{ maxHeight: '200px', overflow: 'auto' }"
- allow-clear
- :treeData="categoryTree"
- v-decorator="['categoryId']"
- placeholder="请选择类别"
- >
- </a-tree-select>
- </a-form-item>
- </a-col>
- <a-col :md="8" :sm="24">
- <a-form-item :labelCol="labelCol" :wrapperCol="wrapperCol" label="序列号">
- <a-select placeholder="有无序列号" v-decorator="['enableSerialNumber']">
- <a-select-option value="1">有</a-select-option>
- <a-select-option value="0">无</a-select-option>
- </a-select>
- </a-form-item>
- </a-col>
- <a-col :md="8" :sm="24">
- <a-form-item :labelCol="labelCol" :wrapperCol="wrapperCol" label="批号">
- <a-select placeholder="有无批号" v-decorator="['enableBatchNumber']">
- <a-select-option value="1">有</a-select-option>
- <a-select-option value="0">无</a-select-option>
- </a-select>
- </a-form-item>
- </a-col>
- <a-col :md="8" :sm="24">
- <a-form-item :labelCol="labelCol" :wrapperCol="wrapperCol" label="备注">
- <a-textarea :rows="1" placeholder="请输入备注" v-decorator="['remark']" style="margin-top: 8px" />
- </a-form-item>
- </a-col>
- </a-row>
- </a-form>
- </a-spin>
- </a-modal>
- </div>
- </template>
- <script>
- import { queryMaterialCategoryTreeList, batchUpdateMaterial } from '@/api/api'
- import { mixinDevice } from '@/utils/mixin'
- export default {
- name: 'BatchSetInfoModal',
- mixins: [mixinDevice],
- data() {
- return {
- title: '批量编辑',
- visible: false,
- categoryTree: [],
- materialIds: '',
- model: {},
- labelCol: {
- xs: { span: 24 },
- sm: { span: 5 },
- },
- wrapperCol: {
- xs: { span: 24 },
- sm: { span: 16 },
- },
- confirmLoading: false,
- form: this.$form.createForm(this),
- }
- },
- created() {},
- methods: {
- loadTreeData() {
- let that = this
- let params = {}
- params.id = ''
- queryMaterialCategoryTreeList(params).then((res) => {
- if (res) {
- that.categoryTree = []
- for (let i = 0; i < res.length; i++) {
- let temp = res[i]
- that.categoryTree.push(temp)
- }
- }
- })
- },
- edit(ids) {
- this.materialIds = ids
- this.form.resetFields()
- this.model = Object.assign({}, '')
- this.loadTreeData()
- this.visible = true
- },
- close() {
- this.$emit('close')
- this.visible = false
- },
- handleOk() {
- const that = this
- // 触发表单验证
- this.form.validateFields((err, values) => {
- if (!err) {
- let formData = Object.assign(this.model, values)
- if (JSON.stringify(formData) === '{}') {
- that.$message.warning('抱歉,请输入要批量编辑的内容!')
- return
- }
- if (formData.enableSerialNumber === '1' && formData.enableBatchNumber === '1') {
- that.$message.warning('抱歉,序列号和批号只能选择一项!')
- return
- }
- let idList = that.materialIds ? that.materialIds.split(',') : []
- that.$confirm({
- title: '确认操作',
- content: '是否操作选中的' + idList.length + '条数据?',
- onOk: function () {
- that.confirmLoading = true
- let paramObj = {
- ids: that.materialIds,
- material: JSON.stringify(formData),
- }
- batchUpdateMaterial(paramObj)
- .then((res) => {
- if (res.code === 200) {
- that.$emit('ok')
- } else {
- that.$message.warning(res.data.message)
- }
- })
- .finally(() => {
- that.confirmLoading = false
- that.close()
- })
- },
- })
- }
- })
- },
- handleCancel() {
- this.close()
- },
- },
- }
- </script>
- <style scoped></style>
|