list.vue 9.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246
  1. <template>
  2. <a-card size="small" :bordered="false" class="productUniversalList-wrap">
  3. <a-spin :spinning="spinning" tip="Loading...">
  4. <!-- 搜索条件 -->
  5. <div ref="tableSearch" class="table-page-search-wrapper">
  6. <a-form layout="inline" @keyup.enter.native="$refs.table.refresh(true)">
  7. <a-row :gutter="15">
  8. <a-col :md="6" :sm="24">
  9. <a-form-item label="产品编码">
  10. <a-input id="productUniversalList-productCode" v-model.trim="queryParam.productCode" allowClear placeholder="请输入产品编码"/>
  11. </a-form-item>
  12. </a-col>
  13. <a-col :md="6" :sm="24">
  14. <a-form-item label="产品名称">
  15. <a-input id="productUniversalList-productName" v-model.trim="queryParam.productName" allowClear placeholder="请输入产品名称"/>
  16. </a-form-item>
  17. </a-col>
  18. <a-col :md="6" :sm="24">
  19. <a-form-item label="产品状态">
  20. <v-select code="PRODUCT_STATUS" id="productUniversalList-productState" v-model="queryParam.productState" allowClear placeholder="请选择产品状态"></v-select>
  21. </a-form-item>
  22. </a-col>
  23. <template v-if="advanced">
  24. <a-col :md="6" :sm="24">
  25. <a-form-item label="通用产品编码">
  26. <a-input id="productUniversalList-productCommonCode" v-model.trim="queryParam.productCommonCode" allowClear placeholder="请输入通用产品编码"/>
  27. </a-form-item>
  28. </a-col>
  29. <a-col :md="6" :sm="24">
  30. <a-form-item label="通用产品名称">
  31. <a-input id="productUniversalList-productCommonName" v-model.trim="queryParam.productCommonName" allowClear placeholder="请输入通用产品名称"/>
  32. </a-form-item>
  33. </a-col>
  34. </template>
  35. <a-col :md="6" :sm="24" style="margin-bottom: 10px;">
  36. <a-button type="primary" @click="$refs.table.refresh(true)" :disabled="disabled" id="productUniversalList-refresh">查询</a-button>
  37. <a-button style="margin-left: 5px" @click="resetSearchForm" :disabled="disabled" id="productUniversalList-reset">重置</a-button>
  38. <a @click="advanced=!advanced" style="margin-left: 5px">
  39. {{ advanced ? '收起' : '展开' }}
  40. <a-icon :type="advanced ? 'up' : 'down'"/>
  41. </a>
  42. </a-col>
  43. </a-row>
  44. </a-form>
  45. </div>
  46. <!-- 操作按钮 -->
  47. <div class="table-operator">
  48. <a-button id="productUniversalList-add" type="primary" v-if="$hasPermissions('B_productUniversal_add')" class="button-error" @click="handleEdit()">新增</a-button>
  49. </div>
  50. <!-- 列表 -->
  51. <s-table
  52. class="sTable fixPagination"
  53. ref="table"
  54. :style="{ height: tableHeight+84.5+'px' }"
  55. size="small"
  56. :rowKey="(record) => record.id"
  57. :columns="columns"
  58. :data="loadData"
  59. :scroll="{ x: 1230, y: tableHeight }"
  60. :defaultLoadData="false"
  61. bordered>
  62. <!-- 产品分类 -->
  63. <template slot="productType" slot-scope="text, record">
  64. <span v-if="record.productCommont.productTypeName2 || record.productCommont.productTypeName3">{{ record.productCommont.productTypeName2 }} {{ record.productCommont.productTypeName3 ? '>' : '' }} {{ record.productCommont.productTypeName3 }}</span>
  65. <span v-else>--</span>
  66. </template>
  67. <!-- 操作 -->
  68. <template slot="action" slot-scope="text, record">
  69. <a-button
  70. size="small"
  71. type="link"
  72. v-if="$hasPermissions('B_productUniversal_edit')"
  73. class="button-info"
  74. @click="handleEdit(record)"
  75. id="productUniversalList-edit-btn">编辑</a-button>
  76. <a-button
  77. size="small"
  78. type="link"
  79. v-if="$hasPermissions('B_productUniversal_del')"
  80. class="button-error"
  81. @click="handleDel(record)"
  82. id="productUniversalList-del-btn">删除</a-button>
  83. <span v-if="!$hasPermissions('B_productUniversal_edit') && !$hasPermissions('B_productUniversal_del')">--</span>
  84. </template>
  85. </s-table>
  86. </a-spin>
  87. <!-- 新增/编辑 -->
  88. <product-universal-edit-modal :openModal="openModal" :itemId="itemId" @close="closeModal" @ok="$refs.table.refresh()" />
  89. </a-card>
  90. </template>
  91. <script>
  92. import moment from 'moment'
  93. import { STable, VSelect } from '@/components'
  94. import productUniversalEditModal from './editModal.vue'
  95. import { productUniversalCodeList, productUniversalCodeDel } from '@/api/productUniversalCode'
  96. export default {
  97. components: { STable, VSelect, productUniversalEditModal },
  98. data () {
  99. return {
  100. spinning: false,
  101. advanced: true, // 高级搜索 展开/关闭
  102. tableHeight: 0,
  103. queryParam: { // 查询条件
  104. productCode: '',
  105. productName: '',
  106. productState: undefined,
  107. productCommonName: '',
  108. productCommonCode: ''
  109. },
  110. productType: [],
  111. disabled: false, // 查询、重置按钮是否可操作
  112. exportLoading: false, // 导出loading
  113. columns: [
  114. { title: '序号', dataIndex: 'no', width: 70, align: 'center' },
  115. { title: '产品编码', dataIndex: 'productCode', width: 180, align: 'center', customRender: function (text) { return text || '--' } },
  116. { title: '产品名称', dataIndex: 'product.name', align: 'center', customRender: function (text) { return text || '--' }, ellipsis: true },
  117. { title: '产品状态', dataIndex: 'product.stateDictValue', width: 100, align: 'center', customRender: function (text) { return text || '--' } },
  118. { title: '通用产品编码', dataIndex: 'productCommonCode', width: 180, align: 'center', customRender: function (text) { return text || '--' } },
  119. { title: '通用产品名称', dataIndex: 'productCommont.name', width: 180, align: 'center', customRender: function (text) { return text || '--' }, ellipsis: true },
  120. { title: '通用产品分类', scopedSlots: { customRender: 'productType' }, width: 140, align: 'center' },
  121. { title: '通用产品状态', dataIndex: 'productCommont.stateDictValue', width: 100, align: 'center', customRender: function (text) { return ((text || text == 0) ? text : '--') } },
  122. { title: '操作', scopedSlots: { customRender: 'action' }, width: 100, align: 'center', fixed: 'right' }
  123. ],
  124. // 加载数据方法 必须为 Promise 对象
  125. loadData: parameter => {
  126. this.disabled = true
  127. this.spinning = true
  128. return productUniversalCodeList(Object.assign(parameter, this.queryParam)).then(res => {
  129. const data = res.data
  130. const no = (data.pageNo - 1) * data.pageSize
  131. for (var i = 0; i < data.list.length; i++) {
  132. data.list[i].no = no + i + 1
  133. }
  134. this.disabled = false
  135. this.spinning = false
  136. return data
  137. })
  138. },
  139. openModal: false, // 编辑 弹框
  140. itemId: '' // 当前id
  141. }
  142. },
  143. methods: {
  144. // 重置
  145. resetSearchForm () {
  146. this.queryParam.productCode = ''
  147. this.queryParam.productName = ''
  148. this.queryParam.productState = undefined
  149. this.queryParam.productCommonName = ''
  150. this.queryParam.productCommonCode = ''
  151. this.$refs.table.refresh(true)
  152. },
  153. // 编辑
  154. handleEdit (row) {
  155. if (row) {
  156. this.itemId = row.id
  157. } else {
  158. this.itemId = null
  159. }
  160. this.openModal = true
  161. },
  162. // 关闭弹框
  163. closeModal () {
  164. this.itemId = ''
  165. this.openModal = false
  166. },
  167. // 删除
  168. handleDel (row) {
  169. const _this = this
  170. this.$confirm({
  171. title: '提示',
  172. content: '确认要删除吗?',
  173. centered: true,
  174. onOk () {
  175. _this.spinning = true
  176. productUniversalCodeDel({ id: row.id }).then(res => {
  177. if (res.status == 200) {
  178. _this.$message.success(res.message)
  179. _this.$refs.table.refresh()
  180. _this.spinning = false
  181. } else {
  182. _this.spinning = false
  183. }
  184. })
  185. }
  186. })
  187. },
  188. // 导出
  189. handleExport () {
  190. const params = this.queryParam
  191. this.exportLoading = true
  192. // customerBundleExportDelay(params).then(res => {
  193. // this.exportLoading = false
  194. // this.download(res)
  195. // })
  196. },
  197. download (data) {
  198. if (!data) { return }
  199. const url = window.URL.createObjectURL(new Blob([data]))
  200. const link = document.createElement('a')
  201. link.style.display = 'none'
  202. link.href = url
  203. const a = moment().format('YYYYMMDDHHmmss')
  204. const fname = '通用产品_' + a
  205. link.setAttribute('download', fname + '.xlsx')
  206. document.body.appendChild(link)
  207. link.click()
  208. },
  209. pageInit () {
  210. const _this = this
  211. this.$nextTick(() => { // 页面渲染完成后的回调
  212. _this.setTableH()
  213. })
  214. },
  215. setTableH () {
  216. const tableSearchH = this.$refs.tableSearch.offsetHeight
  217. this.tableHeight = window.innerHeight - tableSearchH - 235
  218. }
  219. },
  220. watch: {
  221. advanced (newValue, oldValue) {
  222. const _this = this
  223. setTimeout(() => {
  224. _this.setTableH()
  225. }, 400)
  226. }
  227. },
  228. mounted () {
  229. if (!this.$store.state.app.isNewTab) { // 页签刷新时调用
  230. this.pageInit()
  231. this.resetSearchForm()
  232. }
  233. },
  234. activated () {
  235. // 如果是新页签打开,则重置当前页面
  236. if (this.$store.state.app.isNewTab) {
  237. this.pageInit()
  238. this.resetSearchForm()
  239. }
  240. },
  241. beforeRouteEnter (to, from, next) {
  242. next(vm => {})
  243. }
  244. }
  245. </script>