123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310 |
- <template>
- <div id="addAddress">
- <el-form :model="basicForm" :rules="basicRules" ref="basic" label-width="auto">
- <el-row :gutter="10">
- <el-col :span="1.5">
- <el-form-item label="收货仓库编码">
- <el-input
- v-model="basicForm.code"
- size="small"
- disabled
- clearable
- style="width: 200px"
- />
- </el-form-item>
- </el-col>
- <el-col :span="1.5">
- <el-form-item label="收货仓库名称">
- <el-input
- v-model="basicForm.name"
- size="small"
- :disabled="disable"
- clearable
- style="width: 200px"
- />
- </el-form-item>
- </el-col>
- <el-col :span="1.5">
- <el-form-item label="仓库档案名称">
- <el-select size="small" v-model="basicForm.warehouse" :disabled="disable" @focus="chooseRefer('WAREHOUSE_PARAM', true, '仓库档案名称')" style="width: 200px">
- <el-option v-for="item in houseOptions" :key="item.id" :label="item.name" :value="item.id" />
- </el-select>
- </el-form-item>
- </el-col>
- <el-col :span="1.5">
- <el-form-item label="仓库属性">
- <el-select :disabled="disable" v-model="basicForm.warehouseProperty" size="small" style="width: 200px">
- <el-option v-for="dict in dict.type.sys_warehouse_attribute" :key="dict.value" :label="dict.label" :value="dict.value">
- </el-option>
- </el-select>
- </el-form-item>
- </el-col>
- <el-col :span="1.5">
- <el-form-item label="地址信息">
- <el-input
- v-model="basicForm.address"
- size="small"
- :disabled="disable"
- clearable
- style="width: 200px"
- />
- </el-form-item>
- </el-col>
- <el-col :span="1.5">
- <el-form-item label="联系人">
- <el-select size="small" v-model="basicForm.contacts" :disabled="disable" @focus="chooseRefer('CONTACTS_PARAM', true, '联系人')" style="width: 200px">
- <el-option v-for="item in contactsOptions" :key="item.id" :label="item.name" :value="item.code" />
- </el-select>
- </el-form-item>
- </el-col>
- <el-col :span="1.5">
- <el-form-item label="联系人电话">
- <el-input
- v-model="basicForm.contactsPhone"
- size="small"
- :disabled="disable"
- clearable
- style="width: 200px"
- />
- </el-form-item>
- </el-col>
- <el-col :span="1.5">
- <el-form-item label="物料分类">
- <el-select
- v-model="basicForm.materialClassify"
- size="small"
- :disabled="disable"
- clearable
- @focus="chooseTreeRefer('MATERIALCLASSIFY_PARAM', false, '物料分类')"
- style="width: 200px"
- >
- <el-option v-for="item in classOptions" :key="item.id" :label="item.name" :value="item.id" />
- </el-select>
- </el-form-item>
- </el-col>
- <el-col :span="1.5">
- <el-form-item label="启用">
- <el-select v-model="basicForm.status" size="small" style="width: 200px" clearable :disabled="disable">
- <el-option
- v-for="item in options"
- :key="item.value"
- :label="item.label"
- :value="item.value">
- </el-option>
- </el-select>
- </el-form-item>
- </el-col>
- <el-col :span="1.5">
- <el-form-item label="同步状态">
- <el-select disabled v-model="basicForm.sendStatus" size="small" style="width: 200px">
- <el-option
- v-for="item in options2"
- :key="item.value"
- :label="item.label"
- :value="item.value">
- </el-option>
- </el-select>
- </el-form-item>
- </el-col>
- <el-col :span="1.5">
- <el-form-item label="备注">
- <el-input
- v-model="basicForm.remark"
- size="small"
- :disabled="disable"
- clearable
- style="width: 200px"
- />
- </el-form-item>
- </el-col>
- </el-row>
- </el-form>
- <div class="btn_group">
- <el-col :span="1.5" style="margin: 0 10px;">
- <el-button type="primary" size="small" plain @click="save" v-if="pageStu == 'add' || pageStu == 'edit'">保存</el-button>
- </el-col>
- <!-- <el-col :span="1.5" style="margin: 0 10px;">
- <el-button type="primary" size="small" plain @click="submit" v-if="pageStu == 'edit'">提交</el-button>
- </el-col> -->
- <el-col :span="1.5">
- <el-button size="small" plain @click="back">返回</el-button>
- </el-col>
- </div>
- <Refers ref="refer" @doSubmit="selectionsToInput" :single="true"/>
- <TreeRefers ref="tree" @doSubmit="selectionsToInput2" :single="true"/>
- </div>
- </template>
- <script>
- import Refers from '@/components/Refers/refers.vue'
- import TreeRefers from '@/components/Refers/treeRefer.vue'
- import {addAddress, getAddressDetail, editAddress} from '@/api/purchase/deliveryAddress.js'
- // 用于回显参照框数据
- import { getRefer } from '@/api/purchase/basic.js'
- export default {
- name: 'addAddress',
- dicts: ['sys_warehouse_attribute'],
- props: ['pageStu','row', 'disable'],
- components: {
- Refers,
- TreeRefers
- },
- model: {
- prop: 'isList',
- event: 'jugislist'
- },
- data() {
- return {
- basicForm: {
- code: '',
- name: '',
- warehouse: '',
- warehouseName: '',
- warehouseProperty: '',
- address: '',
- contacts: '',
- contactsName: '',
- contactsPhone: '',
- materialClassify: '',
- materialClassifyName: '',
- status: '',
- sendStatus: '2',
- remark: '',
- },
- referCondition: {
- type: '',
- isPage: true,
- title: ''
- },
- options: [{
- value: 'Y', label: '启用',
- }, {
- value: 'N', label: '停用'
- }],
- options2: [{
- value: 'Y', label: '已同步',
- }, {
- value: 'N', label: '未同步'
- }],
- houseOptions: [],
- contactsOptions: [],
- classOptions: [],
- basicRules: {}
- }
- },
- mounted() {
- if(this.pageStu == 'check') {
- console.log('数据', this.row)
- this.getDetails(this.row)
- } else if(this.pageStu == 'edit') {
- this.getDetails(this.row)
- }
- },
- methods: {
- save() {
- if(this.pageStu == 'add') {
- addAddress(this.basicForm).then(res => {
- if (res.code === 200) {
- this.$modal.msgSuccess("保存成功");
- this.back()
- }
- })
- } else if (this.pageStu == 'edit') {
- editAddress(this.basicForm).then(res => {
- if (res.code === 200) {
- this.$modal.msgSuccess("编辑成功");
- this.back()
- }
- })
- }
- },
- submit() {},
- back() {
- this.$emit('jugislist', true)
- let queryParams = {
- pageNum: 1,
- pageSize: 10
- }
- this.$emit('refresh', queryParams)
- },
- // 如果需要回显则调用详情接口
- getDetails(row) {
- getAddressDetail(row.id).then(res => {
- if (res.code === 200) {
- this.basicForm = res.data
- if (this.basicForm.warehouse) { this.reBackRefer('WAREHOUSE_PARAM', this.basicForm.warehouse) }
- if (this.basicForm.contacts) { this.reBackRefer('CONTACTS_PARAM', this.basicForm.contacts) }
- if (this.basicForm.materialClassify) { this.reBackRefer('MATERIALCLASSIFY_PARAM', this.basicForm.materialClassify) }
- }
- })
- },
- chooseRefer(type, isPage, title) {
- this.referCondition.type = type
- this.referCondition.isPage = isPage
- this.referCondition.title = title
- this.$refs.refer.init(this.referCondition)
- },
- selectionsToInput(selection) {
- if (this.referCondition.type == 'WAREHOUSE_PARAM') {
- this.houseOptions = selection
- this.basicForm.warehouseName = selection[0].name
- this.basicForm.name = selection[0].name
- this.basicForm.warehouse = selection[0].id
- }
- if (this.referCondition.type == 'CONTACTS_PARAM') {
- this.contactsOptions = selection
- this.basicForm.contactsName = selection[0].name
- this.basicForm.contacts = selection[0].code
- }
- },
- chooseTreeRefer(type, isPage, title) {
- this.referCondition.type = type
- this.referCondition.isPage = isPage
- this.referCondition.title = title
- this.$refs.tree.init(this.referCondition)
- },
- selectionsToInput2(selection) {
- this.classOptions.push(selection)
- this.basicForm.materialClassify = selection.id
- this.basicForm.materialClassifyName = selection.name
- },
- // 回显参照框 加title解决判断重复提交问题
- reBackRefer(type, id, title) {
- getRefer({ type: type, id: id, title: title }).then(res => {
- if (type == 'WAREHOUSE_PARAM') {
- this.houseOptions = res.rows
- }
- if (type == 'CONTACTS_PARAM') {
- this.contactsOptions = res.rows
- }
- if (type == 'MATERIALCLASSIFY_PARAM') {
- this.classOptions = res.rows
- }
- })
- },
- }
- }
- </script>
- <style lang="scss" scoped>
- .btn_group {
- width: 100%;
- margin: 20px 0;
- display: flex;
- justify-content: center;
- }
- </style>
|