index.vue 8.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331
  1. <script setup lang="ts">
  2. import { watch } from "vue";
  3. import { useColumns } from "./columns";
  4. import { httpList, httpStatus } from "/@/api/supplierManage/supplierAccoutManage";
  5. import { reactive, ref, onMounted } from "vue";
  6. import { type FormInstance } from "element-plus";
  7. import { TableProBar } from "/@/components/ReTable";
  8. import { type PaginationProps } from "@pureadmin/table";
  9. import { useRenderIcon } from "/@/components/ReIcon/src/hooks";
  10. import { useNav } from "/@/layout/hooks/nav";
  11. import { statusList } from "/@/utils/status";
  12. import { responseHandle } from "/@/utils/responseHandle";
  13. import { useUserStoreHook } from "/@/store/modules/user";
  14. import { useCompany } from "/@/hooks/core/useCompany";
  15. import { type menuType } from "./types";
  16. import addEdit from "./addEdit.vue";
  17. import resetPassword from "./resetPassword.vue";
  18. const { logout } = useNav();
  19. defineOptions({
  20. name: "supplierAccountManage"
  21. });
  22. const powers = ref([]);
  23. const form = reactive({
  24. nickname: "",
  25. username: "",
  26. status: "",
  27. page: 1,
  28. size: 15
  29. });
  30. const dataList = ref([]);
  31. const loading = ref(true);
  32. const showModel = ref(false);
  33. const itemId = ref("");
  34. const isDetails = ref("add");
  35. const { columns } = useColumns();
  36. const { currentCompany } = useCompany();
  37. const sitem = reactive<menuType>({
  38. id: "", //账户id
  39. nickname: "", //真实姓名
  40. mobile: "", //手机号
  41. role: "", //角色,
  42. companyArr: []
  43. });
  44. const passwordModelId = ref("");
  45. const passwordModel = ref(false);
  46. const formRef = ref<FormInstance>();
  47. const pagination = reactive<PaginationProps>({
  48. total: 0,
  49. pageSize: 15,
  50. currentPage: 1,
  51. background: true
  52. });
  53. // 重置密码
  54. const resetRwd = async row => {
  55. const { id } = row;
  56. passwordModelId.value = id;
  57. passwordModel.value = true;
  58. };
  59. //修改状态
  60. const handleStatus = async row => {
  61. const { id, status } = row;
  62. const { code, message } = await httpStatus({
  63. id,
  64. status: status + "" === "1" ? "0" : "1"
  65. });
  66. responseHandle({
  67. code,
  68. message,
  69. logout,
  70. handler: () => onSearch()
  71. });
  72. };
  73. async function handleCurrentChange(val: number) {
  74. form.page = val;
  75. await onSearch();
  76. }
  77. async function handleSizeChange(val: number) {
  78. form.size = val;
  79. form.page = 1;
  80. await onSearch();
  81. }
  82. function handleSelectionChange(val) {
  83. console.log("handleSelectionChange", val);
  84. }
  85. async function onSearch() {
  86. loading.value = true;
  87. const { code, data, message } = await httpList({
  88. ...form,
  89. companyNo: currentCompany.value.companyNo,
  90. noRela: currentCompany.value.companyNo === ""
  91. });
  92. responseHandle({
  93. code,
  94. message,
  95. logout,
  96. handler: () => {
  97. const { list, count } = data;
  98. dataList.value = list ?? [];
  99. pagination.total = count ?? 0;
  100. pagination.pageSize = form.size;
  101. pagination.currentPage = form.page;
  102. }
  103. });
  104. loading.value = false;
  105. }
  106. async function resetSearch() {
  107. form.page = 1;
  108. await onSearch();
  109. }
  110. //新建/编辑/详情弹窗
  111. function editItem(id, type, item) {
  112. itemId.value = id;
  113. isDetails.value = type;
  114. for (let key in item) {
  115. sitem[key] = item[key];
  116. }
  117. showModel.value = true;
  118. }
  119. const submitRefresh = () => {
  120. showModel.value = false;
  121. onSearch();
  122. };
  123. const submitCancel = () => {
  124. showModel.value = false;
  125. };
  126. const resetCancel = () => {
  127. passwordModel.value = false;
  128. };
  129. const resetForm = (formEl: FormInstance | undefined) => {
  130. if (!formEl) return;
  131. formEl.resetFields();
  132. form.page = 1;
  133. onSearch();
  134. };
  135. watch(
  136. () => currentCompany.value,
  137. () => onSearch()
  138. );
  139. onMounted(() => {
  140. powers.value = useUserStoreHook().getMenuActions("supplierAccoutManage");
  141. onSearch();
  142. });
  143. </script>
  144. <template>
  145. <div class="main">
  146. <div v-show="powers.some(i => i == '001')">
  147. <el-form
  148. ref="formRef"
  149. :inline="true"
  150. :model="form"
  151. size="small"
  152. :label-width="0"
  153. class="bg-white w-99/100 pl-8 pt-4"
  154. >
  155. <el-form-item prop="status">
  156. <el-select
  157. v-model="form.status"
  158. style="width: 100%"
  159. placeholder="账号状态"
  160. clearable
  161. >
  162. <el-option
  163. v-for="(si, sii) in statusList"
  164. :key="'status' + si.value + sii"
  165. :label="si.label"
  166. :value="si.value"
  167. />
  168. </el-select>
  169. </el-form-item>
  170. <el-form-item prop="nickname">
  171. <el-input v-model="form.nickname" placeholder="真实姓名" clearable />
  172. </el-form-item>
  173. <el-form-item prop="username">
  174. <el-input v-model="form.username" placeholder="手机号" clearable />
  175. </el-form-item>
  176. <el-form-item>
  177. <el-button
  178. type="primary"
  179. :icon="useRenderIcon('search')"
  180. :loading="loading"
  181. @click="resetSearch"
  182. >
  183. 搜索
  184. </el-button>
  185. <el-button
  186. :icon="useRenderIcon('refresh')"
  187. @click="resetForm(formRef)"
  188. >
  189. 重置
  190. </el-button>
  191. </el-form-item>
  192. </el-form>
  193. <TableProBar
  194. title="公司账号管理"
  195. :loading="loading"
  196. :dataList="dataList"
  197. size="small"
  198. @refresh="onSearch"
  199. >
  200. <template #buttons>
  201. <el-button
  202. type="primary"
  203. size="small"
  204. :icon="useRenderIcon('add')"
  205. @click="editItem('', 'add', {})"
  206. >
  207. 新增账号
  208. </el-button>
  209. </template>
  210. <template v-slot="{ size, checkList }">
  211. <PureTable
  212. border
  213. align="left"
  214. showOverflowTooltip
  215. table-layout="auto"
  216. size="small"
  217. :data="dataList"
  218. :columns="columns"
  219. :checkList="checkList"
  220. :pagination="pagination"
  221. :paginationSmall="size === 'small' ? true : false"
  222. :header-cell-style="{ background: '#fafafa', color: '#606266' }"
  223. @selection-change="handleSelectionChange"
  224. @size-change="handleSizeChange"
  225. @current-change="handleCurrentChange"
  226. >
  227. <template #operation="{ row }">
  228. <el-popconfirm :title="'确认重置密码?'" @confirm="resetRwd(row)">
  229. <template #reference>
  230. <el-button
  231. class="reset-margin"
  232. link
  233. type="primary"
  234. size="small"
  235. v-if="powers.some(i => i == '012')"
  236. :icon="useRenderIcon('refresh-right')"
  237. /> </template
  238. ></el-popconfirm>
  239. <el-button
  240. class="reset-margin"
  241. v-if="powers.some(i => i == '007')"
  242. link
  243. type="primary"
  244. size="small"
  245. @click="editItem(row.id, 'view', row)"
  246. :icon="useRenderIcon('eye-view')"
  247. />
  248. <el-button
  249. class="reset-margin"
  250. link
  251. v-if="powers.some(i => i == '005')"
  252. type="primary"
  253. size="small"
  254. @click="editItem(row.id, 'edit', row)"
  255. :icon="useRenderIcon('edits')"
  256. />
  257. <el-popconfirm
  258. :title="
  259. String(row.status) === '1' ? '改为禁用?' : '改为启用?'
  260. "
  261. v-if="
  262. (powers.some(i => i == '004') && row.status + '' === '1') ||
  263. (powers.some(i => i == '003') && row.status + '' === '0')
  264. "
  265. @confirm="handleStatus(row)"
  266. >
  267. <template #reference>
  268. <el-button
  269. class="reset-margin"
  270. link
  271. type="primary"
  272. size="small"
  273. :icon="
  274. useRenderIcon(
  275. String(row.status) === '1'
  276. ? 'close-circle-line'
  277. : 'checkbox-circle-line'
  278. )
  279. " /></template
  280. ></el-popconfirm>
  281. </template>
  282. </PureTable>
  283. </template>
  284. </TableProBar>
  285. <addEdit
  286. :itemId="itemId"
  287. :isDetails="isDetails"
  288. :show-model="showModel"
  289. @refresh="submitRefresh"
  290. @cancel="submitCancel"
  291. :sitem="sitem"
  292. />
  293. <reset-password
  294. :itemId="passwordModelId"
  295. :show-model="passwordModel"
  296. @refresh="resetCancel"
  297. @cancel="resetCancel"
  298. />
  299. </div>
  300. <NoAuth v-show="!powers.some(i => i == '001')" />
  301. </div>
  302. </template>
  303. <style scoped lang="scss">
  304. :deep(.el-dropdown-menu__item i) {
  305. margin: 0;
  306. }
  307. </style>