| | |
| | | :close-on-click-modal="false" |
| | | > |
| | | <div class="detail-container detail-container1" v-if="dialogReadonly"> |
| | | <div class="detail-title">异议详情</div> |
| | | <el-row class="detail-row-view"> |
| | | <el-col :span="12"> |
| | | <div class="label">标题</div> |
| | |
| | | :model="formData" |
| | | :rules="rules" |
| | | :disabled="dialogReadonly" |
| | | label-width="180px" |
| | | :label-width="pxToRem(144)" |
| | | > |
| | | <el-row> |
| | | <el-col :span="12"> |
| | |
| | | class="upload-demo" |
| | | > |
| | | <template #trigger> |
| | | <el-button type="primary">选择文件</el-button> |
| | | <el-button class="gd-upload-btn" type="primary">选择文件</el-button> |
| | | </template> |
| | | <template #tip> |
| | | <div class="el-upload__tip">支持上传 (.zip/.rar/.7z/.tar/.gz)格式</div> |
| | |
| | | import { putFileAttachApi } from '@/views/orderView/orderDataManage/supplyAdd/supplyAddApi' |
| | | import { pxToRem } from '@/utils/rem' |
| | | import { useStore } from 'vuex' |
| | | |
| | | const store = useStore() |
| | | const permission = computed(() => store.state.user.permission); |
| | | // const requesterProvider = computed(() => store.state.user.userInfo?.role_id === '2014158512610869250') |
| | |
| | | |
| | | // 表单校验规则 |
| | | const rules = { |
| | | title: fieldRules(true), |
| | | title: fieldRules(true,50), |
| | | objectionType: fieldRules(true), |
| | | submitter: fieldRules(true), |
| | | submitterContact: fieldRules(true), |
| | | catalogResourceName: fieldRules(true), |
| | | objectionDesc: fieldRules(true), |
| | | objectionBasis: fieldRules(true), |
| | | submitter: fieldRules(true,50), |
| | | submitterContact: fieldRules(true,50), |
| | | catalogResourceName: fieldRules(true,50), |
| | | objectionDesc: fieldRules(true,200), |
| | | objectionBasis: fieldRules(true,200), |
| | | attachId: fieldRules(true) |
| | | |
| | | } |