123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124 |
- <template>
- <!-- 减签审批弹窗 -->
- <el-dialog v-model="reviewVisibleDialog" title="审批减签" width="700" destroy-on-close>
- <el-form ref="formRef" v-loading="uploadLoading" label-position="top" element-loading-text="图片上传中..." :model="form" label-width="80px">
- <el-form-item label="给谁减签" prop="review" :rules="[{ required: true, message: '请选择减签人员' }]">
- <el-select v-model="form.deliverTo" placeholder="请选择减签人员">
- <el-option v-for="item in options" :key="item.value" :label="item.label" :value="item.value" />
- </el-select>
- </el-form-item>
- <el-form-item label="审批意见" prop="review">
- <el-input v-model="form.review" type="textarea" placeholder="请输入内容" maxlength="64" show-word-limit> </el-input>
- </el-form-item>
- <el-form-item prop="attachment" label="附件" class="example-img-box">
- <!--'.docx', '.doc', '.pptx', '.ppt', '.xlsx', '.xls', '.zip', '.csv', '.pdf', '.png', '.jpg' 因前端不支持图片以外格式,所以注释 -->
- <FileUpload
- v-model="form.attachment"
- source="project"
- return="array"
- :limit="5"
- :file-size="10"
- :accept="['.png', '.jpg']"
- @success="clearValidate"
- />
- </el-form-item>
- </el-form>
- <template #footer>
- <span class="dialog-footer">
- <el-button :loading="btnDisabled" @click="closeDialog">取 消</el-button>
- <el-button type="primary" :loading="btnDisabled" :disabled="uploadLoading" @click="submitForm">确 定</el-button>
- </span>
- </template>
- </el-dialog>
- </template>
- <script setup>
- import { computed, reactive, ref } from 'vue'
- import FileUpload from '@/components/FileUpload.vue'
- const props = defineProps({
- modelValue: {
- type: Boolean,
- default: false
- },
- taskId: {
- type: String,
- default: undefined
- }
- })
- const btnDisabled = ref(false)
- const form = reactive({
- deliverTo: '',
- review: '',
- attachment: []
- })
- const formRef = ref(null)
- const uploadLoading = ref(false)
- const options = [
- {
- value: 'Option1',
- label: 'Option1'
- },
- {
- value: 'Option2',
- label: 'Option2'
- },
- {
- value: 'Option3',
- label: 'Option3'
- },
- {
- value: 'Option4',
- label: 'Option4'
- },
- {
- value: 'Option5',
- label: 'Option5'
- }
- ]
- const $myEmit = defineEmits(['update:modelValue', 'successCb'])
- const submitForm = () => {
- btnDisabled.value = true
- const formData = { ...form }
- formRef.value
- .validate()
- .then(valid => {
- if (valid) {
- emit('successCb', formData)
- btnDisabled.value = false
- }
- })
- .catch(err => {
- console.error('挂起订单表单拦截', err)
- btnDisabled.value = false
- })
- }
- const closeDialog = () => {
- $myEmit('successCb')
- $myEmit('update:modelValue', false)
- }
- const reviewVisibleDialog = computed({
- get() {
- return props.modelValue
- },
- set(val) {
- $myEmit('update:modelValue', val)
- }
- })
- const clearValidate = () => {}
- </script>
- <style scoped>
- .example-img-box {
- width: 100% !important;
- }
- .example-img-box .el-form-item__content {
- display: block;
- }
- </style>
|