ViewFileListModal.vue 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. <template>
  2. <div ref="viewFileDetailRef">
  3. <a-modal
  4. :title="title"
  5. width="40%"
  6. :visible="visible"
  7. :maskClosable="false"
  8. :getContainer ='()=>$refs.viewFileDetailRef'
  9. switchFullscreen
  10. @cancel="handleCancel"
  11. @ok="handleOk"
  12. >
  13. <div>
  14. <JUpload v-model:value="obj.attachs" />
  15. </div>
  16. </a-modal>
  17. </div>
  18. </template>
  19. <script lang="ts" setup>
  20. import {ref} from 'vue';
  21. import JUpload from '/@/components/Form/src/jeecg/components/JUpload/JUpload.vue';
  22. import {editSignSing} from '../salesOutboundForm.api';
  23. const emit = defineEmits([ 'success']); //定义emit
  24. var visible = ref(false);
  25. var title = ref('')
  26. var fatherId = ref('')
  27. var obj=ref({
  28. attachs:'',
  29. })
  30. function getTable(record){
  31. visible.value = true
  32. title.value ='签单(Signing)'
  33. obj.value.attachs = record.signing
  34. fatherId.value = record.id
  35. }
  36. function handleCancel(){
  37. visible.value = false;
  38. }
  39. async function handleOk(){
  40. var params = {
  41. id: fatherId.value,
  42. signing: obj.value.attachs,
  43. };
  44. await editSignSing(params,handleCancel);
  45. emit('success')
  46. }
  47. defineExpose({
  48. getTable
  49. });
  50. </script>
  51. <style lang="less" scoped>
  52. /** 时间和数字输入框样式 */
  53. :deep(.ant-input-number) {
  54. width: 100%;
  55. }
  56. :deep(.ant-calendar-picker) {
  57. width: 100%;
  58. }
  59. /deep/.ant-modal-body{
  60. padding: 14px !important;
  61. }
  62. </style>