safecheck-client 3.0.33-69 → 3.0.33-70
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
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
{
|
2
2
|
"name": "safecheck-client",
|
3
3
|
"//": "主分支版本别乱升,测试包的版本直接发包(建议使用1.XX.XX-XXX格式作为测试包,不要频繁升级第三位版本号),别提交版本号。切了分支切记把主分支版本升了,保证主分支始终是最高版本!!!!!",
|
4
|
-
"version": "3.0.33-
|
4
|
+
"version": "3.0.33-70",
|
5
5
|
"description": "安检模块 前端组件",
|
6
6
|
"author": "丁新 <417755458@qq.com>",
|
7
7
|
"license": "ISC",
|
@@ -201,6 +201,7 @@
|
|
201
201
|
import * as Util from '../Util'
|
202
202
|
import getNowDate from "../../utils/getNowDate";
|
203
203
|
import HttpResetClass from "vue-client/src/plugins/HttpResetClass";
|
204
|
+
import ApplyUpload from "vue-client/src/components/ApplyUpload"
|
204
205
|
|
205
206
|
//获取json配置文件
|
206
207
|
let asyncReady = async function (self) {
|
@@ -231,6 +232,9 @@
|
|
231
232
|
|
232
233
|
export default {
|
233
234
|
title: '非民用送气结果查看',
|
235
|
+
components: {
|
236
|
+
'apply-upload': ApplyUpload,
|
237
|
+
},
|
234
238
|
data() {
|
235
239
|
let model = new PagedList('rs/sql/查找安检单', 20, {
|
236
240
|
f_plan_id: 'this.f_plan_id',
|
@@ -206,6 +206,7 @@
|
|
206
206
|
import * as Util from '../Util'
|
207
207
|
import getNowDate from "../../utils/getNowDate";
|
208
208
|
import HttpResetClass from "vue-client/src/plugins/HttpResetClass";
|
209
|
+
import ApplyUpload from "vue-client/src/components/ApplyUpload.vue";
|
209
210
|
|
210
211
|
//获取json配置文件
|
211
212
|
let asyncReady = async function (self) {
|
@@ -236,6 +237,9 @@
|
|
236
237
|
|
237
238
|
export default {
|
238
239
|
title: '民用送气结果查看',
|
240
|
+
components: {
|
241
|
+
'apply-upload': ApplyUpload,
|
242
|
+
},
|
239
243
|
data() {
|
240
244
|
let model = new PagedList('rs/sql/查找安检单', 20, {
|
241
245
|
f_plan_id: 'this.f_plan_id',
|