safecheck-client 4.0.1-36 → 4.0.1-37
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": "4.0.1-
|
4
|
+
"version": "4.0.1-37",
|
5
5
|
"description": "安检模块 前端组件",
|
6
6
|
"author": "丁新 <417755458@qq.com>",
|
7
7
|
"license": "ISC",
|
@@ -368,7 +368,7 @@ export default {
|
|
368
368
|
title: '购气记录',
|
369
369
|
safe: false
|
370
370
|
})
|
371
|
-
this.$parent.$parent.$goto('phone-sell-info', {f_userinfo_id: f_userinfo_id})
|
371
|
+
this.$parent.$parent.$goto('safe-phone-sell-info', {f_userinfo_id: f_userinfo_id})
|
372
372
|
},
|
373
373
|
cameraCallBack (prop, fileName) {
|
374
374
|
if (prop == 'f_noanswers_path') {
|
@@ -216,7 +216,7 @@
|
|
216
216
|
</datepicker>
|
217
217
|
</div>
|
218
218
|
<div class="form-group col-sm-2" v-show="$parent.$parent.safeAudit &&$parent.$parent.criteriaShow">
|
219
|
-
<label class="font_normal_body" title="
|
219
|
+
<label class="font_normal_body" title="参数管理:安检单审核状态">审核状态</label>
|
220
220
|
<v-select class="select_list select"
|
221
221
|
placeholder='请选择' style="width: 60%"
|
222
222
|
:value.sync="model.f_approved" v-model="model.f_approved"
|
@@ -489,7 +489,7 @@ export default {
|
|
489
489
|
},
|
490
490
|
model: model,
|
491
491
|
excelHeaders: {
|
492
|
-
//searchData:searchData
|
492
|
+
//searchData:searchData
|
493
493
|
'f_userinfo_code': '客户编号',
|
494
494
|
'f_user_name': '客户姓名',
|
495
495
|
'f_meternumber':'客户表号',
|
@@ -507,6 +507,8 @@ export default {
|
|
507
507
|
'f_approved_by': '审核人',
|
508
508
|
'f_approved': '审核状态',
|
509
509
|
'f_approved_time': '审核时间',
|
510
|
+
'f_plan_name':'计划名称',
|
511
|
+
'f_meter_brand':'气表品牌',
|
510
512
|
'f_leigou': '累购气量',
|
511
513
|
'f_yiyong': '已用气量',
|
512
514
|
'f_shengyu': '剩余气量',
|
package/src/safecheck-android.js
CHANGED
@@ -251,6 +251,10 @@ export default function (filiale) {
|
|
251
251
|
require(['./components/android/PhoneSellInfo'], resolve)
|
252
252
|
})
|
253
253
|
|
254
|
+
Vue.component('safe-phone-sell-info', (resolve) => {
|
255
|
+
require(['./components/android/PhoneSellInfo'], resolve)
|
256
|
+
})
|
257
|
+
|
254
258
|
//中盛点火信息
|
255
259
|
// Vue.component('ignition-information', (resolve) => { require(['./components/android/IgnitionInformation'], resolve) })
|
256
260
|
// Vue.component('buy-records', (resolve) => { require(['./components/android/BuyRecords'], resolve) })
|