123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180 |
- <template>
- <view>
- <view class="timeBox flex justify-between align-center padding-lr-sm">
- <view class="time">2021-01-18 15:16:45</view>
- <button class="cu-btn radius bg-red sm">未处理</button>
- </view>
- <view>
- <view class="basic-info">
- <view class="info-tit margin-left-xs">
- <text class="cuIcon-titles margin-right-xs"></text>
- 基本信息
- </view>
- <view class="info-content">
- <view class="info-one-info ">
- <text>设备名称:</text>
- <text>{{getData.device_name}}</text>
- </view>
- <view>
- <text>设备地址:</text>
- <text>{{getData.unitinfo}}</text>
- </view>
- <view>
- <text>告警信息:</text>
- <text>{{getData.alarm_information}}</text>
- </view>
- </view>
- </view>
- <!-- 处理内容start -->
- <view class="processStatus">
- <view class="info-tit margin-left-xs">
- <text class="cuIcon-titles margin-right-xs"></text>
- 处理内容
- </view>
- <view class="padding-lr padding-bottom-lg">
- <form action="">
- <radio-group name="gender" class="" @change="RadioChange">
- <label class="margin-right">
- <radio value="0" checked /><text>单个处理</text>
- </label>
- <label>
- <radio value="1" /><text>批量处理</text>
- </label>
- </radio-group>
- <view class="cu-form-group">
- <textarea class="JTxtArea lg" :maxlength="50" :data-maxnum="reason.length+'/50'"
- placeholder="备注信息,最多可输入50个字..." auto-height v-model="msg" @input="inputReason"
- :value="reason"></textarea>
- </view>
- <view class="btn-area">
- <button class="bg-orange round missReport margin-top" @click="alarmSubmit(1)">误 报
- </button>
- <button class="bg-blue round missReport margin-top " @click="alarmSubmit(0)">非 误 报
- </button>
- </view>
- </form>
- </view>
- </view>
- <!-- 处理内容end -->
- </view>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- modalName: null,
- reason: '',
- type: 1,
- msg: '',
- getData: {},
- radioOne: 0,
- }
- },
- onLoad: function(option) {
- this.type = option.type;
- this.getDetailData({
- "type": option.type,
- "id": option.id
- })
- },
- methods: {
- async getDetailData(params = {}) {
- const res = await this.$myRequest({
- url: 'ComprehensiveAlarm/getAlarmDetails',
- data: params,
- showLoading: true
- })
- this.getData = res.data.data[0];
- console.log(this.getData)
- },
- async powerSubmitRes(params = {}) {
- const res = await this.$myRequest({
- url: 'ComprehensiveAlarm/setAlarmHandling',
- data: params
- })
- if (res.data.flag) {
- uni.showToast({
- title: "提交成功",
- });
- setTimeout(() => {
- uni.navigateTo({
- url: '/pages/processList/processList?type=' + this.type,
- });
- }, 1000);
- }
- },
- alarmSubmit(query) {
- if (!this.msg) {
- uni.showToast({
- title: "请输入处理内容",
- icon: "none"
- });
- } else {
-
- let queryParam = {};
- queryParam.id = this.getData.id;
- queryParam.type = this.getData.dwtype;
- queryParam.device_code = this.getData.device_code;
- queryParam.if_batch = this.radioOne;
- queryParam.clwb = query;
- queryParam.ncmb = this.getData.ncmd;
- queryParam.clnr = this.msg;
- alert(this.getData.dwtype)
- if (this.getData.dwtype == 1) {
- queryParam.data3 = this.getData.data3;
- queryParam.data5 = this.getData.data5;
- this.powerSubmitRes(queryParam);
- return;
- }
- if (this.getData.dwtype == 2) {
- queryParam.data1 = this.getData.data1;
- this.powerSubmitRes(queryParam);
- return;
- }
- if (this.getData.dwtype == 7) {
- queryParam.data1 = this.getData.data1;
- this.powerSubmitRes(queryParam);
- return;
- }
- if (this.getData.dwtype == 3) {
- queryParam.data2=this.getData.data2;
- this.powerSubmitRes(queryParam);
- return;
- }
- if (this.getData.dwtype == 6) {
- queryParam.data2=this.getData.data2;
- queryParam.data4=this.getData.data4;
- this.powerSubmitRes(queryParam);
- return;
- }
- this.powerSubmitRes(queryParam)
- }
- },
- RadioChange(e) {
- this.radioOne = e.detail.value;
- console.log(this.radioOne)
- },
- textareaAInput(e) {
- this.textareaAValue = e.detail.value
- },
- inputReason(e) {
- this.reason = e.detail.value;
- }
- }
- }
- </script>
- <style lang="scss">
- </style>
|