123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509 |
- <template>
- <view class="container">
- <view class="form-group">
- <view class="form-item">
- <view class="form-label flex-row">
- <image class="left-icon" src="/static/resource/images/mingcheng.png"></image>
- <text>{{$t('设备名称')}}</text>
- </view>
- <view class="form-value flex-row flex-end">
- <input placeholder="" @blur="inputBatteryName" :value="batteryInfo.name" />
- </view>
- </view>
- <view class="form-item">
- <view class="form-label flex-row">
- <image class="left-icon" src="/static/resource/images/leixing.png"></image>
- <text>{{$t('设备类型')}}</text>
- </view>
- <view class="form-value">{{ batteryInfo.device_type }}</view>
- </view>
- <view class="form-item">
- <view class="form-label flex-row">
- <image class="left-icon" src="/static/resource/images/IMEI.png"></image>
- <text>IMEI</text>
- </view>
- <view class="form-value">{{ batteryInfo.mac_id }}</view>
- </view>
- <view class="form-item">
- <view class="form-label flex-row">
- <image class="left-icon" src="/static/resource/images/zhuangtai.png"></image>
- <text>{{$t('状态')}}</text>
- </view>
- <view class="form-value">
- {{
- batteryInfo.expire == 1
- ? $t('到期')
- : batteryInfo.longitude == '0' || batteryInfo.latitude == '0' || batteryInfo.longitude == '' || device.batteryInfo == ''
- ? $t('未启用')
- : batteryInfo.online == 0
- ? $t('离线')
- : batteryInfo.speed == 0
- ? $t('静止')
- : $t('行驶')
- }}
- </view>
- </view>
- <view class="form-item">
- <view class="form-label flex-row">
- <image class="left-icon" src="/static/resource/images/licheng.png"></image>
- <text>{{$t('当日里程')}}</text>
- </view>
- <view class="form-value">{{ batteryInfo.day_mil ? batteryInfo.day_mil + 'km' : '0km' }}</view>
- </view>
- <view class="form-item">
- <view class="form-label flex-row">
- <image class="left-icon" src="/static/resource/images/dingweishijian.png"></image>
- <text>{{$t('定位时间')}}</text>
- </view>
- <view class="form-value">{{ batteryInfo.gps_time == 0 ? '' : tools.formatTime(batteryInfo.gps_time) }}</view>
- </view>
- <view class="form-item">
- <view class="form-label flex-row">
- <image class="left-icon" src="/static/resource/images/tongxishijian.png"></image>
- <text>{{$t('通信时间')}}</text>
- </view>
- <view class="form-value">{{ batteryInfo.heart_time == 0 ? '' : tools.formatTime(batteryInfo.heart_time) }}</view>
- </view>
- <view class="form-item">
- <view class="form-label flex-row">
- <image class="left-icon" src="/static/resource/images/sudu.png"></image>
- <text>{{$t('速度')}}</text>
- </view>
- <view class="form-value">{{ batteryInfo.speed ? batteryInfo.speed + 'km/h' : '0km/h' }}</view>
- </view>
- <view class="form-item">
- <view class="form-label flex-row">
- <image class="left-icon" src="/static/resource/images/daoqishijian.png"></image>
- <text>{{$t('到期时间')}}</text>
- </view>
- <view class="form-value">{{ tools.formatTime(batteryInfo.expire_time) }}</view>
- </view>
- <view class="form-item">
- <view class="form-label flex-row">
- <image class="left-icon" src="/static/resource/images/chepaihao.png"></image>
- <text>{{$t('车牌号')}}</text>
- </view>
- <view class="form-value flex-row flex-end">
- <input placeholder="" @blur="inputBatteryCarNumber" :value="batteryInfo.car_number" />
- </view>
- </view>
- <view class="form-item">
- <view class="form-label flex-row">
- <image class="left-icon" src="/static/resource/images/chezhumc.png"></image>
- <text>{{$t('车主名称')}}</text>
- </view>
- <view class="form-value flex-row flex-end">
- <input placeholder="" @blur="inputBatteryMasterName" :value="batteryInfo.master_name" />
- </view>
- </view>
- <view class="form-item">
- <view class="form-label flex-row">
- <image class="left-icon" src="/static/resource/images/lxdianhua.png"></image>
- <text>{{$t('联系电话')}}</text>
- </view>
- <view class="form-value flex-row flex-end">
- <input placeholder="" @blur="inputBatteryPhone" :value="batteryInfo.phone" />
- </view>
- </view>
- <view class="form-item">
- <view class="form-label flex-row">
- <image class="left-icon" src="/static/resource/images/yanse.png"></image>
- <text>{{$t('车辆颜色')}}</text>
- </view>
- <view class="form-value flex-row flex-end">
- <input placeholder="" @blur="inputBatteryCarColor" :value="batteryInfo.car_color" />
- </view>
- </view>
- <view class="form-item">
- <view class="form-label flex-row">
- <image class="left-icon" src="/static/resource/images/beizhu.png"></image>
- <text>{{$t('备注')}}</text>
- </view>
- <view class="form-value flex-row flex-end">
- <textarea value="" :placeholder="$t('备注信息')" auto-height class="remark-info" @blur="inputRemark" :value="batteryInfo.remark"></textarea>
- </view>
- </view>
- <view class="form-item">
- <view class="form-label">{{$t('图标')}}</view>
- <view class="form-value">
- <radio-group class="radio-group" @change="bindSelectIcon">
- <view class="flex-row flex-around">
- <view v-for="(item, index) in iconList" :key="index">
- <radio class="local-icon" :value="index" :checked="index == batteryInfo.icon" />
- <image class="local-icon" mode="widthFix" :src="item.normal"></image>
- </view>
- </view>
- </radio-group>
- </view>
- </view>
- <view style="margin: 50rpx 0">
- <button class="save-btn" @tap="bindSave">{{$t('保存')}}</button>
- </view>
- </view>
- </view>
- </template>
- <script module="tools" lang="wxs" src="@/pages/common/wxs/tools.wxs"></script>
- <script>
- var config = require('../../../common/config.js');
- var http = require('../../../common/http.js');
- var common = require('../../../common/common.js');
- var storage = require('../../../common/storage.js');
- export default {
- data() {
- return {
- userBaseInfo: null,
- battery_sn: '',
- batteryInfo: null,
- batteryTypeList: [],
- selectedBatteryTypeIndex: 0,
- thirdDeviceTypeList: [],
- selectedThirdDeviceTypeIndex: -1,
- hireDurationUnitList: ['', this.$t('天'), this.$t('月'), this.$t('年')],
- selectedHireDurationUnitIndex: 2,
- iconList: [],
- selectedIconIndex: 0,
- pledge_money: 0,
- hire_price: 0,
- remark: '',
- device: {
- batteryInfo: ''
- }
- };
- }
- /**
- * 生命周期函数--监听页面加载
- */,
- onLoad: function (options) {
- uni.setNavigationBarTitle({
- title: this.$t('设备详情')
- });
- const userBaseInfo = storage.getUserInfo();
- const _deviceInfo = options.deviceInfo;
- const deviceInfo = JSON.parse(decodeURIComponent(_deviceInfo));
- this.setData({
- userBaseInfo: userBaseInfo,
- batteryInfo: deviceInfo
- });
- console.log(deviceInfo);
- storage.setSearchClientUserInfo(null);
- const battery_sn = deviceInfo.mac_id;
- this.battery_sn = battery_sn;
- //this.loadBatteryTypeList()
- this.loadIconList();
- },
- /**
- * 生命周期函数--监听页面显示
- */
- onShow: function () {
- //this.loadBatteryThirdDeviceTypeList()
- //this.loadBatteryInfo()
- },
- methods: {
- loadBatteryThirdDeviceTypeList: function () {
- const that = this;
- http.postApi(config.API_BATTERY_THIRD_DEVICE_TYPE_LIST, {}, function (resp) {
- if (resp.data.code === 200) {
- that.setData({
- thirdDeviceTypeList: resp.data.data.list
- });
- if (that.batteryInfo && that.selectedThirdDeviceTypeIndex == -1) {
- that.setSelectThirdDeviceType();
- }
- }
- });
- },
- loadBatteryInfo: function () {
- const pData = {
- battery_sn: this.battery_sn
- };
- const that = this;
- http.postApi(config.API_BATTERY_SEARCH, pData, function (resp) {
- if (resp.data.code === 200) {
- that.setData({
- batteryInfo: resp.data.data.batteryList[0]
- });
- that.setSelecteBatteryType();
- that.setSelectThirdDeviceType();
- that.setSelectHireDurationUnit();
- const clientUserInfo = storage.getSearchClientUserInfo();
- if (clientUserInfo) {
- const batteryInfo = that.batteryInfo;
- batteryInfo.user_id = clientUserInfo.user_id;
- batteryInfo.user_name = clientUserInfo.user_name;
- batteryInfo.phone = clientUserInfo.phone;
- that.setData({
- batteryInfo: batteryInfo
- });
- storage.setSearchClientUserInfo(null);
- }
- } else {
- common.simpleToast(that,resp.data.msg);
- }
- });
- },
- loadBatteryTypeList: function () {
- const that = this;
- http.postApi(config.API_BATTERY_BTYPE_LIST, {}, function (resp) {
- if (resp.data.code === 200) {
- that.setData({
- batteryTypeList: resp.data.data.typeList
- });
- } else {
- common.simpleToast(that,resp.data.msg);
- }
- });
- },
- loadIconList: function () {
- this.iconList = storage.getIconList();
- if (!this.iconList) {
- http.postApi(config.API_BATTERY_ICON_LIST, {}, (resp) => {
- if (resp.data.code === 200) {
- storage.setIconList(resp.data.data.list);
- this.setData({
- iconList: resp.data.data.list
- });
- } else {
- common.simpleToast(this,resp.data.msg);
- }
- });
- } else {
- this.setData({
- iconList: this.iconList
- });
- }
- },
- setSelecteBatteryType: function () {
- const batteryInfo = this.batteryInfo;
- let index = 0;
- this.batteryTypeList.some((item, idx) => {
- if (item.battery_type_id == batteryInfo.battery_type_id) {
- index = idx;
- return true;
- }
- });
- this.setData({
- selectedBatteryTypeIndex: index
- });
- },
- bindSelectBatteryType: function (e) {
- this.setData({
- selectedBatteryTypeIndex: e.detail.value
- });
- },
- setSelectThirdDeviceType: function () {
- const batteryInfo = this.batteryInfo;
- let index = 0;
- const that = this;
- this.thirdDeviceTypeList.some((item, idx) => {
- if (item == batteryInfo.third_device_type) {
- index = idx;
- that.setData({
- selectedThirdDeviceTypeIndex: index
- });
- return true;
- }
- });
- },
- bindSelectThirdDeviceType: function (e) {
- this.setData({
- selectedThirdDeviceTypeIndex: e.detail.value
- });
- },
- setSelectHireDurationUnit: function () {
- const batteryInfo = this.batteryInfo;
- this.setData({
- selectedHireDurationUnitIndex: batteryInfo.hire_duration_unit
- });
- },
- bindSelectHireDurationUnit: function (e) {
- this.setData({
- selectedHireDurationUnitIndex: e.detail.value
- });
- },
- bindSelectIcon: function (e) {
- const icon = e.detail.value;
- this.batteryInfo.icon = icon;
- },
- inputBatteryName: function (e) {
- const name = e.detail.value;
- this.batteryInfo.name = name;
- },
- inputBatteryCarNumber: function (e) {
- const car_number = e.detail.value;
- this.batteryInfo.car_number = car_number;
- },
- inputBatteryMasterName: function (e) {
- const master_name = e.detail.value;
- this.batteryInfo.master_name = master_name;
- },
- inputBatteryPhone: function (e) {
- const phone = e.detail.value;
- this.batteryInfo.phone = phone;
- },
- inputBatteryCarColor: function (e) {
- const car_color = e.detail.value;
- this.batteryInfo.car_color = car_color;
- },
- inputRemark: function (e) {
- const remark = e.detail.value;
- this.batteryInfo.remark = remark;
- },
- bindSearchClientUserInfo: function () {
- uni.navigateTo({
- url: '/myPages/pages/searchUser/searchUser'
- });
- },
- bindProductTime: function (e) {
- let batteryInfo = this.batteryInfo;
- batteryInfo.product_time = e.detail.value;
- this.setData({
- batteryInfo: batteryInfo
- });
- },
- bindHireTime: function (e) {
- let batteryInfo = this.batteryInfo;
- batteryInfo.hire_time = e.detail.value;
- this.setData({
- batteryInfo: batteryInfo
- });
- },
- bindHireExpireTime: function (e) {
- let batteryInfo = this.batteryInfo;
- batteryInfo.hire_expire_time = e.detail.value;
- this.setData({
- batteryInfo: batteryInfo
- });
- },
- bindSave: function () {
- const that = this
- let batteryInfo = this.batteryInfo;
- batteryInfo.macid = batteryInfo.mac_id;
- http.postApi(config.API_BATTERY_SET_INFO, batteryInfo, function (resp) {
- if (resp.data.code === 200) {
- storage.setRefreshDeviceoPage(true);
- common.simpleToast(that,that.$t('保存成功'));
- uni.navigateBack({
- delta: 1
- });
- } else {
- common.simpleToast(that,resp.data.msg);
- }
- });
- },
- bindReleaseUser: function () {
- const pData = {
- battery_sn: this.batteryInfo.battery_sn
- };
- const that = this;
- http.postApi(config.API_BATTERY_RELEASE_USER, pData, function (resp) {
- if (resp.data.code === 200) {
- storage.setRefreshDeviceoPage(true);
- common.simpleToast(that,that.$t('解绑成功'));
- that.loadBatteryInfo();
- } else if (resp.data.code === 10037) {
- uni.navigateTo({
- url: '/myPages/pages/deviceUserReturn/deviceUserReturn?battery_sn=' + that.batteryInfo.battery_sn
- });
- } else {
- common.simpleToast(that,resp.data.msg);
- }
- });
- },
- bindTurnOn: function () {
- const that = this;
- const msg = that.$t('你确定要通电吗?');
- uni.showModal({
- title: that.$t('提示'),
- content: msg,
- showCancel: true,
- cancelText: that.$t('取消'),
- confirmText: that.$t('确定'),
- success: function (res) {
- console.log(res);
- if (res.confirm) {
- const pData = {
- macid: that.batteryInfo.mac_id,
- cmd: 'OPENRELAY'
- };
- http.postApi(config.API_BATTERY_SEND_COMMAND, pData, function (resp) {
- if (resp.data.code === 200) {
- storage.setRefreshDeviceoPage(true);
- common.simpleToast(that,that.$t('操作成功'));
- } else {
- common.simpleToast(that,resp.data.msg);
- }
- });
- }
- },
- fail: function (res) {},
- complete: function (res) {}
- });
- },
- bindTurnOff: function () {
- const that = this;
- const msg = that.$t('你确定要断电吗?');
- uni.showModal({
- title: that.$t('提示'),
- content: msg,
- showCancel: true,
- cancelText: that.$t('取消'),
- confirmText: that.$t('确定'),
- success: function (res) {
- console.log(res);
- if (res.confirm) {
- const pData = {
- macid: that.batteryInfo.mac_id,
- cmd: 'CLOSERELAY'
- };
- http.postApi(config.API_BATTERY_SEND_COMMAND, pData, function (resp) {
- if (resp.data.code === 200) {
- storage.setRefreshDeviceoPage(true);
- common.simpleToast(that,that.$t('操作成功'));
- } else {
- common.simpleToast(that,resp.data.msg);
- }
- });
- }
- },
- fail: function (res) {},
- complete: function (res) {}
- });
- },
- bindReplaceBattery: function () {
- uni.navigateTo({
- url: '/myPages/pages/deviceReplace/deviceReplace?battery_sn=' + this.batteryInfo.battery_sn
- });
- }
- }
- };
- </script>
- <style>
- @import './deviceInfo.css';
- </style>
|