<template>
|
|
<div >
|
|
<!-- 归档弹窗 -->
|
|
<el-dialog :title="$t('page.business.resource.sj.guidang')" :visible.sync="open" width="500px" append-to-body :close-on-click-modal="false">
|
|
<el-form ref="form" :model="form" :rules="rules" label-width="120px">
|
|
<el-row>
|
|
<el-col :span="24">
|
|
<el-form-item :label="$t('form.qmyy')" prop="qmyy">
|
|
<el-input type="text" :value="form.qmyy" maxlength="50" disabled
|
|
:placeholder="$t('form.placeholderInput')" />
|
|
</el-form-item>
|
|
</el-col>
|
|
</el-row>
|
|
<el-row>
|
|
<el-col :span="24">
|
|
<el-form-item :label="$t('form.remark')" prop="remark">
|
|
<el-input type="textarea" v-model="form.remark" :rows="2" maxlength="500"
|
|
:placeholder="$t('form.placeholderInput')">
|
|
</el-input>
|
|
</el-form-item>
|
|
</el-col>
|
|
</el-row>
|
|
<el-row>
|
|
<el-col :span="24">
|
|
<el-form-item :label="$t('form.signer')">
|
|
<el-input type="text" v-model="nickName" maxlength="50" disabled
|
|
:placeholder="$t('form.placeholderInput')" />
|
|
</el-form-item>
|
|
</el-col>
|
|
</el-row>
|
|
<el-row>
|
|
<el-col :span="24">
|
|
<el-form-item :label="$t('form.password')" prop="qmrmm">
|
|
<el-input type="password" v-model="form.qmrmm" maxlength="20" :placeholder="$t('form.placeholderInput')" />
|
|
</el-form-item>
|
|
</el-col>
|
|
</el-row>
|
|
</el-form>
|
|
<div slot="footer" class="dialog-footer">
|
|
<el-button type="primary" @click="save">{{ $t('form.confirm') }}</el-button>
|
|
<el-button @click="cancel">{{ $t('form.cancel') }}</el-button>
|
|
</div>
|
|
</el-dialog>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import { sj_gd, sj_plgd } from "@/api/business/sj/sj"
|
|
import { mapGetters } from 'vuex'
|
|
import SelectList from "./SelectList";
|
|
|
|
export default {
|
|
name: "SjGd",
|
|
components: { SelectList },
|
|
data() {
|
|
return {
|
|
isBatch: false,
|
|
ids: [],
|
|
selectList: [],
|
|
open: false,
|
|
form: {},
|
|
rules: {
|
|
qmrmm: [{
|
|
required: true,
|
|
message: ' ',
|
|
trigger: 'blur'
|
|
}]
|
|
}
|
|
}
|
|
},
|
|
computed: {
|
|
...mapGetters([
|
|
'nickName'
|
|
]),
|
|
},
|
|
created() {
|
|
},
|
|
methods: {
|
|
showBatch(val) {
|
|
this.reset()
|
|
this.isBatch = true
|
|
this.form.ids = val.map(item => item.id)
|
|
this.selectList = val
|
|
this.open = true
|
|
},
|
|
cancel() {
|
|
this.open = false
|
|
},
|
|
reset() {
|
|
this.form = {
|
|
id: null,
|
|
ids: null,
|
|
mc: null,
|
|
bh: null,
|
|
qmyy: '申请归档',
|
|
sdrmm: null
|
|
}
|
|
this.resetForm("form")
|
|
},
|
|
show(row) {
|
|
this.reset()
|
|
this.isBatch = false
|
|
this.form.ids = []
|
|
this.selectList = []
|
|
this.form.id = row.id
|
|
this.form.mc = row.mc
|
|
this.form.bh = row.bh
|
|
this.open = true
|
|
},
|
|
save() {
|
|
this.$refs["form"].validate(valid => {
|
|
if (valid) {
|
|
if (this.isBatch) {
|
|
sj_plgd(this.form).then(response => {
|
|
this.open = false
|
|
this.$emit('callback')
|
|
})
|
|
} else {
|
|
sj_gd(this.form).then(response => {
|
|
this.open = false
|
|
this.$emit('callback')
|
|
})
|
|
}
|
|
|
|
}
|
|
})
|
|
}
|
|
}
|
|
}
|
|
</script>
|