index.vue 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435
  1. <template>
  2. <div class="brand pagePadding">
  3. <ex-table
  4. v-loading="loading"
  5. v-if="powers.some((i) => i == '001')"
  6. :table="table"
  7. :data="tableData"
  8. :columns="columns"
  9. :page="pageInfo"
  10. :size="size"
  11. @page-curr-change="handlePageChange"
  12. @page-size-change="handleSizeChange"
  13. @screen-reset="
  14. pageInfo.curr = 1;
  15. parmValue.page = 1;
  16. searchList();
  17. "
  18. @screen-submit="
  19. pageInfo.curr = 1;
  20. parmValue.page = 1;
  21. searchList();
  22. "
  23. >
  24. <template #table-header="{}">
  25. <div style="width: 100%">
  26. <el-row style="padding: 0 0 10px 80px">
  27. <el-col :span="6" style="width: 303px">
  28. <period-date-picker
  29. :type="1"
  30. :width="'135px'"
  31. :size="searchSize"
  32. :start="parmValue.start"
  33. :end="parmValue.end"
  34. @timeReturned="handleTime"
  35. />
  36. </el-col>
  37. <el-col :span="4" style="width: 160px">
  38. <el-select
  39. v-model="parmValue.status"
  40. filterable
  41. clearable
  42. :size="searchSize"
  43. placeholder="品牌状态"
  44. style="width: 100%"
  45. @change="
  46. pageInfo.curr = 1;
  47. parmValue.page = 1;
  48. searchList();
  49. "
  50. >
  51. <el-option
  52. v-for="item in statusList"
  53. :key="'status' + item.code"
  54. :label="item.name"
  55. :value="item.code"
  56. />
  57. </el-select>
  58. </el-col>
  59. <el-col :span="3" class="fr" style="width: 66px; padding: 0 0 0 10px">
  60. <el-button type="primary" :size="searchSize" @click="searchList">
  61. 刷新
  62. </el-button>
  63. </el-col>
  64. <el-col :span="3" class="fr" style="width: 66px; padding: 0 0 0 10px">
  65. <el-button type="warning" :size="searchSize" @click="restSearch">
  66. 重置
  67. </el-button>
  68. </el-col>
  69. </el-row>
  70. <el-row>
  71. <el-col :span="4" style="width: 373px">
  72. <el-input
  73. :size="searchSize"
  74. v-model="parmValue.brand_name"
  75. :maxlength="40"
  76. @blur="
  77. pageInfo.curr = 1;
  78. parmValue.page = 1;
  79. searchList();
  80. "
  81. placeholder="品牌名称"
  82. ></el-input>
  83. </el-col>
  84. <!-- <el-col :span="4" style="width: 170px; padding: 0 0 0 10px">-->
  85. <!-- <el-input-->
  86. <!-- :size="searchSize"-->
  87. <!-- v-model="parmValue.creater"-->
  88. <!-- :maxlength="40"-->
  89. <!-- @change="-->
  90. <!-- pageInfo.curr = 1;-->
  91. <!-- parmValue.page = 1;-->
  92. <!-- searchList();-->
  93. <!-- "-->
  94. <!-- placeholder="创建人"-->
  95. <!-- ></el-input>-->
  96. <!-- </el-col>-->
  97. <!-- <el-col :span="4" style="width: 170px; padding: 0 0 0 10px">-->
  98. <!-- <el-input-->
  99. <!-- :size="searchSize"-->
  100. <!-- v-model="parmValue.company_name"-->
  101. <!-- :maxlength="40"-->
  102. <!-- @change="-->
  103. <!-- pageInfo.curr = 1;-->
  104. <!-- parmValue.page = 1;-->
  105. <!-- searchList();-->
  106. <!-- "-->
  107. <!-- placeholder="创建人部门"-->
  108. <!-- ></el-input>-->
  109. <!-- </el-col>-->
  110. <el-col
  111. :span="3"
  112. class="fr"
  113. style="width: 66px; padding: 0 0 0 10px"
  114. v-if="powers.some((i) => i == '003')"
  115. >
  116. <el-button
  117. :size="searchSize"
  118. type="success"
  119. style="float: right"
  120. @click="openModal({}, '003')"
  121. >
  122. 添加
  123. </el-button>
  124. </el-col>
  125. </el-row>
  126. </div></template
  127. >
  128. <template #status="{ scope }">
  129. <el-tag
  130. :size="tablebtnSize"
  131. :type="scope.row.status == '0' ? 'warning' : ''"
  132. v-text="
  133. (statusOptions.find((item) => item.id == scope.row.status) || {}).label ||
  134. '--'
  135. "
  136. ></el-tag>
  137. </template>
  138. <template #operation="{ scope }">
  139. <el-tooltip
  140. v-if="powers.some((i) => i == '007')"
  141. effect="dark"
  142. content="详情"
  143. placement="top"
  144. >
  145. <i class="el-icon-view tb-icon" @click="openModal(scope.row, '007')"></i>
  146. </el-tooltip>
  147. <el-tooltip
  148. v-if="powers.some((i) => i == '005')"
  149. effect="dark"
  150. content="修改"
  151. placement="top"
  152. >
  153. <i class="el-icon-edit tb-icon" @click="openModal(scope.row, '005')"></i>
  154. </el-tooltip>
  155. <el-tooltip
  156. v-if="powers.some((i) => i == '004') && scope.row.status + '' === '1'"
  157. effect="dark"
  158. content="禁用"
  159. placement="top"
  160. >
  161. <i
  162. class="el-icon-video-pause tb-icon"
  163. @click="changeStatus(scope.row.id, scope.row.status)"
  164. ></i>
  165. </el-tooltip>
  166. <el-tooltip
  167. v-if="powers.some((i) => i == '004') && scope.row.status + '' === '0'"
  168. effect="dark"
  169. content="启用"
  170. placement="top"
  171. >
  172. <i
  173. class="el-icon-video-play tb-icon"
  174. @click="changeStatus(scope.row.id, scope.row.status)"
  175. ></i>
  176. </el-tooltip>
  177. <el-tooltip
  178. v-if="powers.some((i) => i == '006')"
  179. effect="dark"
  180. content="删除"
  181. placement="top"
  182. >
  183. <i class="el-icon-delete tb-icon" @click="deleteItem(scope.row.id)"></i>
  184. </el-tooltip>
  185. </template>
  186. </ex-table>
  187. <no-auth v-else></no-auth>
  188. <!-- 弹窗 新增/修改 -->
  189. <add-edit
  190. :id="modelId"
  191. :show-model="showModel"
  192. :sitem="sitem"
  193. @refresh="searchList"
  194. @cancel="showModel = false"
  195. />
  196. </div>
  197. </template>
  198. <script>
  199. import addEdit from "./addEdit";
  200. import asyncRequest from "@/apis/service/serviceParam/brand";
  201. import { statusList } from "@/assets/js/statusList";
  202. import roleLevel from "@/assets/js/roleLevel";
  203. import mixinPage from "@/mixins/elPaginationHandle";
  204. import { mapGetters } from "vuex";
  205. import resToken from "@/mixins/resToken";
  206. export default {
  207. name: "brand",
  208. mixins: [mixinPage, resToken],
  209. components: {
  210. addEdit,
  211. },
  212. computed: {
  213. //组件SIZE设置
  214. ...mapGetters(["tablebtnSize", "searchSize", "size"]),
  215. powers() {
  216. const tran =
  217. this.$store.getters.btnList.find((item) => item.menu_route == "brand") || {};
  218. const { action } = tran ?? {};
  219. return action ?? [];
  220. },
  221. },
  222. data() {
  223. return {
  224. statusList: statusList,
  225. roleLevel: roleLevel,
  226. loading: true,
  227. showModel: false,
  228. modelId: "000",
  229. sitem: {},
  230. parmValue: {
  231. page: 1, // 页码
  232. size: 15, // 每页显示条数
  233. start: "",
  234. end: "",
  235. brand_name: "",
  236. // company_name: "", //创建人部门
  237. status: "",
  238. creater: "",
  239. },
  240. // 状态
  241. statusOptions: [
  242. { id: "0", label: "禁用" },
  243. { id: "1", label: "启用" },
  244. ],
  245. // 表格 - 数据
  246. tableData: [],
  247. // 表格 - 参数
  248. table: {
  249. stripe: true,
  250. border: true,
  251. _defaultHeader_: ["setcol"],
  252. },
  253. // 表格 - 分页
  254. pageInfo: {
  255. size: 15,
  256. curr: 1,
  257. total: 0,
  258. },
  259. // 表格 - 列参数
  260. columns: [
  261. {
  262. prop: "id",
  263. label: "ID",
  264. },
  265. {
  266. prop: "brand_name",
  267. label: "品牌名称",
  268. },
  269. {
  270. prop: "status",
  271. label: "状态",
  272. _slot_: "status",
  273. },
  274. {
  275. prop: "company_name",
  276. label: "申请人部门",
  277. minWidth: "150px",
  278. },
  279. {
  280. prop: "creater",
  281. label: "创建人",
  282. },
  283. {
  284. prop: "addtime",
  285. label: "创建时间",
  286. },
  287. {
  288. prop: "",
  289. label: "操作",
  290. fixed: "right",
  291. _noset_: true,
  292. _slot_: "operation",
  293. },
  294. ],
  295. };
  296. },
  297. mounted() {
  298. this.searchList();
  299. },
  300. methods: {
  301. restSearch() {
  302. // 表格 - 分页
  303. this.pageInfo = {
  304. size: 15,
  305. curr: 1,
  306. total: 0,
  307. };
  308. this.parmValue = {
  309. page: 1, // 页码
  310. size: 15, // 每页显示条数
  311. start: "",
  312. // company_name: "", //创建人部门
  313. end: "",
  314. brand_name: "",
  315. status: "",
  316. creater: "",
  317. };
  318. this.searchList();
  319. },
  320. // 新建/编辑/详情
  321. openModal(row, type) {
  322. const { status } = row;
  323. if (type === "005" && status + "" === "1") {
  324. this.$message.warning("禁用后,才可以修改!");
  325. return;
  326. }
  327. this.sitem = row;
  328. this.modelId = type;
  329. this.showModel = true;
  330. },
  331. // 时间
  332. async handleTime(e) {
  333. this.parmValue.start = e.startTime || "";
  334. this.parmValue.end = e.endTime || "";
  335. if (
  336. (this.parmValue.start !== "" && this.parmValue.end !== "") ||
  337. (this.parmValue.start === "" && this.parmValue.end === "")
  338. ) {
  339. this.pageInfo.curr = 1;
  340. this.parmValue.page = 1;
  341. await this.searchList();
  342. }
  343. },
  344. /**
  345. * 启用/禁用
  346. * @param {String} id id
  347. * @param {String} status 0-禁用 1-启用
  348. */
  349. async changeStatus(id, status) {
  350. await this.$confirm(`确定要改为${status + "" === "1" ? "禁用" : "启用"}?`, {
  351. confirmButtonText: "确定",
  352. cancelButtonText: "取消",
  353. type: "warning",
  354. })
  355. .then(async () => {
  356. this.loading = true;
  357. const model = {
  358. id: id,
  359. status: status + "" === "1" ? "0" : "1",
  360. };
  361. const res = await asyncRequest.status(model);
  362. if (res && res.code === 0) {
  363. this.loading = false;
  364. this.$notify.success({
  365. title: "状态修改成功!",
  366. message: "",
  367. });
  368. await this.searchList();
  369. } else if (res && res.code >= 100 && res.code <= 104) {
  370. await this.logout();
  371. } else {
  372. this.loading = false;
  373. this.$message.warning(res.message);
  374. }
  375. })
  376. .catch(() => {
  377. console.log("取消");
  378. });
  379. },
  380. async deleteItem(id) {
  381. await this.$confirm("确定要删除?", {
  382. confirmButtonText: "确定",
  383. cancelButtonText: "取消",
  384. type: "warning",
  385. })
  386. .then(async () => {
  387. const model = {
  388. id: id,
  389. };
  390. const res = await asyncRequest.delete(model);
  391. if (res && res.code === 0) {
  392. this.$notify.success({
  393. title: "删除成功",
  394. message: "",
  395. });
  396. this.searchList();
  397. } else if (res && res.code >= 100 && res.code <= 104) {
  398. await this.logout();
  399. } else {
  400. this.$message.warning(res.message);
  401. }
  402. })
  403. .catch(() => {
  404. console.log("取消");
  405. });
  406. },
  407. // 刷新表格
  408. async searchList() {
  409. if (
  410. (this.parmValue.start !== "" && this.parmValue.end === "") ||
  411. (this.parmValue.start === "" && this.parmValue.end !== "")
  412. ) {
  413. this.$message.warning("时间区间不完整!");
  414. return;
  415. }
  416. this.loading = true;
  417. const res = await asyncRequest.list(this.parmValue);
  418. if (res && res.code === 0 && res.data) {
  419. this.tableData = res.data.list;
  420. this.pageInfo.total = Number(res.data.count);
  421. } else if (res && res.code >= 100 && res.code <= 104) {
  422. await this.logout();
  423. } else {
  424. this.tableData = [];
  425. this.pageInfo.total = 0;
  426. }
  427. this.loading = false;
  428. },
  429. },
  430. };
  431. </script>
  432. <style lang="scss" scoped></style>