0eee92eb77b9e153815cc16b018a804afa060651.svn-base 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303
  1. <template>
  2. <div class="app-container">
  3. <div class="operation">
  4. <el-button class="success" @click="handleCreate">新增</el-button>
  5. <el-button class="danger" @click="handleDelete">删除</el-button>
  6. </div>
  7. <div class="search">
  8. <el-input v-model="table.getdataListParm.parammaps.assetCode" placeholder="栏舍名称" style="width: 180px;" class="filter-item" clearable />
  9. <el-input v-model="table.getdataListParm.parammaps.assetCode" placeholder="栏舍编号" style="width: 180px;" class="filter-item" clearable />
  10. <el-select v-model="table.getdataListParm.parammaps.enable" placeholder="是否启用" class="filter-item" style="width: 120px;" clearable>
  11. <el-option v-for="item in enableList" :key="item.id" :label="item.name" :value="item.name" />
  12. </el-select>
  13. <div ref="selectInput" class="filter-item selectInput">
  14. <el-input type="text" name="" value="" placeholder="请点击选择搜索条件" class="Input" />
  15. <i v-if="arrowDown" icon="el-icon-arrow-down" class="el-icon-arrow-down" />
  16. <i v-if="arrowUp" icon="el-icon-arrow-up" class="el-icon-arrow-up" />
  17. <ul v-if="arrowUp" class="selectUl">
  18. <li><a>允许误差数</a><el-input type="text" name="" value="" style="width: 245px;" /></li>
  19. <li><a>跳转重量域</a><el-input type="text" name="" value="" style="width: 245px;" /></li>
  20. <li>
  21. <a>跳转延时</a>
  22. <el-select v-model="table.getdataListParm.parammaps.enable" class="filter-item" style="width: 245px;" clearable>
  23. <el-option v-for="item in jumpDelayList" :key="item.id" :label="item.name" :value="item.name" />
  24. </el-select>
  25. </li>
  26. <li>
  27. <div style="float: right;">
  28. <el-button class="minCancel" @click="arrowUp=false;arrowDown=true;">取消</el-button>
  29. <el-button class="miniSuccess" @click="handleSearch">搜索</el-button>
  30. </div>
  31. </li>
  32. </ul>
  33. </div>
  34. <el-button class="successBorder" @click="handleSearch">查询</el-button>
  35. <el-button class="successBorder" @click="handleRefresh">重置</el-button>
  36. </div>
  37. <div class="table">
  38. <el-table
  39. :key="table.tableKey"
  40. v-loading="table.listLoading"
  41. element-loading-text="给我一点时间"
  42. :data="table.list"
  43. border
  44. fit
  45. highlight-current-row
  46. style="width: 100%;"
  47. :row-style="rowStyle"
  48. :cell-style="cellStyle"
  49. class="elTable table-fixed"
  50. @selection-change="handleSelectionChange"
  51. >
  52. <el-table-column type="selection" align="center" width="50" />
  53. <el-table-column label="序号" align="center" type="index" width="50px">
  54. <template slot-scope="scope">
  55. <span>{{ scope.$index + (table.pageNum-1) * table.pageSize + 1 }}</span>
  56. </template>
  57. </el-table-column>
  58. <el-table-column label="栏舍名称" min-width="130px" align="center">
  59. <template slot-scope="scope">
  60. <span v-if="scope.row.NoEdit">{{ scope.row.brandName }}</span>
  61. <el-input v-if="scope.row.Edit" v-model="scope.row.brandName" type="textarea" :autosize="{ minRows: 1.3, maxRows: 4}" style="width:80%;padding:10px 0;" maxlength="32" />
  62. </template>
  63. </el-table-column>
  64. <el-table-column label="栏舍编号" min-width="130px" align="center">
  65. <template slot-scope="scope">
  66. <span v-if="scope.row.NoEdit">{{ scope.row.brandName }}</span>
  67. <el-input v-if="scope.row.Edit" v-model="scope.row.brandName" style="width:80%;padding:10px 0;" />
  68. </template>
  69. </el-table-column>
  70. <el-table-column label="允许误差数(kg)" min-width="150px" align="center">
  71. <template slot-scope="scope">
  72. <span v-if="scope.row.NoEdit">{{ scope.row.brandName }}</span>
  73. <el-input v-if="scope.row.Edit" v-model="scope.row.brandName" style="width:80%;padding:10px 0;" />
  74. </template>
  75. </el-table-column>
  76. <el-table-column label="跳转重量域(kg)" min-width="150px" align="center">
  77. <template slot-scope="scope">
  78. <span v-if="scope.row.NoEdit">{{ scope.row.brandName }}</span>
  79. <el-input v-if="scope.row.Edit" v-model="scope.row.brandName" style="width:80%;padding:10px 0;" />
  80. </template>
  81. </el-table-column>
  82. <el-table-column label="跳转延时(s)" min-width="150px" align="center">
  83. <template slot-scope="scope">
  84. <span v-if="scope.row.NoEdit">{{ scope.row.brandName }}</span>
  85. <el-select v-if="scope.row.Edit" v-model="scope.row.brandName" class="filter-item" style="width: 80%;">
  86. <el-option v-for="item in jumpDelayList" :key="item.id" :label="item.name" :value="item.name" />
  87. </el-select>
  88. </template>
  89. </el-table-column>
  90. <el-table-column label="确认开始" min-width="110px" align="center">
  91. <template slot-scope="scope">
  92. <el-switch v-model="scope.row.confirmStart" :disabled="scope.row.NoEdit==true" active-color="#13ce66" inactive-color="#ff4949" :active-value="1" :inactive-value="0" @change="handleConfirmStartChange(scope.$index, scope.row)" />
  93. </template>
  94. </el-table-column>
  95. <el-table-column label="是否启用" min-width="110px" align="center">
  96. <template slot-scope="scope">
  97. <el-switch v-model="scope.row.enable" :disabled="scope.row.NoEdit==true" active-color="#13ce66" inactive-color="#ff4949" :active-value="1" :inactive-value="0" @change="handleEnableChange(scope.$index, scope.row)" />
  98. </template>
  99. </el-table-column>
  100. <el-table-column label="操作" align="center" width="250" class-name="small-padding fixed-width" fixed="right">
  101. <template slot-scope="{row}">
  102. <!-- 新增 -->
  103. <el-button v-if="row.isCreate" class="miniSuccess" @click="createData(row)">保存</el-button>
  104. <el-button v-if="row.isCreate" class="minCancel" @click="createCancel(row)">取消</el-button>
  105. <!-- 编辑 -->
  106. <el-button v-if="row.isUpdate" class="miniSuccess" @click="handleUpdate(row)">编辑</el-button>
  107. <el-button v-if="row.isUpdate" class="miniDanger" @click="handleRowDelete(row)">删除</el-button>
  108. <!-- 编辑保存 -->
  109. <el-button v-if="row.isUpdateSave" class="miniSuccess" @click="updateData(row)">保存</el-button>
  110. <el-button v-if="row.isUpdateSave" class="minCancel" @click="updateCancel(row)">取消</el-button>
  111. </template>
  112. </el-table-column>
  113. </el-table>
  114. <pagination v-show="table.total>=0" :total="table.total" :page.sync="table.getdataListParm.offset" :limit.sync="table.getdataListParm.pagecount" @pagination="getList" />
  115. </div>
  116. </div>
  117. </template>
  118. <script>
  119. import { GetDataByName } from '@/api/common'
  120. import Pagination from '@/components/Pagination'
  121. export default {
  122. name: 'GroupColumn',
  123. components: { Pagination },
  124. data() {
  125. return {
  126. enableList: [{ id: 0, name: '是' }, { id: 1, name: '否' }],
  127. jumpDelayList: [{ id: 0, name: '禁用' }, { id: 1, name: '3秒' }, { id: 2, name: '6秒' }, { id: 3, name: '9秒' }],
  128. table: {
  129. getdataListParm: {
  130. name: 'getAssetList',
  131. page: 1,
  132. offset: 1,
  133. pagecount: 10,
  134. returntype: 'Map',
  135. parammaps: {
  136. enable: ''
  137. }
  138. },
  139. tableKey: 0,
  140. list: [],
  141. total: 0,
  142. listLoading: true
  143. },
  144. arrowDown: true,
  145. arrowUp: false,
  146. rowStyle: { maxHeight: 50 + 'px', height: 45 + 'px' },
  147. cellStyle: { padding: 0 + 'px' }
  148. }
  149. },
  150. created() {
  151. this.getList()
  152. },
  153. mounted() {
  154. document.addEventListener('click', (e) => {
  155. if (this.$refs.selectInput !== undefined) {
  156. if (!this.$refs.selectInput.contains(e.target)) {
  157. this.arrowDown = true
  158. this.arrowUp = false
  159. } else {
  160. this.arrowDown = false
  161. this.arrowUp = true
  162. }
  163. }
  164. })
  165. },
  166. methods: {
  167. getList() {
  168. this.table.listLoading = true
  169. GetDataByName(this.table.getdataListParm).then(response => {
  170. console.log('table数据', response.data.list)
  171. if (response.data.list !== null) {
  172. for (let i = 0; i < response.data.list.length; i++) {
  173. this.$set(response.data.list[i], 'Edit', false) // 编辑
  174. this.$set(response.data.list[i], 'NoEdit', true) // 不可编辑/输入
  175. this.$set(response.data.list[i], 'isCreate', false) // 新增操作
  176. this.$set(response.data.list[i], 'isUpdate', true) // 编辑操作
  177. this.$set(response.data.list[i], 'isUpdateSave', false) // 编辑保存
  178. }
  179. this.table.list = response.data.list
  180. this.table.pageNum = response.data.pageNum
  181. this.table.pageSize = response.data.pageSize
  182. this.table.total = response.data.total
  183. } else {
  184. this.table.list = []
  185. }
  186. setTimeout(() => {
  187. this.table.listLoading = false
  188. }, 100)
  189. })
  190. },
  191. handleEnableChange() {
  192. console.log('点击了是否启用')
  193. },
  194. handleConfirmStartChange() {
  195. console.log('点击了确认开始')
  196. },
  197. handleSearch() {
  198. console.log('点击了查询')
  199. this.getList()
  200. this.arrowDown = true
  201. this.arrowUp = false
  202. },
  203. handleRefresh() {
  204. console.log('点击了重置')
  205. },
  206. handleSelectionChange(val) {
  207. console.log('勾选数据', val)
  208. },
  209. handleCreate() {
  210. console.log('点击了新增')
  211. // 编辑true/不可编辑false
  212. // 新增操true,编辑false,编辑保存false
  213. for (let i = 0; i < this.table.list.length; i++) {
  214. if (this.table.list[i].Edit == true) {
  215. this.$message({ type: 'error', message: '当前内容未保存,请点击取消或保存继续进行操作', duration: 2000 })
  216. return false
  217. }
  218. }
  219. this.table.list.unshift({ 'myId': (new Date()).valueOf(), 'Edit': true, 'NoEdit': false, 'isCreate': true, 'isUpdate': false, 'isUpdateSave': false, 'enable': 1, 'confirmStart': 1 })
  220. },
  221. createData(row) {
  222. console.log('点击了新增保存', row)
  223. },
  224. createCancel(row) {
  225. console.log('点击了新增取消')
  226. for (let i = 0; i < this.table.list.length; i++) {
  227. if (row.myId === this.table.list[i].myId) {
  228. var listIndex = this.table.list.indexOf(this.table.list[i])
  229. }
  230. if (listIndex > -1) {
  231. this.table.list.splice(listIndex, 1)
  232. return
  233. }
  234. }
  235. },
  236. handleUpdate(row) {
  237. console.log('点击了编辑')
  238. for (let i = 0; i < this.table.list.length; i++) {
  239. if (this.table.list[i].Edit == true) {
  240. this.$message({ type: 'error', message: '当前内容未保存,请点击取消或保存继续进行操作', duration: 2000 })
  241. return false
  242. }
  243. }
  244. // 编辑true,不可编辑false
  245. row.Edit = true
  246. row.NoEdit = false
  247. // 新增false,编辑false,编辑保存true
  248. row.isCreate = false
  249. row.isUpdate = false
  250. row.isUpdateSave = true
  251. },
  252. updateData(row) {
  253. console.log('点击了编辑保存', row)
  254. },
  255. updateCancel(row) {
  256. console.log('点击了编辑取消')
  257. // 编辑false,不可编辑true
  258. row.Edit = false
  259. row.NoEdit = true
  260. // 新增false,编辑true,编辑保存false
  261. row.isCreate = false
  262. row.isUpdate = true
  263. row.isUpdateSave = false
  264. },
  265. handleRowDelete(row) {
  266. console.log('点击了行内删除')
  267. },
  268. handleDelete() {
  269. console.log('点击了删除')
  270. }
  271. }
  272. }
  273. </script>
  274. <style lang="scss" scoped>
  275. .search{margin-top:10px;}
  276. .table{margin-top:10px;}
  277. $width:350px;
  278. $left:325px;
  279. .selectInput{
  280. position: relative;
  281. display: inline-block;
  282. .Input{width: $width;position: relative;}
  283. .el-icon-arrow-down{width: 30px;height: 30px;position: absolute;left: $left;top:10px;color:#C0C4CC;}
  284. .el-icon-arrow-up{width: 30px;height: 30px;position: absolute;left: $left;top:10px;color:#C0C4CC;}
  285. .selectUl{
  286. z-index: 111;width: $width;background: #fff;border: 1px solid #E4E7ED;box-shadow: 0 2px 12px 0 rgba(0,0,0,.1);margin: -1px 0 0 0;padding: 6px 0; margin: 0;box-sizing: border-box;position: absolute;
  287. li{
  288. list-style: none;font-size: 14px; padding: 0 10px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; color: #606266; height: 50px; line-height: 50px; box-sizing: border-box; cursor: pointer;
  289. a{float:left;width: 80px;}
  290. a:hover{color: rgba(0, 204, 102, 0.71); font-weight: 700;}
  291. }
  292. }
  293. }
  294. </style>