index.vue 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140
  1. <template>
  2. <!-- 审核计划-->
  3. <a-modal class="commonModal warehouse-disable"
  4. title="审核计划"
  5. v-model:visible="visible"
  6. @cancel="cancel"
  7. width="890px">
  8. <template #footer>
  9. <a-button key="submit"
  10. class="cancelBtn"
  11. @click="cancel">取消</a-button>
  12. <a-button key="submit"
  13. type="primary"
  14. :loading="loading"
  15. @click="submit">确认停用</a-button>
  16. </template>
  17. <a-form class="inlineForm"
  18. :form="form"
  19. @submit="handleSearch">
  20. <a-row :gutter="24">
  21. <a-col :span="12">
  22. <a-form-item label="客户类型">
  23. <span class="white">企业</span>
  24. </a-form-item>
  25. </a-col>
  26. <a-col :span="12">
  27. <a-form-item label="企业名称">
  28. <span class="white">深圳市前海矿业有限公司</span>
  29. </a-form-item>
  30. </a-col>
  31. </a-row>
  32. <a-row :gutter="24">
  33. <a-col :span="12">
  34. <a-form-item label="企业简称">
  35. <span class="white">前海矿业</span>
  36. </a-form-item>
  37. </a-col>
  38. <a-col :span="12">
  39. <a-form-item label="证件类型">
  40. <span class="white">营业执照</span>
  41. </a-form-item>
  42. </a-col>
  43. </a-row>
  44. <a-row :gutter="24">
  45. <a-col :span="12">
  46. <a-form-item label="法定代表人">
  47. <span class="white">李顺利</span>
  48. </a-form-item>
  49. </a-col>
  50. <a-col :span="12">
  51. <a-form-item label="证件号码">
  52. <span class="white">4328648236492432</span>
  53. </a-form-item>
  54. </a-col>
  55. </a-row>
  56. <a-row :gutter="24">
  57. <a-col :span="12">
  58. <a-form-item label="纳税人识别号">
  59. <span class="white">57465736DR46456</span>
  60. </a-form-item>
  61. </a-col>
  62. <a-col :span="12">
  63. <a-form-item label="营业执照">
  64. <a class="blue">查看附件</a>
  65. </a-form-item>
  66. </a-col>
  67. </a-row>
  68. <a-row :gutter="24">
  69. <a-col :span="12">
  70. <a-form-item label="联系人">
  71. <span class="white">王平</span>
  72. </a-form-item>
  73. </a-col>
  74. <a-col :span="12">
  75. <a-form-item label="联系人手机号">
  76. <span class="white">13745653421</span>
  77. </a-form-item>
  78. </a-col>
  79. </a-row>
  80. <a-row :gutter="24">
  81. <a-col :span="12">
  82. <a-form-item label="联系电话">
  83. <span class="white">0755-34342544</span>
  84. </a-form-item>
  85. </a-col>
  86. <a-col :span="12">
  87. <a-form-item label="状态">
  88. <span class="green">正常</span>
  89. </a-form-item>
  90. </a-col>
  91. </a-row>
  92. <a-row :gutter="24">
  93. <a-col :span="24">
  94. <a-form-item label="通讯地址">
  95. <span class="white">广东省深圳市南山区前海街道路平路1324号</span>
  96. </a-form-item>
  97. </a-col>
  98. </a-row>
  99. <a-row :gutter="24">
  100. <a-col :span="24">
  101. <a-form-item label="备注">
  102. <span class="white">无</span>
  103. </a-form-item>
  104. </a-col>
  105. </a-row>
  106. </a-form>
  107. </a-modal>
  108. </template>
  109. <script lang="ts">
  110. import { defineComponent, ref } from 'vue';
  111. import { closeModal } from '@/common/setup/modal/index';
  112. export default defineComponent({
  113. name: 'plan_audit_audit',
  114. components: {},
  115. setup() {
  116. const { visible, cancel } = closeModal('plan_audit_audit');
  117. const loading = ref<boolean>(false);
  118. function submit() {
  119. loading.value = true;
  120. setTimeout(() => {
  121. loading.value = false;
  122. cancel();
  123. }, 2000);
  124. }
  125. return {
  126. visible,
  127. cancel,
  128. submit,
  129. loading,
  130. };
  131. },
  132. });
  133. </script>
  134. <style lang="less">
  135. .arehouse-disable {
  136. }
  137. </style>