index.vue 25 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689
  1. <template>
  2. <div class="app-container">
  3. <el-row :gutter="24">
  4. <el-col :span="4">
  5. <el-card style="height: 100%; min-height: 100vh;">
  6. <div style="marginTop:20px;margin-left: 10px;">
  7. <el-tree
  8. :data="productNameList"
  9. v-model="table.getdataListParm.parammaps.categoryId"
  10. :props="defaultProps"
  11. @node-click="handleNodeClick"
  12. style="font-size: 26px;"
  13. :disabled="false"
  14. ></el-tree>
  15. </div>
  16. </el-card>
  17. </el-col>
  18. <el-col :span="20">
  19. <div class="operation">
  20. <el-button v-if="isRoleEdit" class="success" style="float: left;margin-right:10px;" @click="form_add">添加</el-button>
  21. <!-- <el-button v-if="isRoleEdit" class="import" style="float: right;" @click="form_inport">导入</el-button>
  22. <el-dropdown style="float: right;margin-right: 10px;">
  23. <el-button class="export">导出</el-button>
  24. <el-dropdown-menu slot="dropdown">
  25. <el-dropdown-item @click.native="form_export(1)">导出模板</el-dropdown-item>
  26. <el-dropdown-item @click.native="form_export(2)">导出数据</el-dropdown-item>
  27. </el-dropdown-menu>
  28. </el-dropdown> -->
  29. </div>
  30. <div class="search">
  31. <!-- <el-select v-model="table.getdataListParm.parammaps.categoryId" placeholder="产品类别" class="filter-item" style="width: 120px;" clearable>
  32. <el-option v-for="(item,index) in productNameList" :key="index" :label="item.name" :value="item.id" />
  33. </el-select> -->
  34. <tree-select
  35. v-model="table.getdataListParm.parammaps.categoryId"
  36. class="typeSelect"
  37. :height="300"
  38. :width="250"
  39. clearable
  40. :data="productNameList"
  41. :placeholder="placeholder"
  42. style="display: inline-block"
  43. :default-props="defaultProps"
  44. :node-key="nodeKey"
  45. :checked-keys="defaultCheckedKeysSelect"
  46. @popoverHide="popoverHideSelect"
  47. :disabled="false"
  48. />
  49. <el-input v-model="table.getdataListParm.parammaps.pname" placeholder="产品名称" style="width: 180px;" class="filter-item" clearable />
  50. <el-input v-model="table.getdataListParm.parammaps.pcode" placeholder="产品编码" style="width: 180px;" class="filter-item" clearable />
  51. <el-input v-model="table.getdataListParm.parammaps.model" placeholder="产品型号" style="width: 180px;" class="filter-item" clearable />
  52. <el-input v-model="table.getdataListParm.parammaps.Specifications" placeholder="产品规格" style="width: 180px;" class="filter-item" clearable />
  53. <el-button class="successBorder" @click="form_search">查询</el-button>
  54. <el-button class="successBorder" @click="form_clear">重置</el-button>
  55. </div>
  56. <div class="table">
  57. <el-table :key="table.tableKey" v-loading="table.listLoading" element-loading-text="给我一点时间" :data="table.list" border fit highlight-current-row style="width: 100%;" :row-style="rowStyle" :cell-style="cellStyle" class="elTable table-fixed">
  58. <!-- <el-table-column type="selection" align="center" width="50" /> -->
  59. <el-table-column label="序号" align="center" type="index" width="50px">
  60. <template slot-scope="scope">
  61. <span>{{ scope.$index + (table.pageNum-1) * table.pageSize + 1 }}</span>
  62. </template>
  63. </el-table-column>
  64. <el-table-column label="产品类别" min-width="150px" align="center">
  65. <template slot-scope="scope">
  66. <span>{{ scope.row.cname }}</span>
  67. </template>
  68. </el-table-column>
  69. <el-table-column label="产品编码" min-width="150px" align="center">
  70. <template slot-scope="scope">
  71. <span>{{ scope.row.pcode }}</span>
  72. </template>
  73. </el-table-column>
  74. <el-table-column label="产品名称" min-width="150px" align="center">
  75. <template slot-scope="scope">
  76. <span>{{ scope.row.pname }}</span>
  77. </template>
  78. </el-table-column>
  79. <el-table-column label="产品型号" min-width="150px" align="center">
  80. <template slot-scope="scope">
  81. <span>{{ scope.row.model }}</span>
  82. </template>
  83. </el-table-column>
  84. <el-table-column label="产品规格" min-width="150px" align="center">
  85. <template slot-scope="scope">
  86. <span>{{ scope.row.Specifications }}</span>
  87. </template>
  88. </el-table-column>
  89. <el-table-column label="产品图片" min-width="150px" align="center">
  90. <template slot-scope="scope">
  91. <el-popover placement="right" title="" trigger="hover">
  92. <img
  93. slot="reference"
  94. :src="scope.row.imagePath"
  95. style="height: 100px; width: 100px"
  96. />
  97. <!-- 悬停时显示的内容 -->
  98. <img
  99. :src="scope.row.imagePath"
  100. style="height: 200px; width: 200px"
  101. />
  102. </el-popover>
  103. </template>
  104. </el-table-column>
  105. <el-table-column label="备注" min-width="150px" align="center">
  106. <template slot-scope="scope">
  107. <span>{{ scope.row.remark }}</span>
  108. </template>
  109. </el-table-column>
  110. <el-table-column label="顺序" width="100px" header-align="center" align="center">
  111. <template slot-scope="scope">
  112. <span>{{ scope.row.sort }}</span>
  113. </template>
  114. </el-table-column>
  115. <el-table-column label="启用" min-width="80px" header-align="center" align="center">
  116. <template slot-scope="scope">
  117. <el-switch v-model="scope.row.enable" active-color="#13ce66" inactive-color="#ff4949" :active-value="1" :inactive-value="0" @change="change_enable(scope.$index, scope.row)" />
  118. </template>
  119. </el-table-column>
  120. <el-table-column label="操作" align="center" width="250" class-name="small-padding fixed-width" fixed="right">
  121. <template slot-scope="{row}">
  122. <!-- <el-button v-if="isRoleEdit" class="miniSuccess" @click="form_edit(row)">编辑</el-button>
  123. <el-button v-if="isRoleEdit" class="miniDanger" @click="form_delete(row)">删除</el-button> -->
  124. <el-button class="miniSuccess" @click="form_edit(row)">编辑</el-button>
  125. <el-button class="miniDanger" @click="form_delete(row)">删除</el-button>
  126. </template>
  127. </el-table-column>
  128. </el-table>
  129. <pagination v-show="table.total>=0" :total="table.total" :page.sync="table.getdataListParm.offset" :limit.sync="table.getdataListParm.pagecount" @pagination="get_table_data" />
  130. </div>
  131. <!-- 新增/编辑 -->
  132. <el-dialog :title="textMap[create.dialogStatus]" :visible.sync="create.dialogFormVisible" :close-on-click-modal="false" width="40%">
  133. <div class="app-add">
  134. <el-form ref="temp" :rules="create.rules" :model="create.temp" label-position="right" label-width="150px" style="width: 80%;margin:0 auto 50px">
  135. <el-form-item label="产品类别:" style="width: 400px;" class="filter-item" prop="categoryId">
  136. <tree-select
  137. class="typeSelect"
  138. :height="300"
  139. :width="250"
  140. size="small"
  141. clearable
  142. :data="productNameList"
  143. :placeholder="placeholder"
  144. style="display:inline-block;"
  145. :default-props="defaultProps"
  146. :node-key="nodeKey"
  147. :checked-keys="defaultCheckedKeys"
  148. @popoverHide="popoverHide"
  149. :disabled="disabled"
  150. />
  151. </el-form-item>
  152. <el-form-item label="产品编码:" prop="pcode">
  153. <el-input ref="pname" v-model="create.temp.pcode" class="filter-item" style="width: 100%;" />
  154. </el-form-item>
  155. <el-form-item label="产品名称:" prop="pname">
  156. <el-input ref="pname" v-model="create.temp.pname" class="filter-item" style="width: 100%;" />
  157. </el-form-item>
  158. <el-form-item label="产品型号:" prop="model">
  159. <el-input ref="model" v-model="create.temp.model" class="filter-item" style="width: 100%;" />
  160. </el-form-item>
  161. <el-form-item label="产品规格:" prop="Specifications">
  162. <el-input ref="Specifications" v-model="create.temp.Specifications" class="filter-item" style="width: 100%;" />
  163. </el-form-item>
  164. <el-form-item label="备注:" prop="remark">
  165. <el-input ref="remark" class="filter-item" v-model="create.temp.remark" />
  166. </el-form-item>
  167. <el-form-item label="顺序:" prop="sort">
  168. <el-input ref="sort" class="filter-item" v-model="create.temp.sort" />
  169. </el-form-item>
  170. <el-form-item label="启用:" prop="enable">
  171. <el-switch ref="enable" class="filter-item" v-model="create.temp.enable" active-color="#13ce66" inactive-color="#ff4949" :active-value="1" :inactive-value="0" />
  172. </el-form-item>
  173. <el-form-item label="产品图片:">
  174. <el-upload id="uploadPic"
  175. :action="uploadImageUrl"
  176. :limit='1'
  177. :file-list="fileList"
  178. list-type="picture-card"
  179. :on-preview="handlePictureCardPreview"
  180. :on-change="(file, fileList) => handlePicChange(file, fileList)"
  181. :on-success="(response, file, fileList) => handlePicSuccess(response, file, fileList)"
  182. :headers="headers"
  183. :disabled="isView"
  184. :on-remove="(file, fileList) => handlePicRemove(file, fileList)"
  185. >
  186. <i slot="default" class="el-icon-plus"></i>
  187. </el-upload>
  188. <el-dialog :visible.sync="dialogVisible">
  189. <img width="100%" :src="dialogImageUrl" alt="">
  190. </el-dialog>
  191. </el-form-item>
  192. </el-form>
  193. <div slot="footer" class="dialog-footer">
  194. <el-button class="cancelClose" @click="create.dialogFormVisible = false;defaultCheckedKeys = [];this.dialogImageUrl = '';get_table_data()">关闭</el-button>
  195. <el-button v-if="create.dialogStatus==='create' || create.dialogStatus==='update'" class="success" @click="create.dialogStatus==='create'?add_dialog_save():form_edit_save();this.dialogImageUrl = '';">确认</el-button>
  196. </div>
  197. </div>
  198. </el-dialog>
  199. </el-col>
  200. </el-row>
  201. </div>
  202. </template>
  203. <script>
  204. import { GetDataByName, PostDataByName, failproccess, ExecDataByConfig, GetDataByNames, checkButtons, calculativeWidth,transData } from '@/api/common'
  205. import { isIntegerZero } from '@/utils/validate'
  206. import Cookies from 'js-cookie'
  207. import TreeSelect from '@/components/TreeSelect';
  208. import { parseTime } from '@/utils/index.js'
  209. import Pagination from '@/components/Pagination'
  210. import { MessageBox } from 'element-ui'
  211. import { getToken } from '@/utils/auth'
  212. export default {
  213. name: 'ProductList',
  214. components: { Pagination,TreeSelect },
  215. data() {
  216. return {
  217. handlePictureCardPreview(file) {
  218. this.dialogImageUrl = file.url;
  219. this.dialogVisible = true;
  220. },
  221. dialogImageUrl: '',
  222. dialogVisible: false,
  223. uploadImageUrl: process.env.VUE_APP_BASE_API + 'authdata/uploaderimage',
  224. //图片请求头
  225. headers: { optname: 'insertcustompic', id: 1,token: getToken()},
  226. isRoleEdit: [],
  227. productNameList: [], // 产品类别下拉框
  228. placeholder: '请选择上级分类',
  229. defaultProps: {
  230. children: 'children',
  231. label: 'name', // 根据实际字段名调整
  232. },
  233. disabled: false, // 是否禁用
  234. nodeKey: 'id', // 节点的唯一标识字段
  235. defaultCheckedKeys: [],
  236. defaultCheckedKeysSelect :[],
  237. fileList: [],
  238. //表格请求参数~
  239. table: {
  240. getdataListParm: {
  241. name: 'getProducts',
  242. page: 1,
  243. offset: 1,
  244. pagecount: parseInt(Cookies.get('pagecount')),
  245. returntype: 'Map',
  246. parammaps: {
  247. categoryId: '',
  248. pname: '',
  249. model: '',
  250. Specifications: '',
  251. pcode:'',
  252. }
  253. },
  254. tableKey: 0,
  255. list: [],
  256. total: 0,
  257. listLoading: true,
  258. temp: {}
  259. },
  260. // 新增/编辑
  261. create: {
  262. dialogFormVisible: false,
  263. dialogStatus: '',
  264. temp: {
  265. categoryId: '',
  266. pname: '',
  267. model: '',
  268. Specifications: '',
  269. remark: '',
  270. sort: '',
  271. enable: 1,
  272. pcode:'',
  273. pImage:'',
  274. },
  275. rules: {
  276. pname: [{ type: 'string', required: true, message: '必填', trigger: 'blur' }],
  277. model: [{ type: 'string', required: true, message: '必填', trigger: 'blur' }],
  278. Specifications: [{ type: 'string', required: true, message: '必填', trigger: 'blur' }],
  279. sort: [{ validator: isIntegerZero, trigger: 'blur' }],
  280. pcode: [{ type: 'string', required: true, message: '必填', trigger: 'blur' }]
  281. },
  282. },
  283. textMap: {
  284. create: '添加',
  285. update: '编辑'
  286. },
  287. requestParam: {},
  288. rowStyle: { maxHeight: 50 + 'px', height: 45 + 'px' },
  289. cellStyle: { padding: 0 + 'px' }
  290. }
  291. },
  292. computed: {
  293. // 设置请求头
  294. headers() {
  295. return {
  296. // 设置token
  297. token: getToken()
  298. }
  299. }
  300. },
  301. created() {
  302. this.get_table_data()
  303. this.get_select_list()
  304. // this.get_auto_buttons()
  305. },
  306. methods: {
  307. handlePicChange(file, fileList) {
  308. },
  309. handlePicRemove(file, fileList) {
  310. console.log(file, fileList);
  311. console.log(fileList.length);
  312. if (fileList.length == 1) {
  313. document.getElementById('uploadPic').lastChild.style.display = "none"
  314. } else {
  315. document.getElementById('uploadPic').lastChild.style.display = "inline-block"
  316. }
  317. },
  318. handlePicSuccess(response, file, fileList) {
  319. if (fileList.length == 1) {
  320. document.getElementById('uploadPic').lastChild.style.display = "none"
  321. } else {
  322. document.getElementById('uploadPic').lastChild.style.display = "inline-block"
  323. }
  324. this.$set(this.create.temp, 'pImage', response.execresult.LastInsertId);
  325. },
  326. andlePictureCardPreview(file) {
  327. this.dialogImageUrl = file.url;
  328. this.dialogVisible = true;
  329. },
  330. popoverHideSelect(checkedIds, checkedData) {
  331. if (checkedIds !== null) {
  332. this.table.getdataListParm.parammaps.categoryId = checkedData.id;
  333. } else {
  334. this.table.getdataListParm.parammaps.categoryId ='';
  335. }
  336. },
  337. handleNodeClick(data, node) {
  338. this.table.getdataListParm.parammaps.categoryId = data.id;
  339. this.get_table_data_left();
  340. },
  341. popoverHide(checkedIds, checkedData) {
  342. console.log(checkedIds, checkedData);
  343. if (checkedData == null) {
  344. this.$set(this.create.temp, 'pcode', '');
  345. this.create.temp.categoryId = '';
  346. }else{
  347. this.$set(this.create.temp, 'pcode', checkedData.code);
  348. this.create.temp.categoryId = checkedData.id;
  349. }
  350. },
  351. //获取按钮权限
  352. get_auto_buttons() {
  353. const Edit = 'DungScores'
  354. const isRoleEdit = checkButtons(JSON.parse(sessionStorage.getItem('buttons')), Edit)
  355. this.isRoleEdit = isRoleEdit
  356. },
  357. //获取所有下拉框的内容
  358. get_select_list() {
  359. GetDataByName({ name: 'getCategorySelect', offset: 0, pagecount: 0, parammaps: {} }, ).then(response => {
  360. this.productNameList = response.data.list
  361. this.productNameList= transData(response.data.list, 'id', 'pid', 'children');
  362. console.log("产品类别下拉框", response);
  363. })
  364. },
  365. //加载表格
  366. get_table_data() {
  367. this.table.listLoading = true
  368. console.log("this.table.getdataListParm======>", this.table.getdataListParm)
  369. GetDataByName(this.table.getdataListParm).then(response => {
  370. console.log('table数据======>', response.data.list)
  371. if (response.data.list !== null) {
  372. for (var i = 0; i < response.data.list.length; i++) {
  373. response.data.list[i].enable = parseInt(response.data.list[i].enable)
  374. if ( response.data.list[i].pImage !== '') {
  375. response.data.list[i].imagePath = process.env.VUE_APP_BASE_API + response.data.list[i].imagePath;
  376. } else {
  377. response.data.list[i].imagePath = ''
  378. }
  379. }
  380. this.table.list = response.data.list
  381. this.table.pageNum = response.data.pageNum
  382. this.table.pageSize = response.data.pageSize
  383. this.table.total = response.data.total
  384. } else {
  385. this.table.list = []
  386. }
  387. setTimeout(() => {
  388. this.table.listLoading = false
  389. }, 100)
  390. })
  391. },
  392. get_table_data_left() {
  393. this.table.listLoading = true
  394. console.log("this.table.getdataListParm======>", this.table.getdataListParm)
  395. GetDataByName(this.table.getdataListParm).then(response => {
  396. console.log('table数据======>', response.data.list)
  397. if (response.data.list !== null) {
  398. for (var i = 0; i < response.data.list.length; i++) {
  399. response.data.list[i].enable = parseInt(response.data.list[i].enable)
  400. }
  401. this.table.list = response.data.list
  402. this.table.pageNum = response.data.pageNum
  403. this.table.pageSize = response.data.pageSize
  404. this.table.total = response.data.total
  405. } else {
  406. this.table.list = []
  407. }
  408. this.table.getdataListParm.parammaps.categoryId = '';
  409. setTimeout(() => {
  410. this.table.listLoading = false
  411. }, 100)
  412. })
  413. },
  414. form_search() {
  415. console.log('点击了查询')
  416. this.table.getdataListParm.offset = 1
  417. this.get_table_data()
  418. },
  419. form_clear() {
  420. console.log('点击了重置')
  421. this.table.getdataListParm.parammaps.categoryId = ''
  422. this.table.getdataListParm.parammaps.pname = ''
  423. this.table.getdataListParm.parammaps.model = ''
  424. this.table.getdataListParm.parammaps.Specifications = ''
  425. this.table.getdataListParm.offset = 1
  426. this.get_table_data()
  427. },
  428. // 添加
  429. form_reset() {
  430. this.create.temp = { categoryId: '', pname: '', model: '', Specifications: '', remark: '', sort: '', enable: 1 }
  431. },
  432. //监听 - 表格中产品类别
  433. change_bar(item) {
  434. this.create.temp.cname = this.productNameList.find(obj => obj.id === item).name
  435. },
  436. //添加
  437. form_add() {
  438. console.log('点击了新增')
  439. this.form_reset()
  440. // this.dialogImageUrl = row.imagePath;
  441. this.create.dialogStatus = 'create'
  442. this.create.dialogFormVisible = true
  443. this.fileList = [];
  444. // if (row.imagePath !== ''){
  445. // const fileList = [];
  446. // var urlObj = { "url": "", "response": { "execresult": { "LastInsertId": "" } } };
  447. // urlObj.url = row.imagePath;
  448. // urlObj.response.execresult.LastInsertId = row.pImage;
  449. // fileList.push(urlObj);
  450. // this.fileList = fileList;
  451. // }
  452. },
  453. //添加保存
  454. add_dialog_save() {
  455. console.log('点击了新增保存')
  456. this.$refs['temp'].validate(valid => {
  457. if (valid) {
  458. //新增保存
  459. this.requestParam.name = 'insertProducts'
  460. this.requestParam.parammaps = this.create.temp
  461. this.requestParam = {
  462. data: [
  463. {
  464. name: "CheckProductPCode",
  465. type: "v",
  466. parammaps :{
  467. pcode :this.create.temp.pcode,
  468. id :''
  469. }
  470. },
  471. {
  472. name: "insertProducts",
  473. type: "e",
  474. parammaps: this.create.temp,
  475. },
  476. ]
  477. }
  478. ExecDataByConfig(this.requestParam).then(response => {
  479. console.log('新增保存发送参数', this.requestParam)
  480. if (response.msg !== 'fail') {
  481. this.defaultCheckedKeys = [];
  482. this.$notify({ title: '成功', message: '保存成功', type: 'success', duration: 2000 })
  483. this.create.dialogFormVisible = false
  484. this.get_table_data()
  485. } else {
  486. this.$notify({ title: '失败', message: response.data, type: 'error', duration: 2000 })
  487. }
  488. })
  489. }
  490. })
  491. },
  492. // 编辑
  493. form_edit(row) {
  494. console.log('点击了编辑', row)
  495. row.categoryId = String(row.categoryId)
  496. // this.dialogImageUrl = row.imagePath;
  497. this.create.temp = Object.assign({}, row)
  498. this.create.temp.id = row.id
  499. this.create.dialogStatus = 'update'
  500. this.create.dialogFormVisible = true
  501. // this.create.pcode = row.pcode;
  502. this.defaultCheckedKeys =[row.categoryId] ;
  503. console.log(row.imagePath);
  504. if (row.pImage !== ''){
  505. const fileList = [];
  506. var urlObj = { "url": "", "response": { "execresult": { "LastInsertId": "" } } };
  507. urlObj.url = row.imagePath;
  508. urlObj.response.execresult.LastInsertId = row.pImage;
  509. fileList.push(urlObj);
  510. this.fileList = fileList;
  511. }else{
  512. this.fileList = [];
  513. this.dialogImageUrl = '';
  514. }
  515. },
  516. // 编辑保存
  517. form_edit_save() {
  518. this.$refs['temp'].validate(valid => {
  519. if (valid) {
  520. // this.requestParam.name = 'updateProducts'
  521. // this.requestParam.parammaps = this.create.temp
  522. this.requestParam = {
  523. data: [
  524. {
  525. name: "CheckProductPCode",
  526. type: "v",
  527. parammaps :{
  528. pcode :this.create.temp.pcode,
  529. id : this.create.temp.id
  530. }
  531. },
  532. {
  533. name: "updateProducts",
  534. type: "e",
  535. parammaps: this.create.temp,
  536. },
  537. ]
  538. }
  539. ExecDataByConfig(this.requestParam).then(response => {
  540. console.log('编辑保存发送参数', this.requestParam)
  541. if (response.msg !== 'fail') {
  542. this.$notify({ title: '成功', message: '保存成功', type: 'success', duration: 2000 })
  543. this.create.dialogFormVisible = false
  544. this.defaultCheckedKeys = [];
  545. this.get_table_data()
  546. } else {
  547. this.$notify({ title: '失败', message: '保存失败', type: 'error', duration: 2000 })
  548. }
  549. })
  550. }
  551. })
  552. },
  553. // 表格中的启用
  554. change_enable(index, row) {
  555. this.requestParam.name = 'updateProducts'
  556. this.requestParam.parammaps = {
  557. id: row.id,
  558. categoryId: row.categoryId,
  559. pname: row.pname,
  560. model: row.model,
  561. Specifications: row.Specifications,
  562. cname: row.cname,
  563. remark: row.remark,
  564. sort: row.sort,
  565. enable: row.enable
  566. }
  567. PostDataByName(this.requestParam).then(response => {
  568. console.log('表格中的启用发送参数', this.requestParam)
  569. if (response.msg !== 'fail') {
  570. this.$notify({ title: '成功', message: '保存成功', type: 'success', duration: 2000 })
  571. this.create.dialogFormVisible = false
  572. this.get_table_data()
  573. } else {
  574. this.$notify({ title: '失败', message: '保存失败', type: 'error', duration: 2000 })
  575. }
  576. })
  577. },
  578. // 删除
  579. form_delete(row) {
  580. MessageBox.confirm('是否确认删除此信息?', {
  581. confirmButtonText: '确认', cancelButtonText: '取消', type: 'warning'
  582. }).then(() => {
  583. this.requestParam.name = 'delProducts'
  584. this.requestParam.parammaps = {}
  585. this.requestParam.parammaps.id = row.id
  586. PostDataByName(this.requestParam).then(response => {
  587. if (response.msg === 'fail') {
  588. this.$notify({ title: '删除失败', message: response.data, type: 'warning', duration: 2000 })
  589. } else {
  590. this.$notify({ title: '成功', message: '删除成功', type: 'success', duration: 2000 })
  591. this.get_table_data()
  592. }
  593. })
  594. }).catch(() => {
  595. this.$message({ type: 'info', message: '已取消删除' })
  596. })
  597. },
  598. // 导出
  599. form_export(item) {
  600. if (item == 1) {
  601. console.log('点击了导出模板')
  602. } else {
  603. console.log('点击了导出数据')
  604. }
  605. },
  606. // 导入
  607. form_inport() {
  608. console.log('点击了导入')
  609. }
  610. }
  611. }
  612. </script>
  613. <style lang="scss" scoped>
  614. .search {
  615. padding-top: 10px;
  616. clear: both;
  617. }
  618. .table {
  619. margin-top: 10px;
  620. }
  621. </style>
  622. <style lang="scss" scoped>
  623. .custom-tree {
  624. font-size: 26px; /* 设置字体大小 */
  625. }
  626. </style>