salesContractExamine.vue 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170
  1. <!--销售合同-->
  2. <!--2019年5月30日 20:25:16 by jlx-->
  3. <template>
  4. <div>11111</div>
  5. </template>
  6. <script>
  7. import { getVesselOne } from '@/model/procurement/basic'
  8. import { dayjs } from 'base-core-lib'
  9. export default {
  10. name: 'viewSpareMoney',
  11. watch: {
  12. vesselId(val) {
  13. this.getVesselData()
  14. },
  15. isShow(val) {
  16. this.showType = val
  17. },
  18. },
  19. data() {
  20. return {
  21. //弹出框
  22. dialogViewSpareMoney: false,
  23. dialogApproveFormVisible: false,
  24. // 船舶类型
  25. monetaryKey: null,
  26. // 表格显示数据
  27. tableDate: [],
  28. // 是否显示
  29. showType: true,
  30. // 年
  31. year: '',
  32. // 提交类型
  33. submitType: true,
  34. tableData: [{ date: 1111, name: 'qqqq', address: 'errrtt' }],
  35. }
  36. },
  37. created() {
  38. //cg.viewBudget
  39. //cg.viewSpareMoney
  40. // this.getVesselData();
  41. this.showType = this.isShow
  42. },
  43. methods: {
  44. // 关闭 dialog时 处理文件url 初始化upload组件
  45. handleClose() {
  46. this.dialogViewSpareMoney = false
  47. },
  48. handleExamine() {},
  49. approve() {},
  50. },
  51. }
  52. </script>
  53. <style lang="scss" scoped>
  54. .button-container {
  55. display: flex;
  56. flex-wrap: nowrap;
  57. justify-content: space-between;
  58. align-items: center;
  59. background-color: #fff;
  60. width: 100%;
  61. height: 50px;
  62. padding: 0 10px;
  63. & > div {
  64. margin-left: 10px;
  65. display: flex;
  66. flex-wrap: nowrap;
  67. flex-direction: row;
  68. & > span {
  69. line-height: 50px;
  70. }
  71. }
  72. /deep/.auditFlow-box {
  73. position: unset;
  74. margin-left: 10px;
  75. &/deep/.auditFlow-icon {
  76. width: auto;
  77. padding-right: 30px;
  78. }
  79. &/deep/.auditFlow-main {
  80. position: absolute;
  81. }
  82. }
  83. }
  84. .box-app {
  85. display: inline-block;
  86. float: left;
  87. margin-left: 30px;
  88. line-height: 50px;
  89. }
  90. /deep/.el-dialog {
  91. .el-form-item {
  92. margin-bottom: 0 !important;
  93. .el-input--medium {
  94. textarea {
  95. min-height: 100px !important;
  96. }
  97. }
  98. }
  99. }
  100. .collapse-bottom {
  101. margin-bottom: 20px;
  102. }
  103. .input-main .textarea .el-textarea__inner {
  104. width: 100%;
  105. z-index: 1;
  106. }
  107. /*.crt-main .textarea /deep/ .el-form-item__label {*/
  108. /* height: 82px;*/
  109. /*}*/
  110. // 控制select为只读的时候显示样式
  111. .hide-sel {
  112. .el-input__inner {
  113. border: 0px;
  114. }
  115. .el-icon-arrow-up {
  116. display: none;
  117. }
  118. .el-textarea__inner {
  119. background-color: #fff !important;
  120. border: 0;
  121. }
  122. .el-date-editor {
  123. i {
  124. display: none;
  125. }
  126. }
  127. .is-disabled {
  128. .el-input__inner:hover {
  129. background-color: #fff !important;
  130. border: 0;
  131. }
  132. color: #606266;
  133. .el-input__inner {
  134. background-color: #fff !important;
  135. border: 0;
  136. color: #606266;
  137. }
  138. .el-textarea__inner {
  139. background-color: #fff !important;
  140. border: 0;
  141. color: #606266;
  142. }
  143. }
  144. }
  145. // 控制select为只读的时候显示样式
  146. /deep/.ws-class-table-col {
  147. height: auto;
  148. padding: 0px 2px;
  149. /deep/.el-input__inner {
  150. padding: 0px 2px;
  151. }
  152. }
  153. /deep/.is-disabled {
  154. .el-input__prefix,
  155. .el-input__suffix {
  156. display: none;
  157. }
  158. .el-input__inner {
  159. background-color: #fff;
  160. border-color: #fff !important;
  161. color: #000 !important;
  162. font-size: 14px;
  163. cursor: text;
  164. padding: 0 !important;
  165. }
  166. }
  167. </style>