index.vue 38 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911
  1. <template>
  2. <div class="app-container">
  3. <el-tabs v-model="activeName" @tab-click="handleClick">
  4. <el-tab-pane label="仪表盘" name="first">
  5. <div class="search">
  6. <el-input v-model="table.getdataListParm.parammaps.dname" placeholder="仪表盘名称" style="width: 180px;" class="filter-item" clearable />
  7. <el-select v-model="table.getdataListParm.parammaps.statue" placeholder="状态" class="filter-item" style="width: 120px;" clearable>
  8. <el-option v-for="item in statueList" :key="item.id" :label="item.value" :value="item.id" />
  9. </el-select>
  10. <el-button class="successBorder" @click="form_search">{{$t('common.query')}}</el-button>
  11. <el-button class="successBorder" @click="handleRefresh">{{$t('common.reset')}}</el-button>
  12. </div>
  13. <div class="operation">
  14. <el-button v-if="isRoleEdit" class="success" icon="el-icon-plus" @click="handleCreate">{{$t('formulationEvaluation.add')}}</el-button>
  15. </div>
  16. <div class="table">
  17. <el-form ref="form" :rules="table.rules" :model="table">
  18. <el-table
  19. :key="table.tableKey"
  20. v-loading="table.listLoading"
  21. :element-loading-text="$t('common.tableMsg')"
  22. :data="table.list"
  23. border
  24. fit
  25. highlight-current-row
  26. style="width: 100%;"
  27. :row-style="rowStyle"
  28. :cell-style="cellStyle"
  29. class="elTable table-fixed"
  30. >
  31. <!-- <el-table-column type="selection" align="center" width="50" /> -->
  32. <el-table-column :label="$t('formulationEvaluation.xh')" align="center" type="index" width="50px">
  33. <template slot-scope="scope">
  34. <span>{{ scope.$index + (table.pageNum-1) * table.pageSize + 1 }}</span>
  35. </template>
  36. </el-table-column>
  37. <el-table-column label="仪表盘名称" min-width="180px" align="center">
  38. <template slot-scope="scope">
  39. <span v-if="scope.row.NoEdit">{{ scope.row.dname }}</span>
  40. <el-input v-if="scope.row.Edit" v-model="scope.row.dname" type="textarea" :autosize="{ minRows: 1.3, maxRows: 4}" style="width:95%;padding:0 10px;" maxlength="32" />
  41. </template>
  42. </el-table-column>
  43. <el-table-column label="仪表盘描述" min-width="180px" align="center">
  44. <template slot-scope="scope">
  45. <span v-if="scope.row.NoEdit">{{ scope.row.display }}</span>
  46. <el-input v-if="scope.row.Edit" v-model="scope.row.display" type="textarea" :autosize="{ minRows: 1.3, maxRows: 4}" style="width:95%;padding:0 10px;" maxlength="32" />
  47. </template>
  48. </el-table-column>
  49. <el-table-column :label="$t('premixedPlan.status')" min-width="100px" align="center">
  50. <template slot-scope="scope">
  51. <span v-if="scope.row.NoEdit && scope.row.statue == 1">公开</span>
  52. <span v-if="scope.row.NoEdit && scope.row.statue == 0">私有</span>
  53. <el-select v-if="scope.row.Edit" v-model="scope.row.statue" filterable placeholder="状态" class="filter-item" style="width:95%;padding:10px 0;" @change="changeStatue">
  54. <el-option v-for="item in statueList" :key="item.id" :label="item.value" :value="item.id" />
  55. </el-select>
  56. </template>
  57. </el-table-column>
  58. <el-table-column label="分发角色" min-width="150px" align="center">
  59. <template slot-scope="scope">
  60. <span v-if="scope.row.NoEdit">{{ scope.row.rolenames }}</span>
  61. <el-select v-if="scope.row.Edit" v-model="scope.row.rolenamesId" multiple filterable placeholder="分发角色" class="filter-item" style="width:95%;padding:10px 0;" @change="changeRole">
  62. <el-option v-for="item in roleList" :key="item.id" :label="item.rolename" :value="item.id" />
  63. </el-select>
  64. </template>
  65. </el-table-column>
  66. <el-table-column label="显示到菜单" min-width="90px" align="center">
  67. <template slot-scope="scope">
  68. <el-switch v-model="scope.row.reportenable" :disabled="scope.row.NoEdit==true" active-color="#13ce66" inactive-color="#ff4949" :active-value="1" :inactive-value="0" @change="handleEnableChange(scope.$index, scope.row)" />
  69. </template>
  70. </el-table-column>
  71. <el-table-column :label="$t('role.cjr')" min-width="90px" align="center">
  72. <template slot-scope="scope">
  73. <span>{{ scope.row.emp }}</span>
  74. </template>
  75. </el-table-column>
  76. <el-table-column
  77. :label="$t('supplier.cjsj')" min-width="90px" align="center">
  78. <template slot-scope="scope">
  79. <span>{{ scope.row.opratetime }}</span>
  80. </template>
  81. </el-table-column>
  82. <el-table-column :label="$t('errorAnalysis.cz')" align="center" width="180" class-name="small-padding fixed-width" fixed="right">
  83. <template slot-scope="{row}">
  84. <!-- 跳转页面 -->
  85. <el-button class="miniSuccess" icon="el-icon-search" @click="jumpSee(row)" />
  86. <span v-if="isRoleEdit" class="centerSpan">|</span>
  87. <!-- <el-button class="miniSuccess" :disabled="row.empid != empid" @click="jumpEdit(row)">修改仪表盘</el-button> -->
  88. <!-- 新增 -->
  89. <el-button v-if="row.isCreate && isRoleEdit" class="miniSuccess" :disabled="isokDisable" icon="el-icon-folder-checked" @click="createData(row)" />
  90. <span v-if="row.isCreate && isRoleEdit" class="centerSpan">|</span>
  91. <el-button v-if="row.isCreate && isRoleEdit" class="minCancel" icon="el-icon-close" @click="createCancel(row)" />
  92. <!-- 编辑 -->
  93. <el-button v-if="row.isUpdate &&isRoleEdit" class="miniSuccess" :disabled="row.empid != empid" icon="el-icon-edit-outline" @click="handleUpdate(row)" />
  94. <span v-if="row.isUpdate &&isRoleEdit" class="centerSpan">|</span>
  95. <el-button v-if="row.isUpdate &&isRoleEdit" class="miniDanger" :disabled="row.empid != empid" icon="el-icon-delete" @click="handleRowDelete(row)" />
  96. <!-- 编辑保存 -->
  97. <el-button v-if="row.isUpdateSave && isRoleEdit" class="miniSuccess" :disabled="isokDisable" icon="el-icon-folder-checked" @click="updateData(row)" />
  98. <span v-if="row.isUpdateSave && isRoleEdit" class="centerSpan">|</span>
  99. <el-button v-if="row.isUpdateSave && isRoleEdit" class="minCancel" icon="el-icon-close" @click="updateCancel(row)" />
  100. </template>
  101. </el-table-column>
  102. </el-table>
  103. </el-form>
  104. <pagination v-show="table.total>=0" :total="table.total" :page.sync="table.getdataListParm.offset" :limit.sync="table.getdataListParm.pagecount" @pagination="getList" />
  105. </div>
  106. </el-tab-pane>
  107. <el-tab-pane label="图表" name="second">
  108. <div class="search">
  109. <el-input v-model="table2.getdataListParm.parammaps.dname" placeholder="图表名称" style="width: 180px;" class="filter-item" clearable />
  110. <el-select v-model="table2.getdataListParm.parammaps.statue" placeholder="状态" class="filter-item" style="width: 120px;" clearable>
  111. <el-option v-for="item in statueList2" :key="item.id" :label="item.value" :value="item.id" />
  112. </el-select>
  113. <el-button class="successBorder" @click="form_search2">{{$t('common.query')}}</el-button>
  114. <el-button class="successBorder" @click="handleRefresh2">{{$t('common.reset')}}</el-button>
  115. </div>
  116. <div class="operation">
  117. <el-button v-if="isRoleEdit" class="success" icon="el-icon-plus" @click="handleCreate2">{{$t('formulationEvaluation.add')}}</el-button>
  118. </div>
  119. <div class="table">
  120. <el-form ref="form" :rules="table2.rules" :model="table2">
  121. <el-table
  122. :key="table2.tableKey"
  123. v-loading="table2.listLoading"
  124. :element-loading-text="$t('common.tableMsg')"
  125. :data="table2.list"
  126. border
  127. fit
  128. highlight-current-row
  129. style="width: 100%;"
  130. :row-style="rowStyle"
  131. :cell-style="cellStyle"
  132. class="elTable table-fixed"
  133. >
  134. <!-- <el-table-column type="selection" align="center" width="50" /> -->
  135. <el-table-column :label="$t('formulationEvaluation.xh')" align="center" type="index" width="50px">
  136. <template slot-scope="scope">
  137. <span>{{ scope.$index + (table2.pageNum-1) * table2.pageSize + 1 }}</span>
  138. </template>
  139. </el-table-column>
  140. <el-table-column label="图表名称" min-width="200px" align="center">
  141. <template slot-scope="scope">
  142. <span v-if="scope.row.NoEdit">{{ scope.row.cname }}</span>
  143. <el-input v-if="scope.row.Edit" v-model="scope.row.cname" type="textarea" :autosize="{ minRows: 1.3, maxRows: 4}" style="width:95%;padding:0 10px;" maxlength="32" />
  144. </template>
  145. </el-table-column>
  146. <el-table-column label="图表描述" min-width="200px" align="center">
  147. <template slot-scope="scope">
  148. <span v-if="scope.row.NoEdit">{{ scope.row.display }}</span>
  149. <el-input v-if="scope.row.Edit" v-model="scope.row.display" type="textarea" :autosize="{ minRows: 1.3, maxRows: 4}" style="width:95%;padding:0 10px;" maxlength="32" />
  150. </template>
  151. </el-table-column>
  152. <el-table-column :label="$t('premixedPlan.status')" min-width="200px" align="center">
  153. <template slot-scope="scope">
  154. <span v-if="scope.row.NoEdit && scope.row.statue == 1">公开</span>
  155. <span v-if="scope.row.NoEdit && scope.row.statue == 0">私有</span>
  156. <el-select v-if="scope.row.Edit" v-model="scope.row.statue" filterable placeholder="状态" class="filter-item" style="width:95%;padding:10px 0;" @change="changeStatue2">
  157. <el-option v-for="item in statueList" :key="item.id" :label="item.value" :value="item.id" />
  158. </el-select>
  159. </template>
  160. </el-table-column>
  161. <el-table-column :label="$t('role.cjr')" min-width="90px" align="center">
  162. <template slot-scope="scope">
  163. <span>{{ scope.row.emp }}</span>
  164. </template>
  165. </el-table-column>
  166. <el-table-column
  167. :label="$t('supplier.cjsj')" min-width="90px" align="center">
  168. <template slot-scope="scope">
  169. <span>{{ scope.row.opratetime }}</span>
  170. </template>
  171. </el-table-column>
  172. <el-table-column :label="$t('errorAnalysis.cz')" align="center" width="200" class-name="small-padding fixed-width" fixed="right">
  173. <template slot-scope="{row}">
  174. <!-- 跳转页面 -->
  175. <el-button class="miniSuccess" icon="el-icon-search" @click="jumpSee2(row)" />
  176. <span v-if="isRoleEdit" class="centerSpan">|</span>
  177. <a v-if="isRoleEdit" class="correcting" :disabled="row.empid != empid" @click="jumpEdit2(row)">修改图表</a>
  178. <span v-if="isRoleEdit" class="centerSpan">|</span>
  179. <!-- 新增 -->
  180. <el-button v-if="row.isCreate && isRoleEdit" class="miniSuccess" :disabled="isokDisable" icon="el-icon-folder-checked" @click="createData2(row)" />
  181. <span v-if="row.isCreate && isRoleEdit" class="centerSpan">|</span>
  182. <el-button v-if="row.isCreate && isRoleEdit" class="minCancel" icon="el-icon-close" @click="createCancel2(row)" />
  183. <!-- 编辑 -->
  184. <el-button v-if="row.isUpdate && isRoleEdit" class="miniSuccess" :disabled="row.empid != empid" icon="el-icon-edit-outline" @click="handleUpdate2(row)" />
  185. <span v-if="row.isUpdate && isRoleEdit" class="centerSpan">|</span>
  186. <el-button v-if="row.isUpdate && isRoleEdit" class="miniDanger" :disabled="row.empid != empid" icon="el-icon-delete" @click="handleRowDelete2(row)" />
  187. <!-- 编辑保存 -->
  188. <el-button v-if="row.isUpdateSave && isRoleEdit" class="miniSuccess" :disabled="isokDisable" icon="el-icon-folder-checked" @click="updateData2(row)" />
  189. <span v-if="row.isUpdateSave && isRoleEdit" class="centerSpan">|</span>
  190. <el-button v-if="row.isUpdateSave && isRoleEdit" class="minCancel" icon="el-icon-close" @click="updateCancel2(row)" />
  191. </template>
  192. </el-table-column>
  193. </el-table>
  194. </el-form>
  195. <pagination v-show="table2.total>=0" :total="table2.total" :page.sync="table2.getdataListParm.offset" :limit.sync="table2.getdataListParm.pagecount" @pagination="getList2" />
  196. </div>
  197. </el-tab-pane>
  198. </el-tabs>
  199. <el-dialog title="新增仪表盘" width="750px" :visible.sync="editDialogVisible">
  200. <el-form label-width="160px">
  201. <el-form-item label="仪表盘名称">
  202. <el-input v-model="dbObj.dname" size="small" style="width: 450px;" placeholder="请输入仪表盘名称" />
  203. </el-form-item>
  204. <el-form-item label="仪表盘描述">
  205. <el-input v-model="dbObj.display" type="textarea" :rows="5" size="small" style="width: 450px;" placeholder="请输入仪表盘描述" />
  206. </el-form-item>
  207. </el-form>
  208. <div slot="footer" class="dialog-footer" style="bottom: 10px;">
  209. <el-button class="cancelClose" @click="editDialogVisible = false">{{$t('formulationEvaluation.cancel')}}</el-button>
  210. <el-button class="save" @click="handleSubmit"> 确认</el-button>
  211. </div>
  212. </el-dialog>
  213. </div>
  214. </template>
  215. <script>
  216. import { GetDataByName, GetDataByNames, PostDataByName, failproccess, ExecDataByConfig, checkButtons } from '@/api/common'
  217. import Cookies from 'js-cookie'
  218. import Pagination from '@/components/Pagination'
  219. import { MessageBox } from 'element-ui'
  220. export default {
  221. name: 'BoardEchartManagement2',
  222. components: { Pagination },
  223. data() {
  224. return {
  225. empid: Cookies.get('employeid'),
  226. editDialogVisible: false,
  227. dbObj: {},
  228. // requestParams: [
  229. // { name: 'getDictByName', offset: 0, pagecount: 0, params: ['牲畜父类'] }
  230. // ],
  231. requestParams: [
  232. { name: 'getRoleAll', offset: 0, pagecount: 0, parammaps: { pastureid: Cookies.get('pastureid') }}
  233. ],
  234. statueList: [{ id: '1', value: '公开' }, { id: '0', value: '私有' }],
  235. statueList2: [{ id: '1', value: '公开' }, { id: '0', value: '私有' }],
  236. roleList: [],
  237. rolenamesIdTempArr: [],
  238. table: {
  239. rules: {
  240. name: { type: 'string', required: true, message: '必填字段', trigger: 'change' }
  241. },
  242. getdataListParm: {
  243. name: 'getDashboardList',
  244. page: 1,
  245. offset: 1,
  246. pagecount: parseInt(Cookies.get('pageCount')),
  247. returntype: 'Map',
  248. parammaps: {
  249. pastureid: Cookies.get('pastureid'),
  250. dname: '',
  251. statue: '',
  252. empid: Cookies.get('employeid')
  253. }
  254. },
  255. tableKey: 0,
  256. list: [],
  257. total: 0,
  258. listLoading: true,
  259. temp: {}
  260. },
  261. table2: {
  262. rules: {
  263. name: { type: 'string', required: true, message: '必填字段', trigger: 'change' }
  264. },
  265. getdataListParm: {
  266. name: 'getChartList',
  267. page: 1,
  268. offset: 1,
  269. pagecount: parseInt(Cookies.get('pageCount')),
  270. returntype: 'Map',
  271. parammaps: {
  272. pastureid: Cookies.get('pastureid'),
  273. cname: '',
  274. statue: '',
  275. empid: Cookies.get('employeid')
  276. }
  277. },
  278. tableKey: 0,
  279. list: [],
  280. total: 0,
  281. listLoading: true,
  282. temp: {}
  283. },
  284. requestParam: {},
  285. isokDisable: false,
  286. selectList: [],
  287. rowStyle: { maxHeight: 30 + 'px', height: 30 + 'px' },
  288. cellStyle: { padding: 0 + 'px' },
  289. activeName: 'first',
  290. isRoleEdit: []
  291. }
  292. },
  293. created() {
  294. this.getList()
  295. this.getList2()
  296. this.getDownList()
  297. this.getButtons()
  298. if (this.$route.params.tab == 'second') {
  299. this.activeName = 'second'
  300. } else {
  301. this.activeName = 'first'
  302. }
  303. },
  304. methods: {
  305. getButtons() {
  306. const Edit = 'BoardEchartManagement'
  307. const isRoleEdit = checkButtons(JSON.parse(sessionStorage.getItem('buttons')), Edit)
  308. this.isRoleEdit = isRoleEdit
  309. },
  310. handleClick(tab, event) {
  311. console.log(tab, event)
  312. },
  313. getDownList() {
  314. GetDataByNames(this.requestParams).then(response => {
  315. console.log('下拉框数据', response.data)
  316. this.roleList = response.data.getRoleAll.list
  317. })
  318. },
  319. getList() {
  320. this.table.listLoading = true
  321. console.log(this.table.getdataListParm)
  322. GetDataByName(this.table.getdataListParm).then(response => {
  323. console.log('table数据', response.data.list)
  324. if (response.data.list !== null) {
  325. for (let i = 0; i < response.data.list.length; i++) {
  326. this.$set(response.data.list[i], 'Edit', false) // 编辑
  327. this.$set(response.data.list[i], 'NoEdit', true) // 不可编辑/输入
  328. this.$set(response.data.list[i], 'isCreate', false) // 新增操作
  329. this.$set(response.data.list[i], 'isUpdate', true) // 编辑操作
  330. this.$set(response.data.list[i], 'isUpdateSave', false) // 编辑保存
  331. }
  332. var arr = response.data.list
  333. arr.map(function(i, j) {
  334. // console.log(i, '====')
  335. if (i.roleids) {
  336. return i.rolenamesId = i.roleids.split(',')
  337. } else {
  338. return i.rolenamesId = []
  339. }
  340. })
  341. arr.map(function(i, j) {
  342. if (i.roleids) {
  343. return i.rolenamesId2B = i.roleids.split(',')
  344. } else {
  345. return i.rolenamesId2B = []
  346. }
  347. })
  348. this.table.list = arr
  349. this.table.pageNum = response.data.pageNum
  350. this.table.pageSize = response.data.pageSize
  351. this.table.total = response.data.total
  352. } else {
  353. this.table.list = []
  354. }
  355. setTimeout(() => {
  356. this.table.listLoading = false
  357. }, 100)
  358. })
  359. },
  360. getList2() {
  361. this.table2.listLoading = true
  362. console.log(this.table2.getdataListParm)
  363. GetDataByName(this.table2.getdataListParm).then(response => {
  364. console.log('table2数据', response.data.list)
  365. if (response.data.list !== null) {
  366. for (let i = 0; i < response.data.list.length; i++) {
  367. this.$set(response.data.list[i], 'Edit', false) // 编辑
  368. this.$set(response.data.list[i], 'NoEdit', true) // 不可编辑/输入
  369. this.$set(response.data.list[i], 'isCreate', false) // 新增操作
  370. this.$set(response.data.list[i], 'isUpdate', true) // 编辑操作
  371. this.$set(response.data.list[i], 'isUpdateSave', false) // 编辑保存
  372. }
  373. this.table2.list = response.data.list
  374. this.table2.pageNum = response.data.pageNum
  375. this.table2.pageSize = response.data.pageSize
  376. this.table2.total = response.data.total
  377. } else {
  378. this.table2.list = []
  379. }
  380. setTimeout(() => {
  381. this.table2.listLoading = false
  382. }, 100)
  383. })
  384. },
  385. handleEnableChange(val) {
  386. console.log('点击了是否启用', val)
  387. },
  388. form_search() {
  389. console.log('点击了查询')
  390. this.table.getdataListParm.offset = 1
  391. this.getList()
  392. },
  393. form_search2() {
  394. console.log('点击了查询')
  395. this.table2.getdataListParm.offset = 1
  396. this.getList2()
  397. },
  398. handleRefresh() {
  399. console.log('点击了重置')
  400. this.table.getdataListParm.parammaps.cname = ''
  401. this.table.getdataListParm.parammaps.dname = ''
  402. this.table.getdataListParm.parammaps.statue = ''
  403. this.table.getdataListParm.offset = 1
  404. this.getList()
  405. },
  406. handleRefresh2() {
  407. console.log('点击了重置')
  408. this.table2.getdataListParm.parammaps.cname = ''
  409. this.table2.getdataListParm.parammaps.dname = ''
  410. this.table2.getdataListParm.parammaps.statue = ''
  411. this.table2.getdataListParm.offset = 1
  412. this.getList2()
  413. },
  414. // changeParent(val) {
  415. // console.log('点击了牲畜类别父类', val)
  416. // console.log(this.parentList.find(obj => obj.value == val).label)
  417. // this.table.temp.parentname = this.parentList.find(obj => obj.value == val).label
  418. // },id
  419. changeStatue(val) {
  420. console.log('点击了状态', val)
  421. // console.log(this.statueList.find(obj => obj.value == val).id)
  422. this.table.temp.statueid = val
  423. this.table.temp.statue = val
  424. },
  425. changeStatue2(val) {
  426. console.log('点击了状态', val)
  427. // console.log(this.statueList.find(obj => obj.value == val).id)
  428. this.table2.temp.statueid = val
  429. this.table2.temp.statue = val
  430. },
  431. changeRole(val) {
  432. console.log('点击了角色', val)
  433. console.log('this.table.list', this.table.list)
  434. var arr = []
  435. this.roleList.forEach(function(i) {
  436. val.forEach(function(j) {
  437. if (i.id == j) {
  438. arr.push(i)
  439. }
  440. })
  441. })
  442. console.log('点击了角色', arr)
  443. this.table.temp.rolenamesId = arr
  444. this.rolenamesIdTempArr = arr
  445. },
  446. handleCreate() {
  447. this.editDialogVisible = true
  448. },
  449. handleSubmit() {
  450. var data = {
  451. name: 'insertDashboard',
  452. parammaps: {
  453. dname: this.dbObj.dname,
  454. display: this.dbObj.display,
  455. pastureid: Cookies.get('pastureid'),
  456. empid: Cookies.get('employeid'),
  457. emp: Cookies.get('employename')
  458. }
  459. }
  460. PostDataByName(data).then(res => {
  461. console.log('新增保存发送参数', data)
  462. this.$message({
  463. type: 'success',
  464. message: this.$t('common.saveSuccess')
  465. })
  466. this.editDialogVisible = false
  467. console.log('res', res)
  468. if (res.data.LastInsertId) {
  469. this.$router.push({ name: 'Addboard', params: { id: res.data.LastInsertId, isEdit: 'create' }})
  470. Cookies.set('AddboardIsEdit', 'create')
  471. Cookies.set('AddboardIsEditId', res.data.LastInsertId)
  472. localStorage.setItem('AddboardIsEditId', res.data.LastInsertId)
  473. }
  474. })
  475. },
  476. createData(row) {
  477. console.log('点击了新增保存')
  478. this.table.temp.pastureid = Cookies.get('pastureid')
  479. this.table.temp.dname = row.dname
  480. this.table.temp.display = row.display
  481. this.table.temp.statue = row.statue
  482. this.table.temp.reportenable = row.reportenable
  483. this.table.temp.emp = row.emp
  484. this.table.temp.opratetime = row.opratetime
  485. // 仪表盘名称/状态是否为空
  486. if (this.table.temp.dname == '' && this.table.temp.statue == '') {
  487. this.$message({ type: 'error', message: '仪表盘名称/状态不能为空', duration: 2000 })
  488. return false
  489. } else if (this.table.temp.dname == '') {
  490. this.$message({ type: 'error', message: '仪表盘名称不能为空', duration: 2000 })
  491. return false
  492. }
  493. const pattern = new RegExp("[`~!@#$^&*()=|{}':;',\\[\\].<>/?~!@#¥……&*()——|{}【】‘;:”“'。,、?]")
  494. if (pattern.test(this.table.temp.dname)) {
  495. this.$message({ type: 'error', message: '仪表盘名称不可输入特殊字符', duration: 2000 })
  496. return false
  497. }
  498. this.isokDisable = true
  499. setTimeout(() => {
  500. this.isokDisable = false
  501. }, 1000)
  502. this.requestParam.name = 'insertDashboard'
  503. this.requestParam.parammaps = this.table.temp
  504. PostDataByName(this.requestParam).then(response => {
  505. console.log('新增保存发送参数', this.requestParam)
  506. if (response.msg !== 'fail') {
  507. this.$notify({ title: this.$t('common.succes'), message: this.$t('driver.saveSuccess'), type: 'success', duration: 2000 })
  508. this.getList()
  509. } else {
  510. this.$notify({ title: this.$t('driver.saveFail'), message: response.data, type: 'warning', duration: 2000 })
  511. }
  512. })
  513. },
  514. createCancel(row) {
  515. console.log('点击了新增取消')
  516. for (let i = 0; i < this.table.list.length; i++) {
  517. if (row.myId === this.table.list[i].myId) {
  518. var listIndex = this.table.list.indexOf(this.table.list[i])
  519. }
  520. if (listIndex > -1) {
  521. this.table.list.splice(listIndex, 1)
  522. return
  523. }
  524. }
  525. },
  526. handleCreate2(row) {
  527. this.$router.push({ name: 'ChartPanel', params: { id: 'create', isEdit: 'edit' }})
  528. Cookies.set('ChartPanelIsEdit', 'edit')
  529. Cookies.set('ChartPanelIsEditId', 'create')
  530. localStorage.setItem('ChartPanelIsEditId', 'create')
  531. },
  532. jumpSee(row) {
  533. console.log('点击了查看', row)
  534. this.$router.push({ name: 'Addboard', params: { id: row.id, isEdit: 'view', isRoleEdit: this.isRoleEdit }})
  535. Cookies.set('AddboardIsEdit', 'view')
  536. Cookies.set('AddboardIsEditId', row.id)
  537. localStorage.setItem('AddboardIsEditId', row.id)
  538. },
  539. jumpEdit(row) {
  540. console.log('点击了编辑', row)
  541. this.$router.push({ name: 'Addboard', params: { id: row.id, isEdit: 'edit' }})
  542. Cookies.set('AddboardIsEdit', 'edit')
  543. Cookies.set('AddboardIsEditId', row.id)
  544. localStorage.setItem('AddboardIsEditId', row.id)
  545. },
  546. jumpSee2(row) {
  547. console.log('点击了查看', row)
  548. this.$router.push({ name: 'ChartPanel', params: { id: row.id, isEdit: 'view', isRoleEdit: this.isRoleEdit }})
  549. Cookies.set('ChartPanelIsEdit', 'view')
  550. Cookies.set('ChartPanelIsEditId', row.id)
  551. localStorage.setItem('ChartPanelIsEditId', row.id)
  552. localStorage.setItem('ChartPanelIsEdit', 'view')
  553. this.$store.state.user.dashchartid = row.id
  554. this.$store.state.user.dashchartidisedit = 'view'
  555. },
  556. jumpEdit2(row) {
  557. console.log('点击了编辑', row)
  558. this.$router.push({ name: 'ChartPanel', params: { id: row.id, isEdit: 'edit' }})
  559. Cookies.set('ChartPanelIsEdit', 'edit')
  560. Cookies.set('ChartPanelIsEditId', row.id)
  561. localStorage.setItem('ChartPanelIsEditId', row.id)
  562. localStorage.setItem('ChartPanelIsEdit', 'edit')
  563. this.$store.state.user.dashchartid = row.id
  564. this.$store.state.user.dashchartidisedit = 'edit'
  565. },
  566. handleUpdate(row) {
  567. console.log('点击了设置', row)
  568. for (let i = 0; i < this.table.list.length; i++) {
  569. if (this.table.list[i].Edit == true) {
  570. this.$message({ type: 'error', message: this.$t('driver.messageNote'), duration: 2000 })
  571. return false
  572. }
  573. }
  574. // 编辑true,不可编辑false
  575. row.Edit = true
  576. row.NoEdit = false
  577. // 新增false,编辑false,编辑保存true
  578. row.isCreate = false
  579. row.isUpdate = false
  580. row.isUpdateSave = true
  581. // console.log(row.parentid)
  582. row.statue = String(row.statue)
  583. console.log('row.statue ', row.statue)
  584. this.table.temp.statue = row.statue
  585. this.table.temp.statueid = row.statueid
  586. this.table.temp.parentname = row.parentname
  587. },
  588. handleUpdate2(row) {
  589. console.log('点击了设置', row)
  590. for (let i = 0; i < this.table2.list.length; i++) {
  591. if (this.table2.list[i].Edit == true) {
  592. this.$message({ type: 'error', message: this.$t('driver.messageNote'), duration: 2000 })
  593. return false
  594. }
  595. }
  596. // 编辑true,不可编辑false
  597. row.Edit = true
  598. row.NoEdit = false
  599. // 新增false,编辑false,编辑保存true
  600. row.isCreate = false
  601. row.isUpdate = false
  602. row.isUpdateSave = true
  603. // console.log(row.parentid)
  604. row.statue = String(row.statue)
  605. this.table2.temp.statue = row.statue
  606. this.table2.temp.statueid = row.statueid
  607. },
  608. updateData(row) {
  609. console.log('点击了编辑保存')
  610. this.table.temp.pastureid = Cookies.get('pastureid')
  611. this.table.temp.dname = row.dname
  612. this.table.temp.display = row.display
  613. this.table.temp.reportenable = row.reportenable
  614. this.table.temp.emp = row.emp
  615. this.table.temp.opratetime = row.opratetime
  616. this.table.temp.id = row.id
  617. this.table.temp.statue = row.statue
  618. this.table.temp.rolenamesId = row.rolenamesId
  619. console.log(this.table.temp.rolenamesId)
  620. var rolenamesIdArr = []
  621. this.table.temp.rolenamesId.forEach(function(i, j) {
  622. rolenamesIdArr.push({ 'id': i })
  623. })
  624. // 仪表盘名称/状态是否为空
  625. if (this.table.temp.dname == '' && this.table.temp.statue == '') {
  626. this.$message({ type: 'error', message: '仪表盘名称/状态不能为空', duration: 2000 })
  627. return false
  628. } else if (this.table.temp.dname == '') {
  629. this.$message({ type: 'error', message: '仪表盘名称不能为空', duration: 2000 })
  630. return false
  631. }
  632. const pattern = new RegExp("[`~!@#$^&*()=|{}':;',\\[\\].<>/?~!@#¥……&*()——|{}【】‘;:”“'。,、?]")
  633. if (pattern.test(this.table.temp.dname)) {
  634. this.$message({ type: 'error', message: '仪表盘名称不可输入特殊字符', duration: 2000 })
  635. return false
  636. }
  637. this.isokDisable = true
  638. setTimeout(() => {
  639. this.isokDisable = false
  640. }, 1000)
  641. console.log(this.table.temp)
  642. var send_data3 = {
  643. 'common': { 'returnmap': '0' },
  644. 'data': [
  645. {
  646. 'name': 'updateDashboard',
  647. 'type': 'e',
  648. 'parammaps': this.table.temp
  649. },
  650. {
  651. 'name': 'deleteDrole',
  652. 'type': 'e',
  653. 'parammaps': {
  654. 'id': row.id,
  655. 'pastureid': Cookies.get('pastureid')
  656. }
  657. },
  658. {
  659. 'name': 'insertSpotList',
  660. 'resultmaps': {
  661. 'list': rolenamesIdArr
  662. },
  663. 'children': [
  664. {
  665. 'name': 'insertDrole',
  666. 'type': 'e',
  667. 'parammaps':
  668. {
  669. 'id': row.id,
  670. 'pastureid': Cookies.get('pastureid'),
  671. 'roleid': '@insertSpotList.id'
  672. }
  673. }
  674. ]
  675. }
  676. ]
  677. }
  678. ExecDataByConfig(send_data3).then(response => {
  679. if (response.msg !== 'fail') {
  680. this.$notify({ title: this.$t('common.succes'), message: this.$t('driver.saveSuccess'), type: 'success', duration: 2000 })
  681. this.getList()
  682. } else {
  683. this.$notify({ title: this.$t('driver.saveFail'), message: response.data, type: 'warning', duration: 2000 })
  684. }
  685. })
  686. },
  687. updateData2(row) {
  688. console.log('点击了编辑保存')
  689. this.table2.temp.pastureid = Cookies.get('pastureid')
  690. this.table2.temp.cname = row.cname
  691. this.table2.temp.display = row.display
  692. this.table2.temp.emp = row.emp
  693. this.table2.temp.opratetime = row.opratetime
  694. this.table2.temp.id = row.id
  695. this.table2.temp.statue = row.statue
  696. // 仪表盘名称/状态是否为空
  697. if (this.table2.temp.dname == '' && this.table.temp.statue == '') {
  698. this.$message({ type: 'error', message: '仪表盘名称/状态不能为空', duration: 2000 })
  699. return false
  700. } else if (this.table2.temp.dname == '') {
  701. this.$message({ type: 'error', message: '仪表盘名称不能为空', duration: 2000 })
  702. return false
  703. }
  704. const pattern = new RegExp("[`~!@#$^&*()=|{}':;',\\[\\].<>/?~!@#¥……&*()——|{}【】‘;:”“'。,、?]")
  705. if (pattern.test(this.table2.temp.dname)) {
  706. this.$message({ type: 'error', message: '仪表盘名称不可输入特殊字符', duration: 2000 })
  707. return false
  708. }
  709. this.isokDisable = true
  710. setTimeout(() => {
  711. this.isokDisable = false
  712. }, 1000)
  713. console.log(this.table2.temp)
  714. var send_data3 = {
  715. 'name': 'updateChart',
  716. 'parammaps': this.table2.temp
  717. }
  718. PostDataByName(send_data3).then(response => {
  719. console.log('新增保存发送参数', send_data3)
  720. if (response.msg !== 'fail') {
  721. this.$notify({ title: this.$t('common.succes'), message: this.$t('driver.saveSuccess'), type: 'success', duration: 2000 })
  722. this.getList2()
  723. } else {
  724. this.$notify({ title: this.$t('driver.saveFail'), message: response.data, type: 'warning', duration: 2000 })
  725. }
  726. })
  727. },
  728. updateCancel(row) {
  729. console.log('点击了编辑取消')
  730. // 编辑false,不可编辑true
  731. row.Edit = false
  732. row.NoEdit = true
  733. // 新增false,编辑true,编辑保存false
  734. row.isCreate = false
  735. row.isUpdate = true
  736. row.isUpdateSave = false
  737. row.rolenamesId = row.rolenamesId2B
  738. },
  739. updateCancel2(row) {
  740. console.log('点击了编辑取消')
  741. // 编辑false,不可编辑true
  742. row.Edit = false
  743. row.NoEdit = true
  744. // 新增false,编辑true,编辑保存false
  745. row.isCreate = false
  746. row.isUpdate = true
  747. row.isUpdateSave = false
  748. },
  749. handleRowDelete(row) {
  750. console.log('点击了行内删除')
  751. MessageBox.confirm( this.$t('common.delMsg'), {
  752. confirmButtonText: this.$t('common.confirm'), cancelButtonText: this.$t('common.cancel'), type: 'warning'
  753. }).then(() => {
  754. this.requestParam.name = 'deleteDashboard'
  755. this.requestParam.parammaps = {}
  756. this.requestParam.parammaps.pastureid = row.pastureid
  757. this.requestParam.parammaps.id = row.id
  758. PostDataByName(this.requestParam).then(response => {
  759. if (response.msg === 'fail') {
  760. this.$notify({ title: this.$t('common.delfail'), message: response.data, type: 'warning', duration: 2000 })
  761. } else {
  762. this.$notify({ title: this.$t('common.succes'),message: this.$t('common.delSuccess'), type: 'success', duration: 2000 })
  763. this.getList()
  764. }
  765. })
  766. }).catch(() => {
  767. this.$message({ type: 'info', message: this.$t('common.cancelMsg') })
  768. })
  769. },
  770. handleRowDelete2(row) {
  771. console.log('点击了行内删除')
  772. var send_data = {
  773. 'name': 'getChartuseCount',
  774. 'parammaps': {
  775. 'pastureid': Cookies.get('pastureid'),
  776. 'id': row.id
  777. }
  778. }
  779. GetDataByName(send_data).then(res => {
  780. console.log(res)
  781. if (res.data.list[0].cou > 0) {
  782. MessageBox.confirm('当前图表已被引用,是否进行删除?', {
  783. confirmButtonText: this.$t('common.confirm'), cancelButtonText: this.$t('common.cancel'), type: 'warning'
  784. }).then(() => {
  785. this.requestParam.name = 'deleteChart'
  786. this.requestParam.parammaps = {}
  787. this.requestParam.parammaps.pastureid = row.pastureid
  788. this.requestParam.parammaps.id = row.id
  789. PostDataByName(this.requestParam).then(response => {
  790. if (response.msg === 'fail') {
  791. this.$notify({ title: this.$t('common.delfail'), message: response.data, type: 'warning', duration: 2000 })
  792. } else {
  793. this.$notify({ title: this.$t('common.succes'),message: this.$t('common.delSuccess'), type: 'success', duration: 2000 })
  794. this.getList2()
  795. }
  796. })
  797. }).catch(() => {
  798. this.$message({ type: 'info', message: this.$t('common.cancelMsg') })
  799. })
  800. } else {
  801. this.requestParam.name = 'deleteChart'
  802. this.requestParam.parammaps = {}
  803. this.requestParam.parammaps.pastureid = row.pastureid
  804. this.requestParam.parammaps.id = row.id
  805. PostDataByName(this.requestParam).then(response => {
  806. if (response.msg === 'fail') {
  807. this.$notify({ title: this.$t('common.delfail'), message: response.data, type: 'warning', duration: 2000 })
  808. } else {
  809. this.$notify({ title: this.$t('common.succes'),message: this.$t('common.delSuccess'), type: 'success', duration: 2000 })
  810. this.getList2()
  811. }
  812. })
  813. }
  814. })
  815. // MessageBox.confirm('当前图表已被引用,是否进行删除?', {
  816. // confirmButtonText: this.$t('common.confirm'), cancelButtonText: this.$t('common.cancel'), type: 'warning'
  817. // }).then(() => {
  818. // this.requestParam.name = 'deleteChart'
  819. // this.requestParam.parammaps = {}
  820. // this.requestParam.parammaps.pastureid = row.pastureid
  821. // this.requestParam.parammaps.id = row.id
  822. // PostDataByName(this.requestParam).then(response => {
  823. // if (response.msg === 'fail') {
  824. // this.$notify({ title: this.$t('common.delfail'), message: response.data, type: 'warning', duration: 2000 })
  825. // } else {
  826. // this.$notify({ title: this.$t('common.succes'),message: this.$t('common.delSuccess'), type: 'success', duration: 2000 })
  827. // this.getList2()
  828. // }
  829. // })
  830. // }).catch(() => {
  831. // this.$message({ type: 'info', message: this.$t('common.cancelMsg') })
  832. // })
  833. }
  834. }
  835. }
  836. </script>
  837. <style lang="scss" scoped>
  838. .search {
  839. margin-top: 10px;
  840. }
  841. .table {
  842. margin-top: 10px;
  843. }
  844. </style>