index.vue 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583
  1. <template>
  2. <scroll-view class="scroll-height" :scroll-y="true" :data-theme="'theme-' + proxy.$settingStore.themeColor.name">
  3. <view id="facilitiesGather">
  4. <view class="centerOne">
  5. <!-- <view class="title"> </view> -->
  6. <u--form :model="form" ref="uForm" :rules="rules" labelWidth="90">
  7. <view>
  8. <view style="padding: 10px 10px 20px 10px; background: #ffffff">
  9. <view style="padding-left: 9px">
  10. <u-form-item label="所属部门" prop="department" :borderBottom="true" @click="handleAction('所属部门')" required>
  11. <u-input v-model="form.department" placeholder="请选择所属部门" suffixIcon="arrow-right" suffixIconStyle="color: #909399" border="none" disabledColor="transparent" disabled />
  12. </u-form-item>
  13. <u-form-item label="设施类型" prop="facilityTypeName" :borderBottom="true" @click="handleAction('设施类型')" required>
  14. <u-input v-model="form.facilityTypeName" placeholder="请选择设施类型" suffixIcon="arrow-right" suffixIconStyle="color: #909399" border="none" disabledColor="transparent" disabled />
  15. </u-form-item>
  16. <u-form-item label="设施名称" prop="facilityName" :borderBottom="true" required>
  17. <u-input v-model="form.facilityName" placeholder="请输入设施名称" border="none" />
  18. </u-form-item>
  19. <u-form-item label="状态" prop="status" :borderBottom="true" required>
  20. <u-radio-group v-model="form.status" placement="row">
  21. <u-radio v-for="se in sexList" :key="se" :activeColor="proxy.$settingStore.themeColor.color" :label="se.text" :name="se.value" style="margin-right: 15px"></u-radio>
  22. </u-radio-group>
  23. </u-form-item>
  24. <u-form-item label="设施地址" prop="address" :borderBottom="true" required>
  25. <u-input v-model="form.address" placeholder="请选择设施地址" border="none" disabledColor="transparent" disabled @click="handleAction('设施地址')">
  26. <template #suffix>
  27. <view class="iconfont ucicon-map menu-icon" style="font-size: 18px; color: #909399"> </view>
  28. </template>
  29. </u-input>
  30. </u-form-item>
  31. <u-form-item label="行政区划" prop="facilityAddress" :borderBottom="true" required>
  32. <view style="width: 100%">
  33. <view style="font-size: 15px"> {{ form.address ? form.address.split(form.facilityAddress)[0] : "" }}</view>
  34. <u-input v-model="form.facilityAddress" placeholder="请输入详细地址" border="none" />
  35. </view>
  36. </u-form-item>
  37. <u-form-item v-if="form.typeGuise && form.typeGuise != 1" label="类型" prop="gpsAreas" :borderBottom="true" @click="handleAction('类型')" required>
  38. <view style="font-size: 15px">{{ form.typeGuise == 1 ? "点" : form.typeGuise == 2 ? "线" : form.typeGuise == 3 ? "面" : "" }}</view>
  39. <view v-if="form.gpsAreas.length <= 0" style="font-size: 15px; margin: auto; color: #ff0000">未编辑</view>
  40. <view v-if="form.gpsAreas.length > 0" style="font-size: 15px; margin: auto; color: #30bb00">已编辑</view>
  41. <view class="iconfont ucicon-bianji1 menu-icon" style="font-size: 14px; color: #909399"> </view>
  42. </u-form-item>
  43. <u-form-item label="联系人" prop="contact" :borderBottom="true">
  44. <u-input v-model="form.contact" placeholder="请输入联系人" border="none" />
  45. </u-form-item>
  46. <u-form-item label="联系电话" prop="contactPhone" :borderBottom="true">
  47. <u-input v-model="form.contactPhone" placeholder="请输入联系电话" border="none" maxlength="11" />
  48. </u-form-item>
  49. <u-form-item label="设备图片" prop="imagesUrl" :borderBottom="true">
  50. <oa-upload :uploadCount="1" :uploadImage="form.imagesUrl" @uploadSuccessChange="uploadSuccessChange" @uploadDeleteChange="uploadDeleteChange"></oa-upload>
  51. </u-form-item>
  52. <u-form-item label="备注" prop="facilityDesc" :borderBottom="true">
  53. <u-textarea v-model="form.facilityDesc" placeholder="请输入" border="none" maxlength="30" style="padding: 0px"></u-textarea>
  54. </u-form-item>
  55. <u-form-item v-for="(fo, index) in form.extendData" :key="index" :label="fo.name" :prop="fo.key" :borderBottom="true">
  56. <u-input v-if="fo.type === 'SRK'" v-model="fo.value" :placeholder="'请输入' + fo.name" border="none" disabledColor="transparent" />
  57. <u-radio-group v-if="fo.type === 'DXK'" v-model="fo.value" placement="row">
  58. <u-radio
  59. v-for="se in fo.list"
  60. :key="se"
  61. :activeColor="proxy.$settingStore.themeColor.color"
  62. :label="se.attributeValue"
  63. :name="se.attributeCode"
  64. style="margin-right: 15px"
  65. ></u-radio>
  66. </u-radio-group>
  67. <u-input
  68. v-if="fo.type === 'XLK'"
  69. v-model="fo.valueName"
  70. :placeholder="'请选择' + fo.name"
  71. suffixIcon="arrow-right"
  72. suffixIconStyle="color: #909399"
  73. border="none"
  74. disabledColor="transparent"
  75. disabled
  76. @click="handleAction('属性', fo)"
  77. />
  78. </u-form-item>
  79. </view>
  80. </view>
  81. </view>
  82. </u--form>
  83. <view class="app-padding-bottom"> </view>
  84. <view class="app-button-fixed">
  85. <view class="app-flex">
  86. <u-button class="app-buttom" style="margin-right: 15px" @click="handleSubmit('取消')" shape="circle"> 取消 </u-button>
  87. <u-button class="app-buttom" type="primary" @click="handleSubmit('提交')" shape="circle"> 提交 </u-button>
  88. </view>
  89. </view>
  90. </view>
  91. <u-picker
  92. :show="actionShow"
  93. :columns="actionsList"
  94. :title="'请选择' + actionTitle"
  95. keyName="name"
  96. visibleItemCount="6"
  97. :defaultIndex="[actionDefaultIndex]"
  98. :closeOnClickOverlay="true"
  99. @close="actionShow = false"
  100. @cancel="actionShow = false"
  101. @confirm="selectAction"
  102. @change="changeHandler"
  103. ></u-picker>
  104. </view>
  105. </scroll-view>
  106. </template>
  107. <script setup>
  108. import { onLoad, onShow, onHide, onLaunch, onReady } from "@dcloudio/uni-app";
  109. import { ref, onMounted, inject, shallowRef, reactive, toRefs, getCurrentInstance } from "vue";
  110. import { publicStores, useStores } from "@/store/modules/index";
  111. import { typeSelect, add, uploadAvatar, treeselect } from "@/api/business/fireIot/facilitiesGather/index";
  112. const { proxy } = getCurrentInstance();
  113. const publicStore = publicStores();
  114. //设施类型下拉数据存储
  115. const typeSelectList = ref([[]]);
  116. //部门下拉数据存储
  117. const treeselectList = ref([[]]);
  118. const childrenList1 = ref([[]]);
  119. const dataList = reactive({
  120. sexList: [
  121. {
  122. text: "正常",
  123. value: "0",
  124. },
  125. {
  126. text: "维修",
  127. value: "1",
  128. },
  129. {
  130. text: "关闭",
  131. value: "2",
  132. },
  133. ],
  134. form: publicStore.$state.facilitiesGatherArray,
  135. rules: {
  136. department: [
  137. {
  138. required: false,
  139. message: "请选择所属部门",
  140. trigger: ["blur", "change"],
  141. },
  142. ],
  143. facilityTypeName: [
  144. {
  145. required: true,
  146. message: "请选择设施类型",
  147. trigger: ["blur", "change"],
  148. },
  149. ],
  150. facilityName: [
  151. {
  152. required: true,
  153. message: "请输入设施名称",
  154. trigger: ["blur", "change"],
  155. },
  156. ],
  157. status: [
  158. {
  159. required: true,
  160. message: "请选择设施状态",
  161. trigger: ["blur", "change"],
  162. },
  163. ],
  164. address: [
  165. {
  166. required: false,
  167. message: "请选择设施地址",
  168. trigger: ["blur", "change"],
  169. },
  170. ],
  171. facilityAddress: [
  172. {
  173. required: true,
  174. message: "请输入详细地址",
  175. trigger: ["blur", "change"],
  176. },
  177. ],
  178. // contact: [
  179. // {
  180. // required: true,
  181. // message: "请输入联系人",
  182. // trigger: ["blur", "change"],
  183. // },
  184. // ],
  185. // contactPhone: [
  186. // {
  187. // required: true,
  188. // message: "请输入联系人电话",
  189. // trigger: ["blur", "change"],
  190. // },
  191. // {
  192. // type: "string",
  193. // min: 11,
  194. // required: true,
  195. // message: "请输入正确11位联系人电话",
  196. // pattern: /^1[3|4|5|6|7|8|9][0-9]\d{8}$/,
  197. // trigger: ["blur", "change"],
  198. // },
  199. // ],
  200. // imagesUrl: [
  201. // {
  202. // required: true,
  203. // message: "请选择图片",
  204. // trigger: ["blur", "change"],
  205. // },
  206. // ],
  207. // facilityDesc: [
  208. // {
  209. // required: true,
  210. // message: "请输入备注",
  211. // trigger: ["blur", "change"],
  212. // },
  213. // ],
  214. },
  215. actionIndex: 0,
  216. actionIndex1: 0,
  217. actionTitle: "",
  218. actionShow: false,
  219. actionDefaultIndex: 0,
  220. actionsList: [[]],
  221. });
  222. const { sexList, form, rules, actionIndex, actionIndex1, actionTitle, actionShow, actionDefaultIndex, actionsList } = toRefs(dataList);
  223. const uForm = ref(null);
  224. /**
  225. * @初始化
  226. */
  227. function init() {
  228. typeSelect({ id: "" }).then((requset) => {
  229. if (requset.status === "SUCCESS") {
  230. requset.data.forEach((el) => {
  231. typeSelectList.value[0].push({ name: el.typeName, value: el.id, typeGuise: el.typeGuise, dataField: el.dataField ? JSON.parse(el.dataField) : [] });
  232. });
  233. }
  234. });
  235. treeselect({}).then((requset) => {
  236. if (requset.status === "SUCCESS") {
  237. requset.data.forEach((el) => {
  238. treeselectList.value[0].push({ name: el.label, value: el.id, children: el.children });
  239. });
  240. var data = [
  241. {
  242. id: 124,
  243. label: "公司",
  244. children: [
  245. {
  246. id: 125,
  247. label: "it",
  248. children: [
  249. {
  250. id: 126,
  251. label: "二组",
  252. },
  253. ],
  254. },
  255. ],
  256. },
  257. {
  258. id: 124,
  259. label: "公司",
  260. children: [
  261. {
  262. id: 125,
  263. label: "it1",
  264. children: [
  265. {
  266. id: 126,
  267. label: "1组",
  268. },
  269. ],
  270. },
  271. ],
  272. },
  273. {
  274. id: 124,
  275. label: "公司",
  276. children: [
  277. {
  278. id: 125,
  279. label: "it2",
  280. children: [
  281. {
  282. id: 126,
  283. label: "3组",
  284. },
  285. ],
  286. },
  287. ],
  288. },
  289. ];
  290. data.forEach((el) => {
  291. treeselectList.value[0].push({ name: el.label, value: el.id, children: el.children });
  292. });
  293. }
  294. });
  295. }
  296. /**
  297. * @清空数据
  298. */
  299. function wipeData() {
  300. form.value.department = ""; //所属部门
  301. form.value.facilityType = ""; //设施类型
  302. form.value.facilityTypeName = ""; //设施类型名称
  303. form.value.facilityName = ""; //设施名称
  304. form.value.status = "0"; //设施状态
  305. form.value.address = ""; //设施地址
  306. form.value.longitude = ""; //经度
  307. form.value.latitude = ""; //纬度
  308. form.value.province = ""; //省
  309. form.value.city = ""; //市
  310. form.value.area = ""; //区(县)
  311. form.value.facilityAddress = ""; //详细地址
  312. form.value.streetTown = null; //所属街镇
  313. form.value.gpsAreas = []; //经纬度集合
  314. form.value.contact = ""; //联系人
  315. form.value.contactPhone = ""; //联系方式
  316. form.value.imagesUrl = ""; //图⽚地址URL
  317. form.value.facilityDesc = ""; //备注
  318. form.value.extendData = []; //扩展属性
  319. form.value.recordPictureList = [];
  320. form.value.typeGuise = ""; //点线面类型
  321. form.value.gpsAreas = [];
  322. }
  323. /**
  324. * @api提交
  325. */
  326. function handleSubmit(type) {
  327. let param = {};
  328. if (type == "提交") {
  329. uForm.value
  330. .validate()
  331. .then((res) => {
  332. uni.$u.toast("校验通过");
  333. param = {
  334. facilityType: form.value.facilityType,
  335. facilityName: form.value.facilityName,
  336. status: form.value.status, //设施状态
  337. address: "徐乐路208号", //设施地址
  338. longitude: "121.3632126", //经度
  339. latitude: "30.98168041", //纬度
  340. province: "", //省
  341. city: "", //市
  342. area: "", //区(县)
  343. facilityAddress: form.value.facilityAddress, //详细地址
  344. gpsAreas: "", //经纬度集合
  345. contact: form.value.contact, //联系人
  346. contactPhone: form.value.contactPhone, //联系方式
  347. imagesUrl: form.value.imagesUrl, //图⽚地址URL
  348. facilityDesc: form.value.facilityDesc, //备注
  349. };
  350. form.value.extendData.forEach((el) => {
  351. param.extendData.push({ key: el.key, value: el.value });
  352. });
  353. add(param).then((requset) => {
  354. if (requset.status === "SUCCESS") {
  355. proxy.$tab.navigateTo(`/pages/common/success/index?showNow=${false}`);
  356. }
  357. });
  358. })
  359. .catch((errors) => {
  360. uni.$u.toast("校验失败");
  361. });
  362. } else {
  363. proxy.$tab.navigateBack();
  364. wipeData();
  365. }
  366. }
  367. /**
  368. * @action弹出框点击事件
  369. */
  370. function handleAction(value, array) {
  371. actionsList.value = [[]];
  372. if (value == "所属部门") {
  373. actionTitle.value = "所属部门";
  374. actionsList.value = treeselectList.value;
  375. treeselectList.value[0].forEach((el, ind) => {
  376. if (el.name === form.value.department) {
  377. actionDefaultIndex.value = ind;
  378. }
  379. });
  380. }
  381. if (value == "设施类型") {
  382. actionTitle.value = "设施类型";
  383. actionsList.value = typeSelectList.value;
  384. typeSelectList.value[0].forEach((el, ind) => {
  385. if (el.name === form.value.facilityTypeName) {
  386. actionDefaultIndex.value = ind;
  387. }
  388. });
  389. }
  390. if (value == "设施地址") {
  391. publicStore.$state.facilitiesGatherType = "点";
  392. proxy.$tab.navigateTo("/pages/business/fireIot/facilitiesGather/mapGather");
  393. return;
  394. }
  395. if (value == "类型") {
  396. if (form.value.typeGuise === 2) {
  397. publicStore.$state.facilitiesGatherType = "线";
  398. } else if (form.value.typeGuise === 3) {
  399. publicStore.$state.facilitiesGatherType = "面";
  400. }
  401. proxy.$tab.navigateTo("/pages/business/fireIot/facilitiesGather/mapGather");
  402. return;
  403. }
  404. if (value == "属性") {
  405. actionTitle.value = array.name;
  406. actionsList.value = [array.list];
  407. array.list.forEach((el, ind) => {
  408. if (el.value === array.value) {
  409. actionDefaultIndex.value = ind;
  410. }
  411. });
  412. }
  413. actionShow.value = true;
  414. }
  415. /**
  416. * @action弹出框选择事件
  417. */
  418. function selectAction(e) {
  419. console.log(e);
  420. if (actionTitle.value == "设施类型") {
  421. wipeData();
  422. form.value.facilityType = e.value[0].value;
  423. form.value.facilityTypeName = e.value[0].name;
  424. form.value.typeGuise = e.value[0].typeGuise;
  425. if (e.value[0].dataField) {
  426. form.value.extendData = e.value[0].dataField;
  427. form.value.extendData.forEach((el) => {
  428. el.valueName = "";
  429. if (el.type === "XLK") {
  430. if (el.list) {
  431. el.list.forEach((e) => {
  432. e.name = e.attributeValue;
  433. e.value = e.attributeCode;
  434. });
  435. }
  436. }
  437. });
  438. } else {
  439. form.value.extendData = [];
  440. }
  441. }
  442. if (actionTitle.value.indexOf("属性") != -1) {
  443. form.value.extendData.forEach((el) => {
  444. if (el.type === "XLK") {
  445. el.valueName = e.value[0].name;
  446. el.value = e.value[0].value;
  447. }
  448. });
  449. }
  450. // if (actionTitle.value == "灭火器") {
  451. // form.value.baseBuildList[actionIndex.value].baseBuildExtinguishList[actionIndex1.value].extinguishType = e.value[0].name;
  452. // form.value.baseBuildList[actionIndex.value].baseBuildExtinguishList[actionIndex1.value].extinguishTypeValue = e.value[0].value;
  453. // }
  454. actionShow.value = false;
  455. }
  456. /**
  457. * @action弹出框change事件
  458. */
  459. function changeHandler(e) {
  460. const uPicker = ref(null);
  461. const {
  462. columnIndex,
  463. value,
  464. values, // values为当前变化列的数组内容
  465. index,
  466. // 微信小程序无法将picker实例传出来,只能通过ref操作
  467. picker = uPicker.value,
  468. } = e;
  469. // 当第一列值发生变化时,变化第二列(后一列)对应的选项
  470. if (actionTitle.value == "所属部门") {
  471. console.log(columnIndex, index);
  472. if (columnIndex === 0) {
  473. // picker为选择器this实例,变化第二列对应的选项
  474. picker.setColumnValues(1, columnData[index]);
  475. }
  476. }
  477. }
  478. /**
  479. * @图片上传成功回调
  480. */
  481. function uploadSuccessChange(e) {
  482. form.value.imagesUrl = e.url;
  483. }
  484. /**
  485. * @图片删除回调
  486. */
  487. function uploadDeleteChange(e) {
  488. form.value.imagesUrl = "";
  489. }
  490. onLoad((options) => {
  491. init();
  492. });
  493. onShow(() => {
  494. //调用系统主题颜色
  495. proxy.$settingStore.systemThemeColor([1]);
  496. });
  497. </script>
  498. <style lang="scss">
  499. #facilitiesGather {
  500. .centerOne,
  501. .centerTwo {
  502. .title {
  503. color: #333333;
  504. text-align: center;
  505. }
  506. }
  507. :deep(.u-picker__view__column__item) {
  508. font-size: 13px;
  509. }
  510. :deep(.uni-select) {
  511. padding-left: 0;
  512. border: 0;
  513. font-size: 15px;
  514. }
  515. :deep(.uni-select__input-placeholder) {
  516. font-size: 15px;
  517. color: rgb(192, 196, 204);
  518. }
  519. :deep(.uni-select--mask) {
  520. position: relative;
  521. }
  522. }
  523. </style>