add.vue 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446
  1. <template>
  2. <div class="app-container">
  3. <van-nav-bar title="新增计划" left-text="返回" left-arrow @click-left="$router.go(-1)" />
  4. <van-form @submit="onSubmit">
  5. <van-field
  6. v-model="formData.plan_number"
  7. name="plan_number"
  8. label="计划编号"
  9. placeholder="请输入计划编号"
  10. clearable
  11. required
  12. disabled
  13. />
  14. <van-field
  15. v-model="formData.wind_name"
  16. name="wind_name"
  17. label="风场名称"
  18. placeholder="请输入风场名称"
  19. clearable
  20. required
  21. disabled
  22. />
  23. <van-field
  24. v-model="formData.plan_name"
  25. name="plan_name"
  26. label="计划名称"
  27. placeholder="请输入计划名称"
  28. clearable
  29. required
  30. />
  31. <van-field
  32. v-model="formData.fan_model"
  33. name="fan_model"
  34. label="风机型号"
  35. placeholder="请输入部件类型"
  36. clearable
  37. required
  38. @click="showFanModel = true"
  39. />
  40. <van-popup v-model="showFanModel" position="bottom">
  41. <van-picker
  42. value-key="name"
  43. show-toolbar
  44. :columns="fanModel"
  45. @confirm="onFanModelConfirm"
  46. @cancel="showFanModel = false"
  47. />
  48. </van-popup>
  49. <van-field
  50. v-model="formData.parts_sign"
  51. name="parts_sign"
  52. label="部件类型"
  53. placeholder="请输入部件类型"
  54. clearable
  55. required
  56. @click="showPart = true"
  57. />
  58. <van-popup v-model="showPart" position="bottom">
  59. <van-picker
  60. value-key="name"
  61. name="parts_sign"
  62. show-toolbar
  63. :columns="Part"
  64. @confirm="onPartConfirm"
  65. @cancel="showPart = false"
  66. />
  67. </van-popup>
  68. <van-field
  69. v-model="formData.work_sign"
  70. name="work_sign"
  71. label="工作位置"
  72. placeholder="请输入工作位置"
  73. clearable
  74. required
  75. @click="showWorkPage"
  76. />
  77. <van-popup v-model="showWork" position="bottom">
  78. <van-picker
  79. value-key="name"
  80. name="work_sign"
  81. show-toolbar
  82. :columns="Work"
  83. @confirm="onWorkConfirm"
  84. @cancel="showWork = false"
  85. />
  86. </van-popup>
  87. <van-field
  88. v-model="formData.device_name"
  89. name="device_name"
  90. label="螺栓型号"
  91. placeholder="请输入螺栓型号"
  92. clearable
  93. />
  94. <van-field
  95. v-model="formData.device_name"
  96. name="device_name"
  97. label="螺栓总数"
  98. placeholder="请输入螺栓总数"
  99. clearable
  100. />
  101. <van-field
  102. v-model="formData.device_name"
  103. name="device_name"
  104. label="紧固模式"
  105. placeholder="请输入紧固模式"
  106. clearable
  107. required
  108. />
  109. <van-field
  110. v-model="formData.device_name"
  111. name="device_name"
  112. label="偏移紧固数值"
  113. placeholder="请输入偏移紧固数值"
  114. clearable
  115. />
  116. <van-field
  117. v-model="formData.device_name"
  118. name="device_name"
  119. label="扭矩"
  120. placeholder="请输入扭矩"
  121. clearable
  122. required
  123. />
  124. <van-field
  125. v-model="formData.device_name"
  126. name="device_name"
  127. label="使用状态"
  128. placeholder="请输入使用状态"
  129. clearable
  130. />
  131. <van-field
  132. v-model="formData.device_name"
  133. name="device_name"
  134. label="备注"
  135. placeholder="请输入备注"
  136. clearable
  137. />
  138. <div style="margin: 6px;">
  139. <van-button round block type="info" size="small" native-type="submit">新增</van-button>
  140. </div>
  141. </van-form>
  142. </div>
  143. </template>
  144. <script>
  145. import Vue from 'vue';
  146. import wx from 'weixin-js-sdk'
  147. import { Form, Field, Icon, NavBar, Dialog, Button, Popup,Picker } from 'vant';
  148. Vue.use(Form);
  149. Vue.use(Field);
  150. Vue.use(Icon);
  151. Vue.use(NavBar);
  152. Vue.use(Dialog);
  153. Vue.use(Button);
  154. Vue.use(Popup);
  155. Vue.use(Picker);
  156. export default {
  157. data() {
  158. return {
  159. userid: '',
  160. openid: '',
  161. formData:{
  162. plan_number: '',
  163. plan_name: '',
  164. wind_name: '',
  165. fan_model: '',
  166. parts_sign: '',
  167. work_sign: '',
  168. boit_type_sign: '',
  169. bolt_num: '',
  170. bias: '',
  171. tighten_mode: '',
  172. torque: '',
  173. status: '',
  174. info:'',
  175. },
  176. imei: '',
  177. username: '',
  178. user_no: '',
  179. userType: '',
  180. deviceType: '',
  181. fanModel: [],
  182. showFanModel: false,
  183. fanModelObj: '',
  184. //部件
  185. Part:[],
  186. showPart: false,
  187. PartObj:'',
  188. //工作位置
  189. Work: [],
  190. showWork: false,
  191. WorkObj: '',
  192. wind_id:'',
  193. rules: {
  194. imei: [
  195. { required: true, message: '请输入设备号' },
  196. ]
  197. }
  198. }
  199. },
  200. created() {
  201. this.userType = localStorage.getItem('userType');
  202. this.deviceType = localStorage.getItem('deviceType');
  203. this.userid = localStorage.getItem('userid');
  204. this.openid = localStorage.getItem('openid');
  205. this.initdata();
  206. },
  207. methods: {
  208. /**
  209. * 提交
  210. */
  211. onSubmit(values) {
  212. let postData = {
  213. device_name: values.device_name,
  214. imei: values.imei,
  215. userType: this.userType,
  216. deviceType: this.deviceType,
  217. }
  218. if (values.username) {
  219. postData.username = values.username;
  220. }
  221. if (values.user_no) {
  222. postData.user_no = values.user_no;
  223. }
  224. this.$http.post('userBindDevice&userid=' + this.userid + '&openid=' + this.openid, JSON.stringify(postData))
  225. .then(resp => {
  226. if (!resp.data.success) {
  227. this.$notify(resp.data.message || '绑定失败');
  228. return;
  229. }
  230. this.$notify({
  231. type: 'success',
  232. message: resp.data.message || '绑定成功',
  233. })
  234. // 刷新列表
  235. this.$router.replace('devices');
  236. })
  237. },
  238. getSingleNumber() {
  239. this.$http.get("createPlanId?userid=" + this.userid + '&openid=' + this.openid).then((resp) => {
  240. if (resp.data.code != 10000) {
  241. this.$notify(resp.data.message)
  242. return;
  243. }
  244. this.formData.plan_number = resp.data.data;
  245. });
  246. },
  247. //获取风机型号
  248. getWindModel()
  249. {
  250. this.$http.get("getFanModelbyWindId?wind_id=" + this.wind_id + '&openid=' + this.openid).then((resp) => {
  251. if (resp.data.code != 10000) {
  252. this.$notify(resp.data.message)
  253. return;
  254. }
  255. this.fanModel = resp.data.data;
  256. });
  257. },
  258. //提交风场型号
  259. onPartConfirm(value)
  260. {
  261. console.log(value);
  262. this.PartObj = value;
  263. this.formData.parts_sign = value.name;
  264. this.getWork();
  265. this.showPart = false;
  266. },
  267. //提交上传部件
  268. getPart() {
  269. let query =
  270. { type: 1 };
  271. this.$http.post("getParts?openid=" + this.openid, JSON.stringify(query)).then((resp) => {
  272. if (resp.data.code != 10000) {
  273. this.$notify(resp.data.message)
  274. return;
  275. }
  276. this.Part = resp.data.data;
  277. });
  278. },
  279. //获取工作
  280. getWork() {
  281. let query =
  282. { type: 2,fan_model:this.fanModelObj.id,part:this.PartObj.id };
  283. this.$http.post("getParts?openid=" + this.openid, JSON.stringify(query)).then((resp) => {
  284. if (resp.data.code != 10000) {
  285. this.$notify(resp.data.message)
  286. return;
  287. }
  288. this.Work = resp.data.data;
  289. });
  290. },
  291. //确认工作位置
  292. onWorkConfirm(value)
  293. {
  294. this.WorkObj = value;
  295. this.formData.work_sign = value.name;
  296. this.showWork = false;
  297. },
  298. showWorkPage()
  299. {
  300. this.showWork = true
  301. },
  302. //提交风场型号
  303. onFanModelConfirm(value) {
  304. this.formData.fan_model = value.name;
  305. this.fanModelObj = value;
  306. this.showFanModel = false;
  307. this.getWork();
  308. },
  309. //初始化数据
  310. initdata()
  311. {
  312. this.getSingleNumber();
  313. this.formData.wind_name = this.$route.query.wind_name;
  314. this.wind_id = this.$route.query.wind_id;
  315. this.getWindModel();
  316. this.getPart()
  317. },
  318. /**
  319. * 扫码
  320. */
  321. scanCode() {
  322. let that = this;
  323. let url = encodeURIComponent(location.href.split('#')[0]);
  324. // ios 设备只认从公众号菜单首次进入页面的URL
  325. if (localStorage.getItem('userAgent') == 'ios') {
  326. let mainUrl = localStorage.getItem('mainUrl');
  327. url = encodeURIComponent(mainUrl);
  328. }
  329. this.$http.get("/getSignaturEtc", { params: { url: url } })
  330. .then(res => {
  331. if(!res.data.success){
  332. this.$notify( res.data.message);
  333. return;
  334. }
  335. let data = res.data.data;
  336. // console.log('resp data',data)
  337. wx.config({
  338. // 开启调试模式,调用的所有api的返回值会在客户端alert出来,若要查看传入的参数,可以在pc端打开,参数信息会通过log打出,仅在pc端时才会打印。
  339. debug: false,
  340. // 必填,公众号的唯一标识
  341. appId: data.appId,
  342. // 必填,生成签名的时间戳
  343. timestamp: data.timeStamp,
  344. // 必填,生成签名的随机串
  345. nonceStr: data.nonceStr,
  346. // 必填,签名
  347. signature: data.signature,
  348. // 必填,需要使用的JS接口列表,所有JS接口列表
  349. jsApiList: ['scanQRCode']
  350. });
  351. wx.error(function (res) {
  352. console.log("出错了:" + res.errMsg);//这个地方的好处就是wx.config配置错误,会弹出窗口哪里错误,然后根据微信文档查询即可。
  353. });
  354. })
  355. .catch(res => {
  356. console.log(res);
  357. });
  358. // 成功时
  359. wx.ready(function () {
  360. wx.scanQRCode({
  361. needResult: 1, // 默认为0,扫描结果由微信处理,1则直接返回扫描结果,
  362. scanType: ["qrCode"], // 可以指定扫二维码还是一维码,默认二者都有
  363. success: function(res) {
  364. var result = res.resultStr; // 当needResult 为 1 时,扫码返回的结果
  365. console.log("扫描结果:"+result);
  366. // window.location.href = result;//因为我这边是扫描后有个链接,然后跳转到该页面
  367. that.imei = result;
  368. },
  369. fail: function(e){
  370. console.log('scan fail',e)
  371. }
  372. });
  373. });
  374. }
  375. }
  376. }
  377. </script>
  378. <style lang="scss" scoped>
  379. </style>