Plat Admin

compProduct.vue 6.7KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263
  1. <template>
  2. <div class="app-container">
  3. <div class="box-container">
  4. <div class="contain-title">企业产品</div>
  5. <div class="contian-operate" v-if="companyId">
  6. <el-button type="primary" @click="addProductInfo">发布产品</el-button>
  7. </div>
  8. </div>
  9. <div class="content-container">
  10. <div class="select-box" v-if="!companyId">
  11. <p>请选择需要查看的企业</p>
  12. <el-select
  13. v-model="selectComp"
  14. filterable
  15. remote
  16. maxlength="50"
  17. placeholder="搜索企业名称"
  18. :remote-method="remoteCompName"
  19. :loading="selectLoading"
  20. suffix-icon="el-icon-search"
  21. @change="compChanged">
  22. <el-option
  23. v-for="item in compOptions"
  24. :key="item.value"
  25. :label="item.label"
  26. :value="item.value">
  27. </el-option>
  28. </el-select>
  29. </div>
  30. <div v-else>
  31. <div class="lit-tit">{{companyName}}</div>
  32. <el-table
  33. :data="tableData"
  34. height="600"
  35. v-loading="tableLoading"
  36. border>
  37. <el-table-column
  38. v-for="item in tableItem"
  39. :key="item.index"
  40. :prop="item.prop ? item.prop : ''"
  41. :label="item.tit ? item.tit : ''"
  42. :width="item.width ? item.width : ''"
  43. align="center">
  44. <template slot-scope="scope">
  45. <div v-if="scope.row[item.prop]">
  46. <el-button type="text" v-if="item.link"><a :href="queryDetailShow(scope.row.id)" target="_blank">{{scope.row[item.prop]}}</a></el-button>
  47. <span v-else>{{scope.row[item.prop]}}</span>
  48. </div>
  49. <div class="operate-row" v-if="item.operate && typeof scope.row === 'object'">
  50. <el-button
  51. size="medium"
  52. type="primary"
  53. @click="handelEdit(scope.row)">修改</el-button>
  54. <el-button
  55. size="medium"
  56. type="danger"
  57. @click="handelDel(scope.row.id)">删除</el-button>
  58. </div>
  59. </template>
  60. </el-table-column>
  61. </el-table>
  62. <div class="pagination-container">
  63. <el-pagination
  64. background
  65. @current-change="handleCurrentChange"
  66. :current-page.sync="pageNo"
  67. :page-size="pageSize"
  68. layout="prev, pager, next, jumper"
  69. :total="total">
  70. </el-pagination>
  71. </div>
  72. </div>
  73. </div>
  74. </div>
  75. </template>
  76. <script>
  77. import {
  78. queryCompanyOne,
  79. queryCompName,
  80. pageProduct,
  81. delProduct
  82. } from '@/api/companyCen'
  83. import { urlParse, parseTime, xtUrl } from '@/utils'
  84. import comTable from '@/utils/comTable'
  85. export default {
  86. data() {
  87. return {
  88. companyId: '',
  89. companyName: '',
  90. selectComp: '',
  91. compOptions: [],
  92. selectLoading: false,
  93. pageSize: 10,
  94. pageNo: 1,
  95. total: 0,
  96. tableData: [],
  97. tableLoading: true,
  98. tableItem: [
  99. {
  100. prop: 'name',
  101. tit: '产品名称',
  102. link: true
  103. },
  104. {
  105. prop: 'spec',
  106. tit: '厂商型号'
  107. },
  108. {
  109. prop: 'createTime',
  110. tit: '创建时间',
  111. width: '160'
  112. },
  113. {
  114. operate: true,
  115. width: '200'
  116. }
  117. ]
  118. }
  119. },
  120. created() {
  121. if (urlParse('cid')) {
  122. this.companyId = urlParse('cid')
  123. this.getCompanyInfo()
  124. this.pageQuery()
  125. }
  126. },
  127. methods: {
  128. getCompanyInfo() {
  129. var that = this
  130. that.$http.get(queryCompanyOne, {
  131. id: that.companyId
  132. }, function(res) {
  133. if (res.success) {
  134. that.companyName = res.data.name
  135. }
  136. })
  137. },
  138. pageQuery() {
  139. var that = this
  140. this.$http.get(pageProduct, {
  141. companyId: that.companyId,
  142. pageSize: that.pageSize,
  143. pageNo: that.pageNo
  144. }, function(res) {
  145. that.tableLoading = false
  146. if (res.success && res.data) {
  147. const obj = res.data.data
  148. if (obj.length > 0) {
  149. for (let i = 0; i < obj.length; ++i) {
  150. if (obj[i].createTime) {
  151. obj[i].createTime = parseTime(obj[i].createTime)
  152. }
  153. }
  154. that.total = res.data.total
  155. that.tableData = obj
  156. comTable.gapFilling(that.tableData)
  157. } else {
  158. that.pageNo = 1
  159. that.total = 0
  160. that.tableData = []
  161. }
  162. } else {
  163. that.pageNo = 1
  164. that.total = 0
  165. that.tableData = []
  166. }
  167. })
  168. },
  169. addProductInfo() {
  170. this.$router.push({
  171. name: 'productInfo',
  172. query: { cid: this.companyId }
  173. })
  174. },
  175. handelEdit(row) {
  176. this.$router.push({
  177. name: 'productInfo',
  178. query: { id: row.id, cid: row.companyId }
  179. })
  180. },
  181. handelDel(id) {
  182. var that = this
  183. that.$confirm(`确认删除该产品?`, '提示信息', {
  184. type: 'warning',
  185. center: true
  186. }).then(() => {
  187. that.$http.post(delProduct, {
  188. id: id
  189. }, function(res) {
  190. if (res.success) {
  191. if (res.data) {
  192. that.pageNo = 1
  193. that.total = 0
  194. that.tableData = []
  195. this.pageQuery()
  196. } else {
  197. that.$message({
  198. type: 'warning',
  199. message: '该产品删除失败,请重试'
  200. })
  201. }
  202. }
  203. })
  204. })
  205. },
  206. remoteCompName(query) {
  207. var that = this
  208. if (query !== '') {
  209. that.selectLoading = true
  210. that.$http.get(queryCompName, {
  211. name: query,
  212. size: 5
  213. }, function(res) {
  214. that.selectLoading = false
  215. if (res.success && res.data) {
  216. const obj = res.data
  217. that.compOptions = obj.map(item => {
  218. return { value: item.id, label: item.name }
  219. })
  220. } else {
  221. that.compOptions = []
  222. }
  223. })
  224. } else {
  225. that.compOptions = []
  226. }
  227. },
  228. compChanged(val) {
  229. this.$router.push({
  230. name: 'compProduct',
  231. query: { cid: val }
  232. })
  233. },
  234. handleCurrentChange(val) {
  235. this.pageNo = val
  236. this.pageQuery()
  237. },
  238. queryDetailShow(id) {
  239. return xtUrl + '/product.html?id=' + id
  240. }
  241. }
  242. }
  243. </script>
  244. <style rel="stylesheet/scss" lang="scss">
  245. .select-box{
  246. width:350px;
  247. margin: 15% auto 22%;
  248. p{
  249. font-size: 20px;
  250. font-weight: bold;
  251. line-height: 40px;
  252. text-align: center;
  253. }
  254. }
  255. .lit-tit{
  256. font-size: 17px;
  257. line-height: 30px;
  258. margin-bottom: 10px;
  259. }
  260. </style>