BaseEquipment.vue 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311
  1. <template>
  2. <div id="equip_pro">
  3. <div class="title">设备实例本地名称</div>
  4. <el-tabs v-model="activeName">
  5. <el-tab-pane label="基本信息" name="first">
  6. <div class="equip-info-box box-padding box-border-bottom">
  7. <div class="equip-info-item">
  8. <p class="equip-info-title">本地名称:</p>
  9. <h3 class="equip-info-value" :title="EquipItem.legendData.localName || '--'">
  10. {{ EquipItem.legendData.localName || "--" }}
  11. </h3>
  12. </div>
  13. <div class="equip-info-item">
  14. <p class="equip-info-title">本地编码:</p>
  15. <h3 class="equip-info-value" :title="EquipItem.legendData.localId || '--'">
  16. {{ EquipItem.legendData.localId || "--" }}
  17. </h3>
  18. </div>
  19. <div class="equip-info-item">
  20. <p class="equip-info-title">BIM坐标(XYZ):</p>
  21. <h3 class="equip-info-value" :title="EquipItem.legendData.bimLocation || '--'">
  22. {{ EquipItem.legendData.bimLocation || "--" }}
  23. </h3>
  24. </div>
  25. <el-button size="small" style="width: 100%" @click="$message.info('功能待开发!')">查看详情</el-button>
  26. </div>
  27. <div class="map-pos-box box-padding property">
  28. <p class="box-title">页面位置</p>
  29. <div class="base-property">
  30. <div class="base-property-item">
  31. <span>X</span>
  32. <el-input style="width: 78px; margin-left: 8px" size="mini" v-model="EquipItem.x" placeholder="请输入内容"></el-input>
  33. </div>
  34. <div class="base-property-item">
  35. <span>Y</span>
  36. <el-input style="width: 78px; margin-left: 8px" size="mini" v-model="EquipItem.y" placeholder="请输入内容"></el-input>
  37. </div>
  38. </div>
  39. <el-checkbox v-model="showBimRelation">显示与BIM坐标关系</el-checkbox>
  40. </div>
  41. </el-tab-pane>
  42. <el-tab-pane label="属性" name="second">
  43. <div class="box-padding box-border-bottom">
  44. <p class="box-title" style="padding-top: 0">公式</p>
  45. <div class="textarea">
  46. <el-input type="textarea" disabled v-model="EquipItem.formula" @change="setStyle" :rows="2" placeholder="请输入内容">
  47. </el-input>
  48. </div>
  49. </div>
  50. <div class="box-padding box-border-bottom property">
  51. <p class="box-title">字符</p>
  52. <div class="base-property">
  53. <div class="base-property-item">
  54. <div class="cololorSelect">
  55. <el-color-picker show-alpha class="fix-box-1" @change="setStyle" v-model="color"></el-color-picker>
  56. </div>
  57. </div>
  58. <div class="base-property-item" style="flex: 1; padding: 0">
  59. <el-input-number
  60. style="width: 100%"
  61. v-model="size"
  62. @change="setStyle"
  63. controls-position="right"
  64. size="mini"
  65. :min="1"
  66. :max="20"
  67. :maxlength="100"
  68. ></el-input-number>
  69. </div>
  70. </div>
  71. </div>
  72. <div class="box-padding box-border-bottom">
  73. <p class="box-title">显示图标</p>
  74. <el-upload
  75. class="avatar-uploader"
  76. action="https://jsonplaceholder.typicode.com/posts/"
  77. :show-file-list="false"
  78. :before-upload="beforeAvatarUpload"
  79. :on-success="setStyle"
  80. >
  81. <el-button type="small">替换图标</el-button>
  82. </el-upload>
  83. </div>
  84. <div class="box-padding">
  85. <p class="box-title">附加数据</p>
  86. <el-input type="textarea" v-model="EquipItem.anotherMsg" @change="setStyle" :rows="3" placeholder="请填写附加数据"> </el-input>
  87. </div>
  88. </el-tab-pane>
  89. </el-tabs>
  90. </div>
  91. </template>
  92. <script>
  93. import { mapMutations } from "vuex";
  94. import { SColor, SFont } from "@persagy-web/draw";
  95. import { rgbaNum } from "@persagy-web/big-edit/lib/until";
  96. import { imgBaseUrl, imgServeUpload } from "@/api/imageservice";
  97. import bus from "@/bus/bus";
  98. export default {
  99. props: ["EquipItem"],
  100. data() {
  101. return {
  102. x: 0,
  103. y: 0,
  104. activeName: "first",
  105. msgData: [], //存储二级树
  106. pressMsgData: [], // 搜索后得信息点数组
  107. getPressMsg: "", //输入信息
  108. local: "", //局部加载
  109. anotherMsg: "", // 附加信息
  110. showBimRelation: true, // 显示与BIM坐标关系
  111. };
  112. },
  113. computed: {
  114. color: {
  115. get: function () {
  116. return this.EquipItem.color.toRgba();
  117. },
  118. set: function (newColor) {
  119. const colorList = rgbaNum(newColor);
  120. this.EquipItem.color = new SColor(Number(colorList[0]), Number(colorList[1]), Number(colorList[2]), colorList[3] * 255);
  121. },
  122. },
  123. size: {
  124. get: function () {
  125. return this.EquipItem.font.size;
  126. },
  127. set: function (newSize) {
  128. this.EquipItem.font = new SFont("sans-serif", newSize);
  129. },
  130. },
  131. },
  132. mounted() {
  133. window.yu = this;
  134. },
  135. methods: {
  136. ...mapMutations(["ADDSTYLE"]),
  137. // 修改样式信息
  138. setStyle() {
  139. const style = {
  140. id: this.EquipItem.id,
  141. style: {
  142. color: this.EquipItem.color.value,
  143. size: this.EquipItem.font.size,
  144. url: this.EquipItem.defaultUrl,
  145. formula: this.EquipItem.formula,
  146. },
  147. };
  148. this.ADDSTYLE(style);
  149. },
  150. beforeAvatarUpload(file) {
  151. // eslint-disable-next-line @typescript-eslint/no-this-alias
  152. const fileReader = new FileReader();
  153. fileReader.readAsDataURL(file); //读取图片
  154. console.log(file);
  155. const ftype = file.type;
  156. const fname = file.name;
  157. const uploadKey = file.uid;
  158. // const imgType = ftype.split(".")[ftype.length - 1];
  159. fileReader.addEventListener("load", () => {
  160. // 读取完成
  161. const res = fileReader.result;
  162. //将canvas的base64位图片转换成图片png的file
  163. const blob = this.dataURLtoBlob(res, ftype);
  164. //将其转换成file对象
  165. const file = new File([blob], fname, {
  166. type: ftype,
  167. lastModified: Date.now(),
  168. }); //blob转file
  169. // try sending
  170. const reader = new FileReader();
  171. const fileType = file.name.split(".");
  172. const imgType = fileType[fileType.length - 1];
  173. reader.onloadend = () => {
  174. // 这个事件在读取结束后,无论成功或者失败都会触发
  175. // eslint-disable-next-line no-empty
  176. if (reader.error) {
  177. } else {
  178. // 构造 XMLHttpRequest 对象,发送文件 Binary 数据
  179. const xhr = new XMLHttpRequest();
  180. xhr.open("POST", `${imgServeUpload}${uploadKey}.${imgType}`);
  181. xhr.send(reader.result);
  182. xhr.onreadystatechange = () => {
  183. if (xhr.readyState == 4) {
  184. if (xhr.status == 200) {
  185. this.EquipItem.defaultUrl = `${uploadKey}.${imgType}`;
  186. this.EquipItem.url = `${imgBaseUrl}${uploadKey}.${imgType}`;
  187. console.log(uploadKey + "." + imgType);
  188. // bus.$emit("updateStyle", "url", baseUrl + uploadKey + "." + imgType);
  189. }
  190. }
  191. };
  192. }
  193. };
  194. reader.readAsArrayBuffer(file);
  195. });
  196. },
  197. dataURLtoBlob(dataURI, type) {
  198. const binary = atob(dataURI.split(",")[1]);
  199. const array = [];
  200. for (let i = 0; i < binary.length; i++) {
  201. array.push(binary.charCodeAt(i));
  202. }
  203. return new Blob([new Uint8Array(array)], { type: type });
  204. },
  205. formatDate(now) {
  206. const year = now.getFullYear();
  207. const month = now.getMonth() + 1;
  208. const date = now.getDate();
  209. const hour = now.getHours();
  210. const minute = now.getMinutes();
  211. const second = now.getSeconds();
  212. return (
  213. year +
  214. "-" +
  215. month +
  216. "-" +
  217. (date > 10 ? date : "0" + date) +
  218. " " +
  219. hour +
  220. ":" +
  221. (minute > 10 ? minute : "0" + minute) +
  222. ":" +
  223. (second > 10 ? second : "0" + second)
  224. );
  225. },
  226. },
  227. watch: {},
  228. };
  229. </script>
  230. <style lang="less" scoped>
  231. #equip_pro {
  232. .title {
  233. height: 40px;
  234. line-height: 40px;
  235. color: #000000;
  236. background: #f8f9fa;
  237. font-size: 14px;
  238. padding-left: 12px;
  239. box-sizing: border-box;
  240. }
  241. .box-title {
  242. font-size: 12px;
  243. color: #646a73;
  244. padding: 12px 0 8px 0;
  245. font-weight: 600;
  246. }
  247. .box-padding {
  248. padding: 0 12px 12px;
  249. }
  250. .box-border-bottom {
  251. border-bottom: 1px solid #e4e5e7;
  252. }
  253. .flex {
  254. flex: 1;
  255. }
  256. /deep/ .el-tabs__item {
  257. padding: 0 20px !important;
  258. }
  259. /deep/ .el-input__inner {
  260. padding: 0 6px;
  261. }
  262. .equip-info-box {
  263. .equip-info-item {
  264. margin-bottom: 8px;
  265. .equip-info-title {
  266. color: #8d9399;
  267. margin-bottom: 5px;
  268. }
  269. .equip-info-value {
  270. cursor: pointer;
  271. overflow: hidden;
  272. white-space: nowrap;
  273. text-overflow: ellipsis;
  274. font-size: 14px;
  275. font-weight: 600;
  276. font-family: MicrosoftYaHei;
  277. color: #1f2429;
  278. }
  279. }
  280. }
  281. .property {
  282. font-size: 12px;
  283. .base-property {
  284. display: flex;
  285. align-items: center;
  286. justify-content: flex-start;
  287. margin-bottom: 14px;
  288. .base-property-item {
  289. padding-right: 12px;
  290. }
  291. }
  292. .cololorSelect {
  293. width: 36px;
  294. height: 24px;
  295. border-radius: 2px;
  296. overflow: hidden;
  297. position: relative;
  298. .fix-box-1 {
  299. margin-top: -8px;
  300. margin-left: -8px;
  301. /deep/ .el-color-picker__trigger {
  302. width: 200px;
  303. height: 200px;
  304. }
  305. }
  306. }
  307. }
  308. }
  309. </style>