index.vue 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515
  1. <template>
  2. <div class="app-container">
  3. <el-form :model="queryParams" ref="queryForm" :inline="true" v-show="showSearch" label-width="68px" @submit.native.prevent>
  4. <el-form-item label="类别" prop="typeId">
  5. <template>
  6. <el-select v-model="queryParams.typeId" filterable placeholder="请选择">
  7. <el-option
  8. v-for="item in organizationTypeList"
  9. :key="item.typeId"
  10. :label="item.typeName"
  11. :value="item.typeId">
  12. </el-option>
  13. </el-select>
  14. </template>
  15. </el-form-item>
  16. <el-form-item label="房间" prop="roomId">
  17. <template>
  18. <el-select v-model="queryParams.roomId" filterable placeholder="请选择">
  19. <el-option
  20. v-for="item in roomList"
  21. :key="item.roomId"
  22. :label="item.roomName"
  23. :value="item.roomId">
  24. </el-option>
  25. </el-select>
  26. </template>
  27. </el-form-item>
  28. <el-form-item label="大楼" prop="buildingId">
  29. <template>
  30. <el-select v-model="queryParams.buildingId" filterable placeholder="请选择">
  31. <el-option
  32. v-for="item in buildingList"
  33. :key="item.buildingId"
  34. :label="item.buildingName"
  35. :value="item.buildingId">
  36. </el-option>
  37. </el-select>
  38. </template>
  39. </el-form-item>
  40. <el-form-item label="区域" prop="areaId">
  41. <template>
  42. <el-select v-model="queryParams.areaId" filterable placeholder="请选择">
  43. <el-option
  44. v-for="item in areaList"
  45. :key="item.areaId"
  46. :label="item.areaName"
  47. :value="item.areaId">
  48. </el-option>
  49. </el-select>
  50. </template>
  51. </el-form-item>
  52. <el-form-item label="名称" prop="organizationName">
  53. <el-input
  54. v-model="queryParams.organizationName"
  55. placeholder="请输入名称"
  56. clearable
  57. size="small"
  58. @keyup.enter.native="handleQuery"
  59. />
  60. </el-form-item>
  61. <el-form-item label="是否重要" prop="important">
  62. <el-select v-model="queryParams.important" placeholder="请选择是否重要" clearable size="small">
  63. <el-option
  64. v-for="dict in dict.type.sys_yes_no"
  65. :key="dict.value"
  66. :label="dict.label"
  67. :value="dict.value"
  68. />
  69. </el-select>
  70. </el-form-item>
  71. <el-form-item>
  72. <el-button type="primary" icon="el-icon-search" size="mini" @click="handleQuery">搜索</el-button>
  73. <el-button icon="el-icon-refresh" size="mini" @click="resetQuery">重置</el-button>
  74. </el-form-item>
  75. </el-form>
  76. <el-row :gutter="10" class="mb8">
  77. <el-col :span="1.5">
  78. <el-button
  79. type="primary"
  80. plain
  81. icon="el-icon-plus"
  82. size="mini"
  83. @click="handleAdd"
  84. v-hasPermi="['info:organizationInfo:add']"
  85. >新增</el-button>
  86. </el-col>
  87. <el-col :span="1.5">
  88. <el-button
  89. type="success"
  90. plain
  91. icon="el-icon-edit"
  92. size="mini"
  93. :disabled="single"
  94. @click="handleUpdate"
  95. v-hasPermi="['info:organizationInfo:edit']"
  96. >修改</el-button>
  97. </el-col>
  98. <el-col :span="1.5">
  99. <el-button
  100. type="danger"
  101. plain
  102. icon="el-icon-delete"
  103. size="mini"
  104. :disabled="multiple"
  105. @click="handleDelete"
  106. v-hasPermi="['info:organizationInfo:remove']"
  107. >删除</el-button>
  108. </el-col>
  109. <el-col :span="1.5">
  110. <el-button
  111. type="warning"
  112. plain
  113. icon="el-icon-download"
  114. size="mini"
  115. :loading="exportLoading"
  116. @click="handleExport"
  117. v-hasPermi="['info:organizationInfo:export']"
  118. >导出</el-button>
  119. </el-col>
  120. <right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar>
  121. </el-row>
  122. <el-table v-loading="loading" :data="organizationInfoList" @selection-change="handleSelectionChange">
  123. <el-table-column type="selection" width="55" align="center" />
  124. <el-table-column label="主体id" align="center" prop="organizationId" />
  125. <el-table-column label="类型" align="center">
  126. <template slot-scope="scope">
  127. {{ getOrganizationTypeName(scope.row.typeId) }}
  128. </template>
  129. </el-table-column>
  130. <el-table-column label="房间" align="center">
  131. <template slot-scope="scope">
  132. {{ getRoomName(scope.row.roomId) }}
  133. </template>
  134. </el-table-column>
  135. <el-table-column label="大楼" align="center">
  136. <template slot-scope="scope">
  137. {{ getBuildingName(scope.row.buildingId) }}
  138. </template>
  139. </el-table-column>
  140. <el-table-column label="区域" align="center">
  141. <template slot-scope="scope">
  142. {{ getAreaName(scope.row.areaId) }}
  143. </template>
  144. </el-table-column>
  145. <el-table-column label="名称" align="center" prop="organizationName" />
  146. <el-table-column label="是否重要" align="center" prop="important">
  147. <template slot-scope="scope">
  148. <dict-tag :options="dict.type.sys_yes_no" :value="scope.row.important"/>
  149. </template>
  150. </el-table-column>
  151. <el-table-column label="logo" align="center" prop="logo">
  152. <template slot-scope="scope">
  153. <img :src="BASE_URL + scope.row.logo" style="width: 50px; height: 50px;">
  154. </template>
  155. </el-table-column>
  156. <el-table-column label="操作" align="center" class-name="small-padding fixed-width" width="140">
  157. <template slot-scope="scope">
  158. <el-button
  159. size="mini"
  160. type="text"
  161. icon="el-icon-edit"
  162. @click="handleUpdate(scope.row)"
  163. v-hasPermi="['info:organizationInfo:edit']"
  164. >修改</el-button>
  165. <el-button
  166. size="mini"
  167. type="text"
  168. icon="el-icon-delete"
  169. @click="handleDelete(scope.row)"
  170. v-hasPermi="['info:organizationInfo:remove']"
  171. >删除</el-button>
  172. </template>
  173. </el-table-column>
  174. </el-table>
  175. <pagination
  176. v-show="total>0"
  177. :total="total"
  178. :page.sync="queryParams.pageNum"
  179. :limit.sync="queryParams.pageSize"
  180. @pagination="getList"
  181. />
  182. <!-- 添加或修改主体信息对话框 -->
  183. <el-dialog :title="title" :visible.sync="open" width="800px" append-to-body>
  184. <el-form ref="form" :model="form" :rules="rules" label-width="120px">
  185. <el-form-item label="类别" prop="typeId">
  186. <template>
  187. <el-select v-model="form.typeId" filterable placeholder="请选择">
  188. <el-option
  189. v-for="item in organizationTypeList"
  190. :key="item.typeId"
  191. :label="item.typeName"
  192. :value="item.typeId">
  193. </el-option>
  194. </el-select>
  195. </template>
  196. </el-form-item>
  197. <el-form-item label="房间" prop="roomId">
  198. <template>
  199. <el-select v-model="form.roomId" filterable placeholder="请选择">
  200. <el-option
  201. v-for="item in roomList"
  202. :key="item.roomId"
  203. :label="item.roomName"
  204. :value="item.roomId">
  205. </el-option>
  206. </el-select>
  207. </template>
  208. </el-form-item>
  209. <el-form-item label="大楼" prop="buildingId">
  210. <template>
  211. <el-select v-model="form.buildingId" filterable placeholder="请选择">
  212. <el-option
  213. v-for="item in buildingList"
  214. :key="item.buildingId"
  215. :label="item.buildingName"
  216. :value="item.buildingId">
  217. </el-option>
  218. </el-select>
  219. </template>
  220. </el-form-item>
  221. <el-form-item label="区域" prop="areaId">
  222. <template>
  223. <el-select v-model="form.areaId" filterable placeholder="请选择">
  224. <el-option
  225. v-for="item in areaList"
  226. :key="item.areaId"
  227. :label="item.areaName"
  228. :value="item.areaId">
  229. </el-option>
  230. </el-select>
  231. </template>
  232. </el-form-item>
  233. <el-form-item label="名称" prop="organizationName">
  234. <el-input v-model="form.organizationName" placeholder="请输入名称" />
  235. </el-form-item>
  236. <el-form-item label="简介" prop="intro">
  237. <el-input v-model="form.intro" placeholder="请输入简介" />
  238. </el-form-item>
  239. <el-form-item label="二维坐标" prop="lngLat">
  240. <el-input v-model="form.lngLat" placeholder="请输入二维坐标" />
  241. </el-form-item>
  242. <el-form-item label="三维坐标" prop="rasterLngLat">
  243. <el-input v-model="form.rasterLngLat" placeholder="请输入三维坐标" />
  244. </el-form-item>
  245. <el-form-item label="是否重要">
  246. <el-switch v-model="form.important"></el-switch>
  247. </el-form-item>
  248. <el-form-item label="地址" prop="address">
  249. <el-input v-model="form.address" placeholder="请输入地址" />
  250. </el-form-item>
  251. <el-form-item label="logo">
  252. <imageUpload v-model="form.logo"/>
  253. </el-form-item>
  254. <el-form-item label="联系方式" prop="telephone">
  255. <el-input v-model="form.telephone" placeholder="请输入联系方式" />
  256. </el-form-item>
  257. <el-form-item label="主要产品" prop="product">
  258. <el-input v-model="form.product" placeholder="请输入主要产品" />
  259. </el-form-item>
  260. <el-form-item label="入驻时间" prop="enterTime">
  261. <el-date-picker clearable size="small"
  262. v-model="form.enterTime"
  263. type="datetime"
  264. value-format="yyyy-MM-dd HH:mm:ss"
  265. placeholder="选择入驻时间">
  266. </el-date-picker>
  267. </el-form-item>
  268. <el-form-item label="员工人数" prop="employeNum">
  269. <el-input-number v-model="form.employeNum" controls-position="right" :min="0" placeholder="请输入员工人数" />
  270. </el-form-item>
  271. <el-form-item label="宣传视频">
  272. <fileUpload v-model="form.audio"/>
  273. </el-form-item>
  274. </el-form>
  275. <div slot="footer" class="dialog-footer">
  276. <el-button type="primary" @click="submitForm">确 定</el-button>
  277. <el-button @click="cancel">取 消</el-button>
  278. </div>
  279. </el-dialog>
  280. </div>
  281. </template>
  282. <script>
  283. import { listOrganizationInfo, getOrganizationInfo, delOrganizationInfo, addOrganizationInfo, updateOrganizationInfo, exportOrganizationInfo } from "@/api/info/organizationInfo";
  284. import { listBuildingInfo, getBuildingInfo } from "@/api/info/buildingInfo";
  285. import { listAreaInfo, getAreaInfo } from "@/api/info/areaInfo";
  286. import { listRoomInfo, getRoomInfo } from "@/api/info/roomInfo";
  287. import { listOrganizationType, getOrganizationType } from "@/api/type/organizationType";
  288. export default {
  289. name: "OrganizationInfo",
  290. dicts: ['sys_yes_no'],
  291. data() {
  292. return {
  293. organizationTypeList: [],
  294. areaList: [],
  295. roomList: [],
  296. buildingList: [],
  297. BASE_URL: BASE_URL,
  298. // 遮罩层
  299. loading: true,
  300. // 导出遮罩层
  301. exportLoading: false,
  302. // 选中数组
  303. ids: [],
  304. // 非单个禁用
  305. single: true,
  306. // 非多个禁用
  307. multiple: true,
  308. // 显示搜索条件
  309. showSearch: true,
  310. // 总条数
  311. total: 0,
  312. // 主体信息表格数据
  313. organizationInfoList: [],
  314. // 弹出层标题
  315. title: "",
  316. // 是否显示弹出层
  317. open: false,
  318. // 查询参数
  319. queryParams: {
  320. pageNum: 1,
  321. pageSize: 10,
  322. typeId: null,
  323. roomId: null,
  324. buildingId: null,
  325. areaId: null,
  326. organizationName: null,
  327. important: null,
  328. },
  329. queryBuildingParams: {
  330. pageNum: 1,
  331. pageSize: 999999,
  332. },
  333. // 表单参数
  334. form: {},
  335. // 表单校验
  336. rules: {
  337. organizationId: [
  338. { required: true, message: "主体id不能为空", trigger: "blur" }
  339. ],
  340. }
  341. };
  342. },
  343. created() {
  344. this.getList();
  345. this.getBuilding();
  346. this.getRoomList();
  347. this.getAreaList();
  348. this.getOrganizationTypeList();
  349. },
  350. methods: {
  351. getOrganizationTypeName(typeId) {
  352. const type = this.organizationTypeList.find(b => b.typeId === typeId);
  353. return type ? type.typeName : '未知';
  354. },
  355. getAreaName(areaId) {
  356. const area = this.areaList.find(b => b.areaId === areaId);
  357. return area ? area.areaName : '未知';
  358. },
  359. getRoomName(roomId) {
  360. const room = this.roomList.find(b => b.roomId === roomId);
  361. return room ? room.roomName : '未知';
  362. },
  363. getBuildingName(buildingId) {
  364. const building = this.buildingList.find(b => b.buildingId === buildingId);
  365. return building ? building.buildingName : '未知';
  366. },
  367. getOrganizationTypeList() {
  368. listOrganizationType(this.queryBuildingParams).then(response => {
  369. this.organizationTypeList = response.data.list;
  370. });
  371. },
  372. getAreaList() {
  373. listAreaInfo(this.queryBuildingParams).then(response => {
  374. this.areaList = response.data.list;
  375. });
  376. },
  377. getRoomList() {
  378. listRoomInfo(this.queryBuildingParams).then(response => {
  379. this.roomList = response.data.list;
  380. });
  381. },
  382. getBuilding() {
  383. listBuildingInfo(this.queryBuildingParams).then(response => {
  384. this.buildingList = response.data.list;
  385. });
  386. },
  387. /** 查询主体信息列表 */
  388. getList() {
  389. this.loading = true;
  390. listOrganizationInfo(this.queryParams).then(response => {
  391. this.organizationInfoList = response.data.list;
  392. this.total = response.data.total;
  393. this.loading = false;
  394. });
  395. },
  396. // 取消按钮
  397. cancel() {
  398. this.open = false;
  399. this.reset();
  400. },
  401. // 表单重置
  402. reset() {
  403. this.form = {
  404. organizationId: null,
  405. typeId: null,
  406. roomId: null,
  407. buildingId: null,
  408. areaId: null,
  409. organizationName: null,
  410. intro: null,
  411. lngLat: null,
  412. rasterLngLat: null,
  413. important: true,
  414. typeName: null,
  415. address: null,
  416. logo: null,
  417. telephone: null,
  418. product: null,
  419. enterTime: null,
  420. employeNum: null,
  421. audio: null
  422. };
  423. this.resetForm("form");
  424. },
  425. /** 搜索按钮操作 */
  426. handleQuery() {
  427. this.queryParams.pageNum = 1;
  428. this.getList();
  429. },
  430. /** 重置按钮操作 */
  431. resetQuery() {
  432. this.resetForm("queryForm");
  433. this.handleQuery();
  434. },
  435. // 多选框选中数据
  436. handleSelectionChange(selection) {
  437. this.ids = selection.map(item => item.organizationId)
  438. this.single = selection.length!==1
  439. this.multiple = !selection.length
  440. },
  441. /** 新增按钮操作 */
  442. handleAdd() {
  443. this.reset();
  444. this.open = true;
  445. this.title = "添加主体信息";
  446. },
  447. /** 修改按钮操作 */
  448. handleUpdate(row) {
  449. this.reset();
  450. const organizationId = row.organizationId || this.ids
  451. getOrganizationInfo(organizationId).then(response => {
  452. this.form = response.data;
  453. this.open = true;
  454. this.title = "修改主体信息";
  455. });
  456. },
  457. /** 提交按钮 */
  458. submitForm() {
  459. this.$refs["form"].validate(valid => {
  460. if (valid) {
  461. if (this.form.organizationId != null) {
  462. updateOrganizationInfo(this.form).then(response => {
  463. this.$modal.msgSuccess("修改成功");
  464. this.open = false;
  465. this.getList();
  466. });
  467. } else {
  468. addOrganizationInfo(this.form).then(response => {
  469. this.$modal.msgSuccess("新增成功");
  470. this.open = false;
  471. this.getList();
  472. });
  473. }
  474. }
  475. });
  476. },
  477. /** 删除按钮操作 */
  478. handleDelete(row) {
  479. const organizationIds = row.organizationId || this.ids;
  480. this.$modal.confirm('是否确认删除主体信息编号为"' + organizationIds + '"的数据项?').then(function() {
  481. return delOrganizationInfo(organizationIds);
  482. }).then(() => {
  483. this.getList();
  484. this.$modal.msgSuccess("删除成功");
  485. }).catch(() => {});
  486. },
  487. /** 导出按钮操作 */
  488. handleExport() {
  489. const queryParams = this.queryParams;
  490. this.$modal.confirm('是否确认导出所有主体信息数据项?').then(() => {
  491. this.exportLoading = true;
  492. return exportOrganizationInfo(queryParams);
  493. }).then(response => {
  494. this.$download.name(response.msg);
  495. this.exportLoading = false;
  496. }).catch(() => {});
  497. }
  498. }
  499. };
  500. </script>