123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396 |
- <template xmlns:v-slot="http://www.w3.org/1999/XSL/Transform">
- <div>
- <el-dialog
- :title="title"
- :close-on-click-modal="false"
- draggable
- width="1200px"
- @close="close"
- append-to-body
- @keyup.enter.native="doSubmit"
- v-model="visible">
- <el-form :model="inputForm" ref="inputForm" v-loading="loading" :class="method==='view'?'readonly':''" :disabled="status === 'audit' || status === 'taskFormDetail'||method==='view'"
- label-width="160px" @submit.native.prevent>
- <el-divider content-position="left"><i class="el-icon-document"></i>
- 基本信息
- </el-divider>
- <el-row :gutter="15">
- <el-col :span="12">
- <el-form-item label="签章描述" prop="signatureName"
- :rules="[{required: true, message:'签章描述不能为空', trigger:'blur'}
- ]">
- <el-input placeholder="请填写签章描述" v-model="inputForm.signatureName" clearable></el-input>
- </el-form-item>
- </el-col>
- <el-col :span="12">
- <el-form-item label="签章编号" prop="number"
- :rules="[
- ]">
- <el-input :disabled="true" placeholder="签章编号自动生成" v-model="inputForm.number" clearable></el-input>
- </el-form-item>
- </el-col>
- <el-col :span="12">
- <el-form-item label="签章类型" prop="signatureType"
- :rules="[
- {required: true, message:'签章类型不能为空', trigger:'change'}
- ]">
- <el-select v-model="inputForm.signatureType" placeholder="请选择" style="width:100%;" clearable>
- <el-option
- v-for="item in $dictUtils.getDictList('signature_daily')"
- :key="item.value"
- :label="item.label"
- :value="item.value">
- </el-option>
- </el-select>
- </el-form-item>
- </el-col>
- <el-col :span="12">
- <el-form-item label="创建人" prop="createName"
- :rules="[
- ]">
- <el-input :disabled="true" placeholder="请填写创建人" v-model="inputForm.createName" clearable></el-input>
- </el-form-item>
- </el-col>
- <el-col :span="12">
- <el-form-item label="所属部门" prop="officeName"
- :rules="[
- ]">
- <el-input :disabled="true" placeholder="请填写所属部门" v-model="inputForm.officeName" clearable></el-input>
- </el-form-item>
- </el-col>
- <el-col :span="12">
- <el-form-item label="创建日期" prop="createTime"
- :rules="[
- ]">
- <el-input :disabled="true" placeholder="请填写创建日期" v-model="inputForm.createTime" clearable></el-input>
- </el-form-item>
- </el-col>
- <el-col :span="24">
- <el-form-item label="备注" prop="remarks"
- :rules="[
- ]">
- <el-input maxlength="500" type="textarea" placeholder="请填写备注" v-model="inputForm.remarks" show-word-limit></el-input>
- </el-form-item>
- </el-col>
- </el-row>
- </el-form>
- <!-- 附件-->
- <UpLoadComponent ref="uploadComponent"></UpLoadComponent>
- <UpLoadComponent2 ref="uploadComponent2"></UpLoadComponent2>
- <template #footer>
- <span class="dialog-footer">
- <el-button @click="close()" icon="el-icon-circle-close">关闭</el-button>
- <el-button type="primary" v-if="method != 'view'" @click="doSubmit()" icon="el-icon-circle-check" v-noMoreClick>确定</el-button>
- </span>
- </template>
- </el-dialog>
- </div>
- </template>
- <script>
- import SignatureDailyService from '@/api/cw/signatureDaily/SignatureDailyService'
- import UpLoadComponent from '@/views/common/SignatureUpLoadComponent'
- import UpLoadComponent2 from '@/views/common/SignatureUpLoadComponent'
- export default {
- props: {
- businessId: {
- type: String,
- default: ''
- },
- formReadOnly: {
- type: Boolean,
- default: false
- },
- status: {
- type: String,
- default: ''
- }
- },
- data() {
- return {
- bj1: '',
- title: '',
- method: '',
- visible: false,
- loading: false,
- dialogFormVisible: false,
- inputForm: {
- id: '',
- signatureName:'',
- signatureType:'',
- number:'',
- createName:'',
- officeName:'',
- createTime:'',
- remarks: '',
- name: '',
- status: '',
- files: [],
- signatureFiles:[]
- },
- keyWatch: '',
- }
- },
- SignatureDailyService: null,
- created() {
- this.signatureDailyService = new SignatureDailyService()
- },
- mounted() {
- },
- components: {
- UpLoadComponent,
- UpLoadComponent2,
- },
- computed: {
- bus: {
- get() {
- this.$refs.uploadComponent.setDividerName('附件')
- this.$refs.uploadComponent2.setDividerName('附件')
- return this.businessId
- },
- set(val) {
- this.businessId = val
- },
- }
- },
- watch: {
- 'keyWatch': {
- handler(newVal) {
- if (this.commonJS.isNotEmpty(this.bus)) {
- this.init('', this.bus)
- } else {
- this.$nextTick(() => {
- this.$refs.inputForm.resetFields()
- })
- }
- }
- },
- 'loading': {
- handler(newVal) {
- this.$emit('changeLoading', newVal)
- this.$refs.uploadComponent.changeLoading(newVal)
- this.$refs.uploadComponent2.changeLoading(newVal)
- }
- }
- },
- methods: {
- getKeyWatch(keyWatch) {
- this.keyWatch = keyWatch
- },
- init(method, id) {
- this.importVisible = false
- this.method = method
- this.inputForm = {
- id: '',
- signatureName:'',
- signatureType:'',
- number:'',
- createName:'',
- officeName:'',
- createTime:'',
- remarks: '',
- name: '',
- status: '',
- files: [],
- signatureFiles:[]
- }
- if (method === 'add') {
- this.title = `新建日常签章`
- } else if (method === 'edit') {
- this.title = '修改日常签章'
- } else if (method === 'view') {
- this.title = '查看日常签章信息'
- }
- this.inputForm.id = id
- this.visible = true
- this.loading = false
- this.$nextTick(() => {
- this.$refs.inputForm.resetFields()
- this.loading = true
- this.signatureDailyService.findById(this.inputForm.id).then((data) => {
- this.$refs.uploadComponent.clearUpload()
- this.$refs.uploadComponent2.clearUpload()
- this.inputForm = this.recover(this.inputForm, data)
- this.inputForm = JSON.parse(JSON.stringify(this.inputForm))
- if (this.commonJS.isEmpty(this.inputForm.createName)) {
- this.inputForm.createName = this.$store.state.user.name
- this.inputForm.officeName = this.$store.state.user.office.name
- }
- if (this.commonJS.isEmpty(this.inputForm.createTime)) {
- this.inputForm.createTime = this.moment(new Date()).format("YYYY-MM-DD")
- }
- if (this.commonJS.isEmpty(this.inputForm.files) || this.inputForm.files.length === 0) {
- this.inputForm.files = []
- }
- if (this.status === 'audit' || this.status === 'taskFormDetail') {
- method = 'view'
- }
- if (this.commonJS.isEmpty(this.inputForm.signatureFiles) || this.inputForm.signatureFiles.length === 0) {
- this.inputForm.signatureFiles = []
- }
- console.log('this.inputForm',this.inputForm)
- this.$refs.uploadComponent.newUpload(method, this.inputForm.files, 'signatureDaily')
- this.$refs.uploadComponent2.newUpload(method, this.inputForm.signatureFiles, 'signatureDaily')
- this.loading = false
- })
- })
- },
- saveForm(callback) {
- this.doSubmit('save', callback)
- },
- startForm(callback) {
- this.loading = true
- if (this.commonJS.isNotEmpty(this.inputForm.id)) {
- this.signatureDailyService.findById(this.inputForm.id).then((data) => {
- if (data.status !== '0' && data.status !== '1' && data.status !== '3') { // 审核状态不是“未发起”或“暂存”或“撤回”,就弹出提示
- this.loading = false
- this.$message.error('任务数据已发生改变或不存在,请在待办任务中确认此任务是否存在')
- throw new Error()
- } else {
- this.doSubmit('start', callback)
- }
- })
- } else {
- this.doSubmit('start', callback)
- }
- },
- async agreeForm(callback) {
- console.log('进入方法')
- this.loading = true
- await this.signatureDailyService.findById(this.inputForm.id).then((data) => {
- if (data.status !== '2') { // status的值不等于“审核中”,就弹出提示
- this.loading = false
- this.$message.error('任务数据已发生改变或不存在,请在待办任务中确认此任务是否存在')
- throw new Error()
- } else {
- this.doSubmit('agree', callback)
- }
- })
- },
- reapplyForm(callback) {
- this.loading = true
- this.signatureDailyService.findById(this.inputForm.id).then((data) => {
- if (data.status !== '4') { // 审核状态不是“驳回”,就弹出提示
- this.loading = false
- this.$message.error('任务数据已发生改变或不存在,请在待办任务中确认此任务是否存在')
- throw new Error('任务数据已发生改变或不存在,请在待办任务中确认此任务是否存在')
- } else {
- this.doSubmit('reapply', callback)
- }
- })
- },
- // 表单提交
- async doSubmit(status, callback) {
- this.loading = true
- this.$refs['inputForm'].validate((valid) => {
- if (valid) {
- this.loading = true
- this.inputForm.files = this.$refs.uploadComponent.getDataList()
- if (this.commonJS.isEmpty(this.inputForm.files) || this.inputForm.files.length === 0) {
- this.loading = false
- this.$message.error('请上传签章附件')
- throw new Error()
- }
- this.signatureDailyService.saveForm(this.inputForm).then((data) => {
- this.$refs.inputForm.resetFields()
- this.close()
- this.$emit('refreshDataList')
- this.loading = false
- }).catch(() => {
- this.loading = false
- })
- } else {
- this.loading = false
- }
- })
- },
- close() {
- this.$refs.uploadComponent.clearUpload()
- this.$refs.inputForm.resetFields()
- this.inputForm = {
- id: '',
- signatureName:'',
- signatureType:'',
- number:'',
- createName:'',
- officeName:'',
- createTime:'',
- remarks: '',
- name: '',
- status: '',
- files: [],
- }
- this.visible = false
- },
- async updateStatusById(type, callback) {
- this.loading = true
- if (await this.$refs.uploadComponent.checkProgress()) {
- this.loading = false
- throw new Error()
- } else {
- if (type === 'reject' || type === 'reback') {
- this.signatureDailyService.findById(this.inputForm.id).then((data) => {
- if (data.status !== '2') { // status的值不等于“审核中”,就弹出提示
- this.loading = false
- this.$message.error('任务数据已发生改变或不存在,请在待办任务中确认此任务是否存在')
- throw new Error()
- } else {
- // if (type === 'agree') {
- // // 同意
- // this.inputForm.status = '5'
- // }
- if (type === 'reject') {
- // 驳回
- this.inputForm.status = '4'
- }
- if (type === 'reback') {
- // 撤回
- this.inputForm.status = '3'
- }
- if (type === 'reject' || type === 'reback') {
- let param = {status: this.inputForm.status, id: this.inputForm.id}
- this.signatureDailyService.updateStatusById(param).then(() => {
- this.loading = false
- callback()
- })
- }
- }
- })
- } else if (type === 'hold') {
- this.signatureDailyService.findById(this.inputForm.id).then((data) => {
- if (data.status !== '4') { // status的值不等于“驳回”就弹出提示
- this.loading = false
- this.$message.error('任务数据已发生改变或不存在,请在待办任务中确认此任务是否存在')
- throw new Error()
- } else {
- // 终止
- let param = {status: '1', id: this.inputForm.id}
- this.signatureDailyService.updateStatusById(param).then(() => {
- this.loading = false
- callback()
- })
- }
- })
- }
- }
- },
- }
- }
- </script>
- <style scoped>
- /deep/ .el-input-number .el-input__inner {
- text-align: left;
- }
- /deep/ .vxe-footer--row .vxe-footer--column:nth-child(1) .vxe-cell--item {
- font-weight:700;
- }
- </style>
|