0291ee07aaf2fc020df33b50a30c801e9c8cac62.svn-base 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419
  1. <template>
  2. <div class="app-container">
  3. <div class="operation">
  4. <el-button v-if="isRoleEdit" class="success" @click="handleCreate">新增</el-button>
  5. <el-button v-if="isRoleEdit" class="danger" @click="handleDelete">删除</el-button>
  6. </div>
  7. <div class="search">
  8. <el-input v-model="table.getdataListParm.parammaps.providerName" placeholder="供应商名称" style="width: 180px;" class="filter-item" clearable />
  9. <el-input v-model="table.getdataListParm.parammaps.providerNumber" placeholder="供应商编号" style="width: 180px;" class="filter-item" clearable />
  10. <el-select v-model="table.getdataListParm.parammaps.enable" filterable placeholder="是否启用" class="filter-item" style="width: 120px;" clearable>
  11. <el-option v-for="item in enableList" :key="item.id" :label="item.name" :value="item.id" />
  12. </el-select>
  13. <el-button class="successBorder" @click="handleSearch">查询</el-button>
  14. <el-button class="successBorder" @click="handleRefresh">重置</el-button>
  15. </div>
  16. <div class="table">
  17. <el-table
  18. :key="table.tableKey"
  19. v-loading="table.listLoading"
  20. element-loading-text="给我一点时间"
  21. :data="table.list"
  22. border
  23. fit
  24. highlight-current-row
  25. style="width: 100%;"
  26. :row-style="rowStyle"
  27. :cell-style="cellStyle"
  28. class="elTable table-fixed"
  29. @selection-change="handleSelectionChange"
  30. >
  31. <el-table-column type="selection" align="center" width="50" />
  32. <el-table-column label="序号" align="center" type="index" width="50px">
  33. <template slot-scope="scope">
  34. <span v-if="table.pageNum">{{ scope.$index + (table.pageNum-1) * table.pageSize + 1 }}</span>
  35. <span v-else>1</span>
  36. </template>
  37. </el-table-column>
  38. <el-table-column label="供应商名称" min-width="150px" align="center">
  39. <template slot-scope="scope">
  40. <span v-if="scope.row.NoEdit">{{ scope.row.providerName }}</span>
  41. <el-input v-if="scope.row.Edit" v-model="scope.row.providerName" placeholder="1-32个字符" type="textarea" :autosize="{ minRows: 1.3, maxRows: 4}" maxlength="32" style="width:95%;padding:10px 0;" />
  42. </template>
  43. </el-table-column>
  44. <el-table-column label="供应商编号" min-width="150px" align="center">
  45. <template slot-scope="scope">
  46. <span v-if="scope.row.NoEdit">{{ scope.row.providerNumber }}</span>
  47. <el-input v-if="scope.row.Edit" v-model="scope.row.providerNumber" placeholder="1-8位数字" type="textarea" :autosize="{ minRows: 1.3, maxRows: 4}" maxlength="8" style="width:95%;padding:10px 0;" />
  48. </template>
  49. </el-table-column>
  50. <el-table-column label="联系人" min-width="150px" align="center">
  51. <template slot-scope="scope">
  52. <span v-if="scope.row.NoEdit">{{ scope.row.linkman }}</span>
  53. <el-input v-if="scope.row.Edit" v-model="scope.row.linkman" placeholder="1-32个字符" type="textarea" :autosize="{ minRows: 1.3, maxRows: 4}" maxlength="32" style="width:95%;padding:10px 0;" />
  54. </template>
  55. </el-table-column>
  56. <el-table-column label="联系方式" min-width="150px" align="center">
  57. <template slot-scope="scope">
  58. <span v-if="scope.row.NoEdit">{{ scope.row.telphone }}</span>
  59. <el-input v-if="scope.row.Edit" v-model="scope.row.telphone" placeholder="11位数字" type="textarea" :autosize="{ minRows: 1.3, maxRows: 4}" maxlength="11" style="width:95%;padding:10px 0;" />
  60. </template>
  61. </el-table-column>
  62. <el-table-column label="备注" min-width="150px" align="center">
  63. <template slot-scope="scope">
  64. <span v-if="scope.row.NoEdit">{{ scope.row.remark }}</span>
  65. <el-input v-if="scope.row.Edit" v-model="scope.row.remark" placeholder="1-255个字符" type="textarea" :autosize="{ minRows: 1.3, maxRows: 4}" maxlength="255" style="width:95%;padding:10px 0;" />
  66. </template>
  67. </el-table-column>
  68. <el-table-column label="是否启用" min-width="110px" align="center">
  69. <template slot-scope="scope">
  70. <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)" />
  71. </template>
  72. </el-table-column>
  73. <el-table-column label="操作" align="center" width="250" class-name="small-padding fixed-width" fixed="right">
  74. <template slot-scope="{row}">
  75. <!-- 新增 -->
  76. <el-button v-if="row.isCreate && isRoleEdit" :disabled="isokDisable" class="miniSuccess" @click="createData(row)">保存</el-button>
  77. <el-button v-if="row.isCreate && isRoleEdit" class="minCancel" @click="createCancel(row)">取消</el-button>
  78. <!-- 编辑 -->
  79. <el-button v-if="row.isUpdate && isRoleEdit" class="miniSuccess" @click="handleUpdate(row)">编辑</el-button>
  80. <el-button v-if="row.isUpdate && isRoleEdit" class="miniDanger" @click="handleRowDelete(row)">删除</el-button>
  81. <!-- 编辑保存 -->
  82. <el-button v-if="row.isUpdateSave && isRoleEdit" :disabled="isokDisable" class="miniSuccess" @click="updateData(row)">保存</el-button>
  83. <el-button v-if="row.isUpdateSave && isRoleEdit" class="minCancel" @click="updateCancel(row)">取消</el-button>
  84. </template>
  85. </el-table-column>
  86. </el-table>
  87. <pagination v-show="table.total>0" :total="table.total" :page.sync="table.getdataListParm.offset" :limit.sync="table.getdataListParm.pagecount" @pagination="getList" />
  88. </div>
  89. </div>
  90. </template>
  91. <script>
  92. import { GetDataByName, PostDataByName, failproccess, ExecDataByConfig, checkButtons } from '@/api/common'
  93. import Cookies from 'js-cookie'
  94. import Pagination from '@/components/Pagination'
  95. import { MessageBox } from 'element-ui'
  96. export default {
  97. name: 'Supplier',
  98. components: { Pagination },
  99. data() {
  100. return {
  101. isRoleEdit: [],
  102. enableList: [{ id: 1, name: '是' }, { id: 0, name: '否' }], // 是否启用
  103. table: {
  104. getdataListParm: {
  105. name: 'getProviderList',
  106. page: 1,
  107. offset: 1,
  108. pagecount: 10,
  109. returntype: 'Map',
  110. parammaps: {
  111. pastureid: Cookies.get('pastureid'),
  112. providerName: '',
  113. providerNumber: '',
  114. enable: ''
  115. }
  116. },
  117. tableKey: 0,
  118. list: [],
  119. total: 0,
  120. listLoading: true,
  121. temp: {}
  122. },
  123. requestParam: {},
  124. isokDisable: false,
  125. selectList: [],
  126. rowStyle: { maxHeight: 50 + 'px', height: 45 + 'px' },
  127. cellStyle: { padding: 0 + 'px' }
  128. }
  129. },
  130. created() {
  131. this.getList()
  132. this.getButtons()
  133. },
  134. methods: {
  135. getButtons() {
  136. const Edit = 'Supplier'
  137. const isRoleEdit = checkButtons(this.$store.state.user.buttons, Edit)
  138. this.isRoleEdit = isRoleEdit
  139. },
  140. getList() {
  141. this.table.listLoading = true
  142. GetDataByName(this.table.getdataListParm).then(response => {
  143. console.log('table数据', response.data.list)
  144. if (response.data.list !== null) {
  145. for (let i = 0; i < response.data.list.length; i++) {
  146. this.$set(response.data.list[i], 'Edit', false) // 编辑
  147. this.$set(response.data.list[i], 'NoEdit', true) // 不可编辑/输入
  148. this.$set(response.data.list[i], 'isCreate', false) // 新增操作
  149. this.$set(response.data.list[i], 'isUpdate', true) // 编辑操作
  150. this.$set(response.data.list[i], 'isUpdateSave', false) // 编辑保存
  151. }
  152. this.table.list = response.data.list
  153. this.table.pageNum = response.data.pageNum
  154. this.table.pageSize = response.data.pageSize
  155. this.table.total = response.data.total
  156. } else {
  157. this.table.list = []
  158. }
  159. setTimeout(() => {
  160. this.table.listLoading = false
  161. }, 100)
  162. })
  163. },
  164. handleEnableChange() {
  165. console.log('点击了是否启用')
  166. },
  167. handleSearch() {
  168. console.log('点击了查询')
  169. this.table.getdataListParm.offset = 1
  170. this.getList()
  171. },
  172. handleRefresh() {
  173. console.log('点击了重置')
  174. this.table.getdataListParm.parammaps.providerName = ''
  175. this.table.getdataListParm.parammaps.providerNumber = ''
  176. this.table.getdataListParm.parammaps.enable = ''
  177. this.table.getdataListParm.offset = 1
  178. this.getList()
  179. },
  180. // 新增
  181. handleCreate() {
  182. // 编辑true/不可编辑false
  183. // 新增操true,编辑false,编辑保存false
  184. console.log(11)
  185. for (let i = 0; i < this.table.list.length; i++) {
  186. if (this.table.list[i].Edit === true) {
  187. console.log(123)
  188. this.$message({ type: 'error', message: '当前内容未保存,请点击取消或保存继续进行操作', duration: 2000 })
  189. return false
  190. }
  191. }
  192. this.table.list.unshift({ 'myId': (new Date()).valueOf(), 'Edit': true, 'NoEdit': false, 'isCreate': true, 'isUpdate': false, 'isUpdateSave': false, 'enable': 1, 'providerName': '', 'providerNumber': '', 'linkman': '', 'telphone': '', 'remark': '' })
  193. },
  194. createData(row) {
  195. console.log('点击了新增保存', row)
  196. this.table.temp.pastureid = Cookies.get('pastureid')
  197. this.table.temp.providerNumber = row.providerNumber
  198. this.table.temp.providerName = row.providerName
  199. this.table.temp.linkman = row.linkman
  200. this.table.temp.telphone = row.telphone
  201. this.table.temp.remark = row.remark
  202. this.table.temp.enable = row.enable
  203. // 检验供应商名称/供应商编号是否为空
  204. if (this.table.temp.providerName == '' && this.table.temp.providerNumber == '') {
  205. this.$message({ type: 'error', message: '供应商名称/供应商编号不能为空', duration: 2000 })
  206. return false
  207. } else if (this.table.temp.providerNumber == '') {
  208. this.$message({ type: 'error', message: '供应商编号不能为空', duration: 2000 })
  209. return false
  210. } else if (this.table.temp.providerName == '') {
  211. this.$message({ type: 'error', message: '供应商名称不能为空', duration: 2000 })
  212. return false
  213. }
  214. const providerNumber = /(^[\-0-9][0-9]*(.[0-9]+)?)$/
  215. if (!providerNumber.test(parseInt(this.table.temp.providerNumber))) {
  216. console.log(this.table.temp.providerNumber)
  217. this.$message({ type: 'error', message: '供应商编号请输入1-8位数字', duration: 2000 })
  218. return false
  219. }
  220. if (this.table.temp.telphone !== '') {
  221. const telphone = /^\d{11}$/
  222. if (!telphone.test(this.table.temp.telphone)) {
  223. this.$message({ type: 'error', message: '请输入11位手机号', duration: 2000 })
  224. return false
  225. }
  226. }
  227. this.isokDisable = true
  228. setTimeout(() => {
  229. this.isokDisable = false
  230. }, 1000)
  231. this.requestParam.name = 'insertProvider'
  232. this.requestParam.parammaps = this.table.temp
  233. PostDataByName(this.requestParam).then(response => {
  234. console.log('新增保存发送参数', this.requestParam)
  235. if (response.msg !== 'fail') {
  236. this.$notify({ title: '成功', message: '保存成功', type: 'success', duration: 2000 })
  237. this.getList()
  238. } else {
  239. this.$notify({ title: '保存失败', message: response.data, type: 'warning', duration: 2000 })
  240. }
  241. })
  242. },
  243. createCancel(row) {
  244. console.log('点击了新增取消')
  245. for (let i = 0; i < this.table.list.length; i++) {
  246. if (row.myId === this.table.list[i].myId) {
  247. var listIndex = this.table.list.indexOf(this.table.list[i])
  248. }
  249. if (listIndex > -1) {
  250. this.table.list.splice(listIndex, 1)
  251. return
  252. }
  253. }
  254. },
  255. // 编辑
  256. handleUpdate(row) {
  257. for (let i = 0; i < this.table.list.length; i++) {
  258. if (this.table.list[i].Edit == true) {
  259. this.$message({ type: 'error', message: '当前内容未保存,请点击取消或保存继续进行操作', duration: 2000 })
  260. return false
  261. }
  262. }
  263. // 编辑true,不可编辑false
  264. row.Edit = true
  265. row.NoEdit = false
  266. // 新增false,编辑false,编辑保存true
  267. row.isCreate = false
  268. row.isUpdate = false
  269. row.isUpdateSave = true
  270. },
  271. updateData(row) {
  272. console.log('点击了编辑保存', row)
  273. this.table.temp.pastureid = Cookies.get('pastureid')
  274. this.table.temp.providerNumber = row.providerNumber
  275. this.table.temp.providerName = row.providerName
  276. this.table.temp.linkman = row.linkman
  277. this.table.temp.telphone = row.telphone
  278. this.table.temp.remark = row.remark
  279. this.table.temp.enable = row.enable
  280. this.table.temp.id = row.id
  281. // 检验供应商名称/供应商编号是否为空
  282. if (this.table.temp.providerName == '' && this.table.temp.providerNumber == '') {
  283. this.$message({ type: 'error', message: '供应商名称/供应商编号不能为空', duration: 2000 })
  284. return false
  285. } else if (this.table.temp.providerNumber == '') {
  286. this.$message({ type: 'error', message: '供应商编号不能为空', duration: 2000 })
  287. return false
  288. } else if (this.table.temp.providerName == '') {
  289. this.$message({ type: 'error', message: '供应商名称不能为空', duration: 2000 })
  290. return false
  291. }
  292. const providerNumber = /(^[\-0-9][0-9]*(.[0-9]+)?)$/
  293. if (!providerNumber.test(parseInt(this.table.temp.providerNumber))) {
  294. console.log(this.table.temp.providerNumber)
  295. this.$message({ type: 'error', message: '供应商编号请输入1-8位数字', duration: 2000 })
  296. return false
  297. }
  298. if (this.table.temp.telphone !== '') {
  299. const telphone = /^\d{11}$/
  300. if (!telphone.test(this.table.temp.telphone)) {
  301. this.$message({ type: 'error', message: '请输入11位手机号', duration: 2000 })
  302. return false
  303. }
  304. }
  305. this.isokDisable = true
  306. setTimeout(() => {
  307. this.isokDisable = false
  308. }, 1000)
  309. this.requestParam.name = 'updateProvider'
  310. this.requestParam.parammaps = this.table.temp
  311. PostDataByName(this.requestParam).then(response => {
  312. console.log('编辑保存发送参数', this.requestParam)
  313. if (response.msg !== 'fail') {
  314. this.$notify({ title: '成功', message: '保存成功', type: 'success', duration: 2000 })
  315. this.getList()
  316. } else {
  317. this.$notify({ title: '保存失败', message: response.data, type: 'warning', duration: 2000 })
  318. }
  319. })
  320. },
  321. updateCancel(row) {
  322. console.log('点击了编辑取消')
  323. // 编辑false,不可编辑true
  324. row.Edit = false
  325. row.NoEdit = true
  326. // 新增false,编辑true,编辑保存false
  327. row.isCreate = false
  328. row.isUpdate = true
  329. row.isUpdateSave = false
  330. this.getList()
  331. },
  332. // 删除
  333. handleRowDelete(row) {
  334. console.log('点击了行内删除')
  335. MessageBox.confirm('是否确认删除此信息?', {
  336. confirmButtonText: '确认', cancelButtonText: '取消', type: 'warning'
  337. }).then(() => {
  338. this.selectList = []
  339. this.requestParam = {}
  340. this.requestParam.common = { 'returnmap': '0' }
  341. this.requestParam.data = []
  342. this.requestParam.data[0] = { 'name': 'checkDeleteProv', 'type': 'v', 'parammaps': {
  343. 'pastureid': row.pastureid,
  344. 'id': row.id
  345. }}
  346. this.requestParam.data[1] = { 'name': 'deleteProvider', 'type': 'e', 'parammaps': {
  347. 'pastureid': row.pastureid,
  348. 'id': row.id
  349. }}
  350. ExecDataByConfig(this.requestParam).then(response => {
  351. console.log('删除保存发送参数', this.requestParam)
  352. if (response.msg === 'fail') {
  353. this.$notify({ title: '删除失败', message: response.data, type: 'warning', duration: 2000 })
  354. } else {
  355. this.$notify({ title: '', message: '删除成功', type: 'success', duration: 2000 })
  356. this.getList()
  357. }
  358. })
  359. }).catch(() => {
  360. this.$message({ type: 'info', message: '已取消删除' })
  361. })
  362. },
  363. handleSelectionChange(val) {
  364. console.log('勾选数据', val)
  365. this.selectList = val
  366. },
  367. handleDelete() {
  368. console.log('点击了删除')
  369. if (this.selectList.length == 0) {
  370. this.$message({ type: 'error', message: '请选择供应商信息', duration: 2000 })
  371. } else {
  372. MessageBox.confirm('当前选中' + this.selectList.length + '条信息,是否删除?', {
  373. confirmButtonText: '确认', cancelButtonText: '取消', type: 'warning'
  374. }).then(() => {
  375. this.requestParam = {}
  376. this.requestParam.common = { 'returnmap': '0' }
  377. this.requestParam.data = []
  378. this.requestParam.data[0] = { 'name': 'insertSpotList', 'resultmaps': { 'list': this.selectList }}
  379. this.requestParam.data[0].children = []
  380. this.requestParam.data[0].children[0] = { 'name': 'checkDeleteProv', 'type': 'v', 'parammaps': {
  381. id: '@insertSpotList.id',
  382. pastureid: '@insertSpotList.pastureid'
  383. }}
  384. this.requestParam.data[0].children[1] = { 'name': 'deleteProvider', 'type': 'e', 'parammaps': {
  385. id: '@insertSpotList.id',
  386. pastureid: '@insertSpotList.pastureid'
  387. }}
  388. ExecDataByConfig(this.requestParam).then(response => {
  389. console.log('删除保存发送参数', this.requestParam)
  390. if (response.msg === 'fail') {
  391. this.$notify({ title: '删除失败', message: response.data, type: 'warning', duration: 2000 })
  392. } else {
  393. this.$notify({ title: '', message: '删除成功', type: 'success', duration: 2000 })
  394. this.getList()
  395. }
  396. })
  397. })
  398. }
  399. }
  400. }
  401. }
  402. </script>
  403. <style lang="scss" scoped>
  404. .search{margin-top:10px;}
  405. .table{margin-top:10px;}
  406. </style>