123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201 |
- <template>
- <el-dialog
- :close-on-click-modal="false"
- :close-on-press-escape="false"
- :title="title"
- :append-to-body="true"
- :visible.sync="isVisible"
- :width="width"
- top="50px"
- >
- <el-form ref="form" :model="tenant" :rules="rules" label-position="right" label-width="130px">
- <el-form-item :label='$t("lineSide.form.name")' prop="name">
- <el-input v-model="tenant.name" :placeholder='$t("common.pleaseEnter")'/>
- </el-form-item>
- <el-form-item :label='$t("lineSide.form.status")' prop="status">
- <template>
- <el-radio v-model="tenant.status" label="1">{{$t("common.show")}}</el-radio>
- <el-radio v-model="tenant.status" label="0">{{$t("common.hide")}}</el-radio>
- </template>
- </el-form-item>
- </el-form>
- <div slot="footer" class="dialog-footer">
- <el-button plain type="warning" @click="isVisible = false">{{ $t('common.cancel') }}</el-button>
- <el-button plain type="primary" :disabled="confirmDisabled" @click="submitForm">{{ $t('common.confirm') }}</el-button>
- </div>
- </el-dialog>
- </template>
- <script>
- // 【仓库类型管理】-API
- import warehouseTypeMgrApi from "@/api/modelingCenter/warehouseTypeMgr"
- export default {
- name: 'TenantEdit',
- props: {
- dialogVisible: {
- type: Boolean,
- default: false
- },
- title: {
- type: String,
- default: ''
- }
- },
- data () {
- return {
- type: 'add',
- tenant: this.initTenant(),
- screenWidth: 0,
- width: this.initWidth(),
- confirmDisabled: false,
- dicts:{
- NATION: {}
- },
- roles: [],
- rules: {
- name: [
- { required: true, message: this.$t("rules.require"), trigger: 'blur' }
- ]
- }
- }
- },
- computed: {
- isVisible: {
- get () {
- return this.dialogVisible
- },
- set () {
- this.close()
- this.reset()
- }
- }
- },
- mounted () {
- window.onresize = () => {
- return (() => {
- this.width = this.initWidth()
- })()
- }
- },
- methods: {
- initTenant () {
- return {
- id: '',
- name: '',
- status: '1'
- }
- },
- initWidth () {
- this.screenWidth = document.body.clientWidth
- if (this.screenWidth < 991) {
- return '90%'
- } else if (this.screenWidth < 1400) {
- return '45%'
- } else {
- return '800px'
- }
- },
- setTenant (val, dicts) {
- if(val){
- this.tenant = { ...val }
- }
- // 字典表
- this.dicts = dicts
- },
- close () {
- this.$emit('close')
- },
- reset () {
- // 先清除校验,再清除表单,不然有奇怪的bug
- this.$refs.form.clearValidate()
- this.$refs.form.resetFields()
- this.tenant = this.initTenant()
- },
- submitForm () {
- this.$refs.form.validate((valid) => {
- if (valid) {
- this.confirmDisabled = true
- if (this.type === 'add') {
- this.save()
- } else {
- this.update()
- }
- } else {
- return false
- }
- })
- },
- save () {
- warehouseTypeMgrApi.save(this.tenant)
- .then((response) => {
- const res = response.data
- if (res.isSuccess) {
- this.isVisible = false
- this.$message({
- message: this.$t('tips.createSuccess'),
- type: 'success'
- })
- // 通知列表
- this.$emit("success");
- // 通知列表-并关闭弹出框
- this.$emit("close");
- }
- }).finally(() => {
- this.confirmDisabled = false
- return true
- })
- },
- update () {
- warehouseTypeMgrApi.update(this.tenant)
- .then((response) => {
- const res = response.data
- if (res.isSuccess) {
- this.isVisible = false
- this.$message({
- message: this.$t('tips.updateSuccess'),
- type: 'success'
- })
- // 通知列表
- this.$emit("success");
- // 通知列表-并关闭弹出框
- this.$emit("close");
- }
- }).finally(() => {
- this.confirmDisabled = false
- return true
- })
- }
- }
- }
- </script>
- <style lang="scss" >
- .avatar-uploader .el-upload {
- border: 1px dashed #d9d9d9;
- border-radius: 6px;
- cursor: pointer;
- position: relative;
- overflow: hidden;
- }
- .avatar-uploader .el-upload:hover {
- border-color: #409eff;
- }
- .avatar-uploader-icon {
- font-size: 28px;
- color: #8c939d;
- width: 100px;
- height: 100px;
- line-height: 100px;
- text-align: center;
- }
- .avatar {
- width: 100px;
- height: 100px;
- display: block;
- }
- .checkUsed{
- display: inline-block;
- margin-left: 10px;
- color: #1890ff;
- }
- </style>
|