table.vue 27 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975
  1. <template>
  2. <div class="data-table" :style="{ marginTop: marginTop }">
  3. <div :style="dataTableContentStyle" v-loading="loading" element-loading-text="拼命加载中" element-loading-spinner="el-icon-loading" element-loading-background="rgba(0, 0, 0, 0.8)" class="data-table-content">
  4. <div class="flex">
  5. <div :class="dataId ? 'bcTitle': 'manageTitle'">{{ dataTitle }}</div>
  6. </div>
  7. <template v-if="tableData.length">
  8. <div style="height:100%">
  9. <el-table v-el-table-infinite-scroll="load" :data="filteredTableData" :summary-method="getSummaries" :span-method="tableSpanMethod" stripe :show-summary="showSummary" border ref="table" :height="tableHeight ? tableHeight : minHeight - 8 + 'vh'" class="table infinite-list" style="width: 100%; overflow: auto" @select="selectHandler">
  10. <el-table-column v-for="(item, index) in tableColsCopy" :sortable="item.needSort ? true : false" :key="index" :prop="item.columnName" :label="item.columnLabel" :show-overflow-tooltip="showOverflowTooltip">
  11. <template #header>
  12. <span class="colTips">
  13. <el-tooltip :content="item.columnDescribe" placement="top">
  14. <span>{{ item.columnLabel }}</span>
  15. </el-tooltip>
  16. </span>
  17. <span v-if="item.needFilters">
  18. <el-popover placement="bottom" trigger="click" @show="popoverShowHandler(item.columnName)" @hide="popoverHideHandler">
  19. <i slot="reference" :class="[
  20. 'filter-arrow',
  21. 'el-icon-arrow-down',
  22. arrowClass(item.columnName),
  23. ]" />
  24. <el-form>
  25. <el-form-item :label="item.columnLabel">
  26. <el-select v-model="filterValues[item.columnName]" size="small" placeholder="筛选" default-first-option filterable clearable>
  27. <el-option v-for="(option, optionIndex) in tableDataFilters[
  28. item.columnName
  29. ]" :key="option.value + optionIndex" :value="option.value" :label="option.text" />
  30. </el-select>
  31. </el-form-item>
  32. </el-form>
  33. </el-popover>
  34. </span>
  35. </template>
  36. </el-table-column>
  37. <el-table-column fixed="right" label="操作" :width="fixedWidth">
  38. <template slot-scope="scope">
  39. <div class="hd-td">
  40. <template v-if="scope.row.serviceType == 4">
  41. <el-button v-if="!scope.row.runState" @click="handleStart(scope.row)" type="text" size="small" class="rmScs">启用</el-button>
  42. <el-button v-else type="text" @click="handleEdit(scope.row)" size="small" class="rmScs">停用</el-button>
  43. </template>
  44. <template v-else>
  45. <el-button class="rmSc" type="text" @click="handleRemove(scope.row)" size="small">重置</el-button>
  46. </template>
  47. </div>
  48. </template>
  49. </el-table-column>
  50. </el-table>
  51. </div>
  52. </template>
  53. <template v-else>
  54. <el-empty description="暂无数据"></el-empty>
  55. </template>
  56. </div>
  57. </div>
  58. </template>
  59. <script>
  60. import { setTableFilters } from "@/utils/table";
  61. import Dialog from "@/layout/components/Dialog/index.vue";
  62. import NoData from "@/components/nodata";
  63. import { translateDataToTreeAllTreeMsg } from "@/utils/validate";
  64. import { Query, newData, modifyData, moveData, start, stop } from "@/api/webApi";
  65. export default {
  66. name: "DataTable",
  67. props: {
  68. dataContent: {
  69. type: Object,
  70. default: () => ({}),
  71. },
  72. //弹框宽度
  73. width: {
  74. type: String,
  75. default: "630px",
  76. },
  77. //弹框是否显示在body上
  78. isBody: {
  79. type: Boolean,
  80. default: false,
  81. },
  82. //弹框表单-行数
  83. rows: {
  84. type: Number,
  85. default: 24,
  86. },
  87. //弹框-表单文字宽度
  88. labelWidth: {
  89. type: String,
  90. default: "100px",
  91. },
  92. //表格高度
  93. tableHeight: {
  94. type: [String, Number],
  95. default: 0,
  96. },
  97. minHeight: {
  98. type: Number,
  99. default: 89,
  100. },
  101. // 是否显示合计行
  102. showSummary: {
  103. type: Boolean,
  104. default: false,
  105. },
  106. marginTop: {
  107. type: String,
  108. default: "0px",
  109. },
  110. // 不换行,溢出隐藏
  111. showOverflowTooltip: {
  112. type: Boolean,
  113. default: false,
  114. },
  115. //操作列宽度
  116. fixedWidth: {
  117. type: String,
  118. default: "180px",
  119. },
  120. dataId: {
  121. type: Number
  122. },
  123. dataTitle: {
  124. type: String,
  125. default: "",
  126. },
  127. },
  128. components: { Dialog, NoData },
  129. data () {
  130. return {
  131. pageTitle: '',
  132. asShow: true,
  133. loading: false,
  134. flag: false,
  135. serviceId: null,
  136. rmFlag: false,
  137. rowTitle: "",
  138. page: 0,
  139. pageSize: 10,
  140. noMore: false,
  141. tableCols: [], //表头数据
  142. tableData: [], //表格数据
  143. tableColsCopy: [], //表头数据缓存
  144. tableDataFilters: {}, //表头-下拉数据
  145. filterValues: {}, //表头-下拉-选中数据
  146. tableDataCopy: [], //缓存table数据
  147. tableGroups: [], //表格分组数据
  148. colShowFilter: "", //表头-下拉-箭头
  149. spanArr: [], //表格分组数据缓存
  150. pos: 0, //表格分组计数
  151. tableTitle: "新增", //弹框标题
  152. tableType: "add", //弹框类型=新增/编辑
  153. tableForm: {}, //弹框表单
  154. rmTitle: "", //弹框-删除-标题
  155. tableObj: {}, //增/删/改数据缓存
  156. tableOptions: {}, //弹框-下来数据缓存
  157. tableArrs: [], //重组table-表头下拉
  158. proAll: false, //重组时-所有请求是否都完成
  159. roles: JSON.parse(sessionStorage.getItem("userAuthList")) ?? [],
  160. tableOptionscp: {},
  161. tabledatacopy: {},
  162. queryId: 3,
  163. form: {
  164. computing_expression: null,
  165. is_exec: null,
  166. isActiveTable: null,
  167. library_name: null,
  168. library_sort: null,
  169. library_type: null,
  170. parmIndex: null,
  171. sourceObjectName: null,
  172. datasource_id: null
  173. },
  174. datasource_id: 7,
  175. dataSourceArrs: []
  176. };
  177. },
  178. watch: {
  179. dataContent: {
  180. handler (obj) {
  181. if (obj.deployNodeID) {
  182. this.queryId = obj.deployNodeID
  183. this.resetTable();
  184. this.getColumnData(obj.deployNodeID)
  185. } else {
  186. this.resetTable();
  187. }
  188. },
  189. deep: true
  190. }
  191. },
  192. computed: {
  193. dataTableContentStyle () {
  194. const style = {};
  195. if (this.minHeight) {
  196. style["min-height"] = this.minHeight;
  197. }
  198. if (this.tableHeight) {
  199. style["height"] = this.tableHeight;
  200. }
  201. return style;
  202. },
  203. //设置表头-下拉-箭头样式
  204. arrowClass () {
  205. return function (prop) {
  206. let classString = "";
  207. if (this.colShowFilter === prop) {
  208. return "arrow-active";
  209. }
  210. if (
  211. Object.entries(this.tableDataFilters).find(
  212. ([key, arr]) => this.filterValues[prop]
  213. )
  214. ) {
  215. classString += "arrow-blue";
  216. }
  217. return classString;
  218. };
  219. },
  220. //设置新增修改表单类型
  221. fromDataType () {
  222. return function (type) {
  223. return type.replace(/\([^\)]*\)/g, "");
  224. }
  225. },
  226. //设置表头-下拉-选中数据
  227. filteredTableData () {
  228. if (this.isTree) {
  229. this.tableData = translateDataToTreeAllTreeMsg(
  230. this.tableData,
  231. "parentID",
  232. "companyID"
  233. );
  234. }
  235. return this.tableData.filter((item) => {
  236. let flag = true;
  237. Object.entries(this.filterValues).forEach(([key, value]) => {
  238. if (value !== "" && item[key] !== value) {
  239. flag = false;
  240. }
  241. });
  242. return flag;
  243. });
  244. },
  245. },
  246. updated () {
  247. this.$refs["table"]?.doLayout();
  248. },
  249. methods: {
  250. //获取表头数据
  251. async getColumnData (id) {
  252. try {
  253. const { code, returnData } = await Query({
  254. serviceId: SERVICE_ID.getTableColumnId,
  255. dataContent: [
  256. {
  257. "left": "(",
  258. "column": "serviceOutPutId",
  259. "comparator": "=",
  260. "value": `${SERVICE_ID.depTableId}`,
  261. "right": ")",
  262. "connector": ""
  263. }
  264. ],
  265. event: '0'
  266. });
  267. if (code == 0) {
  268. if (returnData && returnData.length) {
  269. const titleColumn = returnData.find(
  270. (item) => item.needShow === 1
  271. );
  272. if (titleColumn) {
  273. this.rowTitle = titleColumn.columnName;
  274. }
  275. this.tableCols = returnData;
  276. this.getQuery(id);
  277. }
  278. } else {
  279. this.$message.error("获取表头数据失败");
  280. }
  281. } catch (error) {
  282. console.log(error)
  283. }
  284. },
  285. eledite () {
  286. this.flag = false;
  287. const arrbegin = _.cloneDeep(this.tableOptionscp);
  288. this.tableOptions = arrbegin;
  289. },
  290. load () {
  291. //
  292. if (!this.isTree) {
  293. if (this.noMore || this.loading) {
  294. return;
  295. }
  296. this.getQuery(this.queryId);
  297. }
  298. },
  299. resetTable () {
  300. this.page = 0;
  301. this.noMore = false;
  302. this.tableData = [];
  303. },
  304. changeSelect (data, name) {
  305. if (this.tableForm[data] === "") {
  306. this.tableForm[data] = null;
  307. }
  308. this.tableForm[this.tableOptions[data][0].setvalue] =
  309. this.tableForm[data];
  310. const arrbegin = _.cloneDeep(this.tabledatacopy);
  311. if (this.tableForm.beginNode) {
  312. this.tableOptions.beginPosition = arrbegin.beginPosition.filter(
  313. (i) => i.nodeCode === this.tableForm.beginNode
  314. );
  315. arrbegin.beginPosition.forEach((element) => {
  316. if (element.v === this.tableForm.beginPosition) {
  317. if (element.nodeCode !== this.tableForm.beginNode) {
  318. this.tableForm.beginPosition = "";
  319. }
  320. }
  321. });
  322. // let arr = [];
  323. // this.tableOptions.beginPosition.forEach((element) => {
  324. // arr.push(element.nodeCode);
  325. // });
  326. // if (
  327. // !arr.includes(this.tableForm.beginPosition) &&
  328. // this.tableForm.beginNode
  329. // ) {
  330. // this.tableForm.beginPosition = null;
  331. // }
  332. this.asShow = false;
  333. this.asShow = true;
  334. }
  335. if (this.tableForm.beginPosition && !this.tableForm.beginNode) {
  336. arrbegin.beginPosition.forEach((element) => {
  337. if (this.tableForm.beginPosition === element.v) {
  338. this.tableForm.beginNode = element.nodeCode;
  339. }
  340. });
  341. }
  342. if (this.tableForm.endNode) {
  343. this.tableOptions.endPosition = arrbegin.endPosition.filter(
  344. (i) => i.nodeCode === this.tableForm.endNode
  345. );
  346. arrbegin.endPosition.forEach((element) => {
  347. if (element.v === this.tableForm.endPosition) {
  348. if (element.nodeCode !== this.tableForm.endNode) {
  349. this.tableForm.endPosition = "";
  350. }
  351. }
  352. });
  353. this.asShow = false;
  354. this.asShow = true;
  355. }
  356. if (this.tableForm.endPosition && !this.tableForm.endNode) {
  357. arrbegin.endPosition.forEach((element) => {
  358. if (this.tableForm.endPosition === element.v) {
  359. this.tableForm.endNode = element.nodeCode;
  360. }
  361. });
  362. }
  363. },
  364. inputChangeHandler (data) {
  365. if (this.tableForm[data] === "") {
  366. this.tableForm[data] = null;
  367. }
  368. },
  369. //获取表格数据
  370. async getQuery (id) {
  371. try {
  372. this.loading = true;
  373. const { code, returnData, columnset } = await Query({
  374. serviceId: 3,
  375. page: ++this.page,
  376. pageSize: this.pageSize,
  377. dataContent: [
  378. {
  379. "left": "(",
  380. "column": "workId",
  381. "comparator": "=",
  382. "value": `${id}`,
  383. "right": ")",
  384. "connector": ""
  385. }
  386. ],
  387. event: '0'
  388. });
  389. if (code == 0) {
  390. if (returnData.length === 0) {
  391. this.page--;
  392. this.noMore = true;
  393. this.loading = false;
  394. } else {
  395. this.tableData.push(...returnData);
  396. // this.tableCols = columnset;
  397. setTimeout(() => {
  398. this.initTableData();
  399. this.loading = false;
  400. }, 100);
  401. }
  402. } else {
  403. this.page--;
  404. this.loading = false;
  405. this.$message.error("获取表格数据失败");
  406. }
  407. } catch (error) {
  408. this.page--;
  409. this.loading = false;
  410. }
  411. },
  412. //服务列表-增/删/改
  413. async generalDataReception (event, data) {
  414. try {
  415. const params = {
  416. serviceId: this.queryId,
  417. dataContent: data,
  418. event: `${event}`,
  419. };
  420. const { code } =
  421. event == 1
  422. ? await newData(params)
  423. : event == 2
  424. ? await modifyData(params)
  425. : await moveData(params);
  426. if (code == 0) {
  427. this.$message.success("操作成功");
  428. this.resetTable();
  429. this.getQuery(this.queryId);
  430. } else {
  431. this.$message.error("操作失败");
  432. }
  433. } catch (error) {
  434. this.$message.error("操作失败");
  435. }
  436. },
  437. //服务启停
  438. async controlService (event, data) {
  439. try {
  440. const params = {
  441. serviceId: data.serviceID
  442. };
  443. const { code } =
  444. event == 1
  445. ? await start(params)
  446. : await stop(params);
  447. if (code == 0) {
  448. this.$message.success('操作成功')
  449. this.resetTable();
  450. this.getColumnData(this.queryId)
  451. } else {
  452. this.$message.error("操作失败");
  453. }
  454. } catch (error) {
  455. console.log(error)
  456. this.$message.error("操作失败");
  457. }
  458. },
  459. // 表格勾选
  460. toggleRowSelection (row, isSelected) {
  461. this.$refs["table"].toggleRowSelection(row, isSelected);
  462. },
  463. // 表格初始勾选
  464. selectTableRows (tableData, selectFlagName) {
  465. tableData.forEach((row) => {
  466. this.$refs["table"].toggleRowSelection(row, !!row[selectFlagName]);
  467. });
  468. this.$emit("selectionAll", this.$refs.table.selection);
  469. },
  470. //初始化表格
  471. initTableData () {
  472. this.tableColsCopy = this.tableCols.filter((item) => item.needShow);
  473. this.tableColsCopy = _.orderBy(this.tableColsCopy, ['orderNumber'], ['asc']);
  474. this.tableDataCopy = _.cloneDeep(this.tableData);
  475. const datas = _.cloneDeep(this.tableColsCopy);
  476. // const reqUts = [];
  477. datas.forEach(async (item) => {
  478. this.tableDataFilters[item.columnName] = [];
  479. if (item.needGroup) {
  480. this.tableGroups.push(item.columnName);
  481. }
  482. if (item.listqueryTemplateID || item.listqueryTemplateID == 0) {
  483. this.tableArrs.push(item.columnName);
  484. // const reqUt = this.getSelectData(item.listqueryTemplateID)
  485. // reqUts.push(reqUt)
  486. if (!this.tableOptions[item.columnName]) {
  487. //开始位置beginPosition 结束位置endPosition (区分开始结束位置必须传null)
  488. if (
  489. item.columnName !== "beginPosition" &&
  490. item.columnName !== "endPosition"
  491. ) {
  492. this.tableOptions[item.columnName] = await this.getSelectData(
  493. item.listqueryTemplateID
  494. );
  495. } else {
  496. this.tableOptions[item.columnName] = await this.getSelectData(
  497. item.listqueryTemplateID,
  498. null
  499. );
  500. this.tabledatacopy[item.columnName] = _.cloneDeep(
  501. this.tableOptions[item.columnName]
  502. );
  503. }
  504. } else {
  505. if (
  506. item.columnName === "beginPosition" ||
  507. item.columnName === "endPosition"
  508. ) {
  509. this.tableOptions[item.columnName] = await this.getSelectData(
  510. item.listqueryTemplateID,
  511. null
  512. );
  513. }
  514. }
  515. //
  516. }
  517. // this.filterValues[item.columnName] = ''
  518. });
  519. setTableFilters(this.tableData, this.tableDataFilters);
  520. this.tableGroup(this.tableData);
  521. // this.selectTableRows(this.tableData, "DeployID");
  522. this.tableOptionscp = _.cloneDeep(this.tableOptions);
  523. const arrbegin = _.cloneDeep(this.tableOptions);
  524. if (arrbegin) {
  525. setTimeout(() => {
  526. this.tableData.forEach((element) => {
  527. if (this.tableOptions.beginNode) {
  528. arrbegin.beginNode.forEach((res) => {
  529. if (res.v === element.beginNode) {
  530. element.beginNode = res.k;
  531. }
  532. });
  533. arrbegin.endNode.forEach((res) => {
  534. if (res.v == element.endNode) {
  535. element.endNode = res.k;
  536. }
  537. });
  538. arrbegin.calculationBasis.forEach((res) => {
  539. if (res.v == element.calculationBasis) {
  540. element.calculationBasis = res.k;
  541. }
  542. });
  543. //位置
  544. this.tabledatacopy.beginPosition.forEach((res) => {
  545. if (res.v == element.beginPosition) {
  546. element.beginPosition = res.k;
  547. }
  548. });
  549. this.tabledatacopy.endPosition.forEach((res) => {
  550. if (res.v == element.endPosition) {
  551. element.endPosition = res.k;
  552. }
  553. });
  554. }
  555. });
  556. }, 100);
  557. }
  558. // this.getSelectDataAll(reqUts)
  559. },
  560. //获取所有获取弹框-下拉数据-请求状态
  561. getSelectDataAll (reqUts) {
  562. Promise.all(reqUts)
  563. .then((res) => {
  564. this.proAll = true;
  565. })
  566. .catch((err) => {
  567. this.proAll = false;
  568. });
  569. },
  570. //获取弹框-下拉数据
  571. async getSelectData (id, name) {
  572. // name ? [name] : name === null ? [null]: [],
  573. const { code, returnData } = await Query({
  574. id,
  575. dataContent: name ? [name] : name === null ? [null] : [],
  576. });
  577. if (code == 0) {
  578. return returnData.listValues;
  579. } else {
  580. return [];
  581. }
  582. },
  583. //重组table-显示名称
  584. setTable () {
  585. this.tableArrs.forEach((item) => {
  586. this.tableOptions[item].forEach((p) => {
  587. this.tableDataCopy.forEach((msg) => {
  588. if (msg[item] == p.v) {
  589. msg[item] = p.k;
  590. }
  591. });
  592. this.tableDataFilters[item].forEach((cap) => {
  593. if (cap.value == p.v) {
  594. cap.text = p.k;
  595. cap.value = p.k;
  596. }
  597. });
  598. });
  599. });
  600. this.tableData = this.tableDataCopy;
  601. },
  602. //分组
  603. tableGroup (tableData) {
  604. const spanArr = [];
  605. let pos = 0;
  606. let ifYj = this.tableGroups[0];
  607. for (let i = 0; i < tableData.length; i++) {
  608. if (i === 0) {
  609. spanArr.push(1);
  610. } else {
  611. if (tableData[i][ifYj] === tableData[i - 1][ifYj]) {
  612. spanArr[pos] += 1;
  613. spanArr.push(0);
  614. } else {
  615. spanArr.push(1);
  616. pos = i;
  617. }
  618. }
  619. }
  620. this.spanArr = spanArr;
  621. this.pos = pos;
  622. },
  623. popoverShowHandler (prop) {
  624. this.colShowFilter = prop;
  625. },
  626. popoverHideHandler () {
  627. this.colShowFilter = "";
  628. },
  629. //分组
  630. tableSpanMethod ({ row, column, rowIndex, columnIndex }) {
  631. if (this.tableGroups.includes(column["property"])) {
  632. const _row = this.spanArr[rowIndex];
  633. const _col = _row > 0 ? 1 : 0;
  634. return {
  635. rowspan: _row,
  636. colspan: _col,
  637. };
  638. }
  639. },
  640. //合计
  641. getSummaries (param) {
  642. const { columns, data } = param;
  643. const sums = [];
  644. columns.forEach((column, index) => {
  645. this.tableColsCopy.forEach((p) => {
  646. if (column.property == p.columnName && p.needCount) {
  647. const values = data.map((item) => Number(item[column.property]));
  648. if (!values.every((value) => isNaN(value))) {
  649. sums[index] = values.reduce((prev, curr) => {
  650. const value = Number(curr);
  651. if (!isNaN(value)) {
  652. return prev + curr;
  653. } else {
  654. return prev;
  655. }
  656. }, 0);
  657. sums[index] += "";
  658. }
  659. }
  660. });
  661. });
  662. return sums;
  663. },
  664. //弹框-确定
  665. handleOk () {
  666. this.submitClickHandler();
  667. },
  668. //滚动
  669. tableLoad () { },
  670. //表格-新增
  671. handleAdd () {
  672. this.flag = true;
  673. this.tableType = "add";
  674. this.tableTitle = "新增算法配置";
  675. for (const key in this.form) {
  676. if (Object.hasOwnProperty.call(this.form, key)) {
  677. this.form[key] = null
  678. }
  679. }
  680. },
  681. async getDataSourceId (id) {
  682. const { code, returnData } = await Query({
  683. serviceId: id,
  684. dataContent: this.dataContent,
  685. });
  686. if (code == 0) {
  687. this.dataSourceArrs = returnData
  688. }
  689. },
  690. //表格-编辑
  691. handleEdit (row) {
  692. row.runState = 0
  693. this.controlService(0, row)
  694. },
  695. handleStart (row) {
  696. row.runState = 1
  697. this.controlService(1, row)
  698. },
  699. // 新增/编辑-确认
  700. submitClickHandler () {
  701. this.$refs["ruleForm"].validate((valid) => {
  702. if (valid) {
  703. this.form = Object.assign(this.form, this.dataContent)
  704. if (this.tableType == "add") {
  705. this.generalDataReception(1, this.form);
  706. } else {
  707. this.generalDataReception(2, this.form);
  708. }
  709. } else {
  710. return false;
  711. }
  712. });
  713. },
  714. //表格-删除
  715. handleRemove (row) {
  716. this.controlService(0, row)
  717. },
  718. //表格-删除-确认
  719. tableRemove () {
  720. this.generalDataReception(3, this.tableObj);
  721. },
  722. // 表格-选中行
  723. selectHandler (selection, row) {
  724. this.$emit("selection-change", selection, row);
  725. },
  726. // 表格-查询模板预览
  727. handlePreview (row) {
  728. this.$emit("preview", row);
  729. },
  730. },
  731. };
  732. </script>
  733. <style lang="scss" scoped>
  734. .data-table {
  735. width: 100%;
  736. // background-color: #fff;
  737. padding: 20px;
  738. .data-table-content {
  739. height: 100%;
  740. .nodata {
  741. margin-top: 25px;
  742. }
  743. }
  744. .bcButton {
  745. background: #2579a0;
  746. border-radius: 4px;
  747. border-color: #2579a0;
  748. color: #ffffff;
  749. }
  750. .bcButton.is-disabled {
  751. color: #8cc5ff;
  752. background-color: #ecf5ff;
  753. border-color: #d9ecff;
  754. }
  755. .bcTitle {
  756. font-size: 20px;
  757. font-family: Microsoft YaHei;
  758. font-weight: bold;
  759. color: #303133;
  760. }
  761. ::v-deep .table {
  762. width: 100%;
  763. margin-top: 25px;
  764. .cell {
  765. padding: 0;
  766. text-align: center;
  767. font-size: 14px;
  768. font-family: Helvetica, "Microsoft YaHei";
  769. letter-spacing: 0;
  770. }
  771. .hd-td {
  772. display: flex;
  773. justify-content: center;
  774. }
  775. .cell-click {
  776. cursor: pointer;
  777. color: #2d7cff;
  778. &.cell-clicked {
  779. color: purple;
  780. }
  781. }
  782. .el-table__header-wrapper {
  783. .cell {
  784. font-weight: bold;
  785. color: #101116;
  786. > .el-checkbox {
  787. display: none;
  788. }
  789. }
  790. .has-gutter {
  791. tr {
  792. .bgl-huang {
  793. background: #fcf0b1;
  794. }
  795. }
  796. }
  797. }
  798. .el-table__body-wrapper {
  799. tr.bgl-hui {
  800. background: #d2d6df;
  801. td {
  802. background: #d2d6df;
  803. }
  804. &.redBorder {
  805. position: relative;
  806. &::after {
  807. content: "";
  808. position: absolute;
  809. left: 0;
  810. bottom: 0;
  811. width: 100%;
  812. height: 2px;
  813. background: #e83f82;
  814. }
  815. }
  816. }
  817. }
  818. .rmScs {
  819. width: 48px;
  820. height: 24px;
  821. border-color: #b2cbde;
  822. box-shadow: 0px 3px 3px 0px rgba(0, 0, 0, 0.06);
  823. border-radius: 4px;
  824. display: flex;
  825. align-items: center;
  826. justify-content: center;
  827. float: left;
  828. span {
  829. color: #2579a0;
  830. }
  831. }
  832. .rmScser {
  833. width: 60px;
  834. height: 24px;
  835. border-color: #9ebbf7;
  836. box-shadow: 0px 3px 3px 0px rgba(0, 0, 0, 0.06);
  837. border-radius: 4px;
  838. display: flex;
  839. align-items: center;
  840. justify-content: center;
  841. float: left;
  842. span {
  843. color: #2d67e3;
  844. }
  845. }
  846. .rmSc {
  847. width: 48px;
  848. height: 24px;
  849. background: #eb2f3b;
  850. box-shadow: 0px 3px 3px 0px rgba(0, 0, 0, 0.06);
  851. border-radius: 4px;
  852. display: flex;
  853. align-items: center;
  854. justify-content: center;
  855. span {
  856. color: #ffffff;
  857. }
  858. }
  859. .hrefBtn {
  860. width: 48px;
  861. height: 24px;
  862. background: #6f81bc;
  863. box-shadow: 0px 3px 3px 0px rgba(0, 0, 0, 0.06);
  864. border-radius: 4px;
  865. display: flex;
  866. align-items: center;
  867. justify-content: center;
  868. span {
  869. color: #ffffff;
  870. }
  871. }
  872. .tableStatus {
  873. font-size: 14px;
  874. .icon {
  875. width: 14px;
  876. height: 14px;
  877. background: #2d67e3;
  878. border-radius: 2px;
  879. display: inline-block;
  880. vertical-align: middle;
  881. position: relative;
  882. top: -2px;
  883. }
  884. .status0 {
  885. position: relative;
  886. top: 5px;
  887. }
  888. .status1 {
  889. position: relative;
  890. top: 5px;
  891. .icon {
  892. background-color: #afb4bf;
  893. }
  894. }
  895. .status2 {
  896. position: relative;
  897. top: 5px;
  898. .icon {
  899. background-color: #eb2f3b;
  900. }
  901. }
  902. }
  903. .el-table__fixed-right {
  904. thead {
  905. div {
  906. color: #101116;
  907. }
  908. }
  909. }
  910. .hd-td {
  911. .hd-tr {
  912. display: flex;
  913. justify-content: center;
  914. flex-direction: row;
  915. padding: 0 8px;
  916. }
  917. }
  918. }
  919. .data-table-btn {
  920. margin-top: 13px;
  921. line-height: 32px;
  922. margin-bottom: 20px;
  923. }
  924. }
  925. .filter-arrow {
  926. cursor: pointer;
  927. transition: 0.3s transform;
  928. &.arrow-active {
  929. transform: rotate(-180deg);
  930. }
  931. &.arrow-blue {
  932. color: #2d7cff;
  933. font-weight: bold;
  934. }
  935. }
  936. .el-select-dropdown__item.hover {
  937. background: #d2d6df;
  938. }
  939. .data-table-dialog {
  940. ::v-deep .dialog-content {
  941. .title {
  942. background-color: #2579a0;
  943. }
  944. .bcButton {
  945. background-color: #2579a0;
  946. }
  947. .contents {
  948. padding: 24px;
  949. .el-form {
  950. padding-right: 0;
  951. }
  952. .el-select {
  953. width: 100%;
  954. }
  955. .r40 {
  956. margin-right: 60px;
  957. }
  958. }
  959. .datetimes {
  960. width: 100%;
  961. }
  962. .el-form-item__content {
  963. line-height: 41px;
  964. }
  965. }
  966. }
  967. </style>