safecheck-client 3.0.30-26 → 3.0.30-28
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +133 -133
- package/src/components/pc/NewCheckpaper.vue +1940 -1936
- package/src/filiale/yongzhou/pc/communityDetail.vue +173 -171
- package/src/filiale/yongzhou/pc/communityTypeDetailG.vue +195 -193
- package/src/filiale/yongzhou/pc/communityTypeDetailM.vue +195 -193
- package/src/filiale/yongzhou/pc/safeDetail.vue +222 -220
- package/src/filiale/yongzhou/pc/safeStatisticsDay.vue +402 -401
- package/src/filiale/yongzhou/pc/safeStatisticsMonth.vue +238 -237
- package/src/main.js +33 -33
- package/src/safecheck.js +0 -6
- package/src/components/pc/Edit.vue +0 -50
- package/src/components/pc/PaperEdit.vue +0 -148
@@ -1,148 +0,0 @@
|
|
1
|
-
<template>
|
2
|
-
<div class="flex-row">
|
3
|
-
<div class="basic-main">
|
4
|
-
<criteria-paged :model="model" v-ref:paged @sort="sort">
|
5
|
-
<criteria partial='criteria' class="search_area" @condition-changed='$parent.selfSearch' v-ref:criteria>
|
6
|
-
<div novalidate class="form-horizontal select-overspread container-fluid auto" partial>
|
7
|
-
<div class="row">
|
8
|
-
<div class="form-group col-sm-2">
|
9
|
-
<label class="font_normal_body">用户分类</label>
|
10
|
-
<input type="text" class="input_search" v-model="model.f_userinfo_code"
|
11
|
-
style="width: 60%" placeholder="用户分类" condition="f_userinfo_code='{}'">
|
12
|
-
</div>
|
13
|
-
<div class="form-group col-sm-2">
|
14
|
-
<label class="font_normal_body">用气单位</label>
|
15
|
-
<input type="text" class="input_search" v-model="model.f_user_name"
|
16
|
-
style="width: 60%" placeholder="客户名称" condition="f_user_name like '%{}%'">
|
17
|
-
</div>
|
18
|
-
<div class="form-group col-sm-2">
|
19
|
-
<label class="font_normal_body">示意图</label>
|
20
|
-
<input type="text" class="input_search" v-model="model.f_user_phone"
|
21
|
-
style="width: 60%" placeholder="客户电话" condition="f_user_phone like '%{}%'">
|
22
|
-
</div>
|
23
|
-
<div class="form-group col-sm-2">
|
24
|
-
<label class="font_normal_body">单位编号</label>
|
25
|
-
<input type="text" class="input_search" v-model="model.f_meternumber"
|
26
|
-
style="width: 60%" placeholder="客户表号" condition="f_meternumber like '%{}%'">
|
27
|
-
</div>
|
28
|
-
<div class="form-group col-sm-2" style="width: auto;margin-top:8px;float: right">
|
29
|
-
<export-excel-safe :data="$parent.$parent.searchData"
|
30
|
-
:field="$parent.$parent.excelHeaders"
|
31
|
-
:choose-col="true"
|
32
|
-
sqlurl="rs/logic/SafeExportExcel" sql-name="查找安检单"
|
33
|
-
template-name='安检计划明细'></export-excel-safe>
|
34
|
-
<button class="button_spacing button_search" @click="$parent.$parent.change()">查询</button>
|
35
|
-
</div>
|
36
|
-
</div>
|
37
|
-
</div>
|
38
|
-
</criteria>
|
39
|
-
<data-grid class="list_area table_sy" style="overflow: hidden" :model="model" partial='list' v-ref:grid>
|
40
|
-
<template partial='head'>
|
41
|
-
<tr>
|
42
|
-
<th>
|
43
|
-
<nobr>是否有示意图</nobr>
|
44
|
-
</th>
|
45
|
-
<th>
|
46
|
-
<nobr>单位编号</nobr>
|
47
|
-
</th>
|
48
|
-
<th>
|
49
|
-
<nobr>单位地址</nobr>
|
50
|
-
</th>
|
51
|
-
<th>
|
52
|
-
<nobr>单位名称</nobr>
|
53
|
-
</th>
|
54
|
-
<th>
|
55
|
-
<nobr>联系人</nobr>
|
56
|
-
</th>
|
57
|
-
<th>
|
58
|
-
<nobr>分公司</nobr>
|
59
|
-
</th>
|
60
|
-
<th>
|
61
|
-
<nobr>示意图id</nobr>
|
62
|
-
</th>
|
63
|
-
<th>
|
64
|
-
<nobr>操作</nobr>
|
65
|
-
</th>
|
66
|
-
</tr>
|
67
|
-
</template>
|
68
|
-
<template partial='body'>
|
69
|
-
|
70
|
-
<td style="text-align: center">{{ row.uptodate }}</td>
|
71
|
-
<td style="text-align: center">{{ row.gas_point_id }}</td>
|
72
|
-
<td style="text-align: center">{{ row.gas_point_name }}</td>
|
73
|
-
<td style="text-align: center">{{ row.title }}</td>
|
74
|
-
<td style="text-align: center">{{ row.title12 }}</td>
|
75
|
-
<td style="text-align: center">{{ row.title1 }}</td>
|
76
|
-
<td style="text-align: center">{{ row.blod_id }}</td>
|
77
|
-
<td style="text-align: center">
|
78
|
-
<button class="button_spacing button_search-1" @click='change(row)'>查看</button>
|
79
|
-
</td>
|
80
|
-
</template>
|
81
|
-
</data-grid>
|
82
|
-
</criteria-paged>
|
83
|
-
</div>
|
84
|
-
</div>
|
85
|
-
<modal :show.sync="showModal" v-ref:modal backdrop="false" :width="1200">
|
86
|
-
<div slot="modal-header" class="modal-header">
|
87
|
-
<h4 class="modal-title">
|
88
|
-
打开图纸编辑
|
89
|
-
</h4>
|
90
|
-
</div>
|
91
|
-
<div slot="modal-body" class="modal-body">
|
92
|
-
<edit></edit>
|
93
|
-
</div>
|
94
|
-
<div slot="modal-footer" class="modal-footer" style="text-align: center">
|
95
|
-
<button class="button_search" @click="cancel">取消</button>
|
96
|
-
</div>
|
97
|
-
</modal>
|
98
|
-
</template>
|
99
|
-
|
100
|
-
<script>
|
101
|
-
import {PagedList} from 'vue-client'
|
102
|
-
import Vue from 'vue'
|
103
|
-
import co from 'co'
|
104
|
-
import * as Util from '../Util'
|
105
|
-
import HttpResetClass from "vue-client/src/plugins/HttpResetClass";
|
106
|
-
|
107
|
-
export default {
|
108
|
-
title: '图纸编辑页面',
|
109
|
-
data() {
|
110
|
-
return {
|
111
|
-
searchData: {
|
112
|
-
condition: "1=1",
|
113
|
-
f_plan_id: "",
|
114
|
-
f_approved: '',
|
115
|
-
f_entry_status: '',
|
116
|
-
f_no_checkplan: '',
|
117
|
-
f_filialeid: `('${this.$login.f.orgid}')`
|
118
|
-
},
|
119
|
-
model: new PagedList('rs/sql/queryPaperEdit', 20, {}),
|
120
|
-
excelHeaders: {
|
121
|
-
'uptodate': '是否有示意图',
|
122
|
-
'gas_point_id': '单位编号',
|
123
|
-
'gas_point_name': '单位地址',
|
124
|
-
'title': '单位名称',
|
125
|
-
'title12': '联系人',
|
126
|
-
'title1': '分公司',
|
127
|
-
'blod_id': '示意图id',
|
128
|
-
},
|
129
|
-
showModal: false,
|
130
|
-
}
|
131
|
-
},
|
132
|
-
methods: {
|
133
|
-
change() {
|
134
|
-
this.showModal = true
|
135
|
-
},
|
136
|
-
search() {
|
137
|
-
this.$refs.paged.$refs.criteria.search()
|
138
|
-
},
|
139
|
-
cancel() {
|
140
|
-
this.showModal = false
|
141
|
-
}
|
142
|
-
},
|
143
|
-
|
144
|
-
ready() {
|
145
|
-
|
146
|
-
}
|
147
|
-
}
|
148
|
-
</script>
|