safecheck-client 3.0.35-61 → 3.0.35-64
Sign up to get free protection for your applications and to get access to all the features.
- package/package.json +1 -1
- package/src/App.vue +31 -31
- package/src/components/android/Insurance/PhoneInsurancePurchaseDetail.vue +286 -286
- package/src/components/pc/SecurityCheckLedger.vue +143 -143
- package/src/components/pc/SecurityCheckManage.vue +113 -113
- package/src/components/pc/SecurityCheckUser.vue +441 -440
- package/src/filiale/bayan/android/SafecheckOrderV.vue +2931 -2931
- package/src/filiale/bayan/android/SafecheckUserInfo.vue +882 -882
- package/src/filiale/bayan/pc/usergashistory.vue +149 -149
- package/src/filiale/bayan/pc/usergashistorynian.vue +149 -149
- package/src/filiale/bayan/pc.js +24 -24
- package/src/filiale/siyang/pc/PlanManage.vue +849 -849
- package/src/filiale/tongchuan/android/SafecheckOrderV.vue +1 -1
- package/src/filiale/weinan/android/PaperFeedback.vue +2 -1
- package/src/main.js +33 -33
- package/src/safecheck.js +913 -913
@@ -8,7 +8,7 @@
|
|
8
8
|
</div>
|
9
9
|
</div>
|
10
10
|
</div>
|
11
|
-
<div class="form-group col-md-12 col-sm-12 col-xs-12" :class="style__">
|
11
|
+
<div class="form-group col-md-12 col-sm-12 col-xs-12" :class="style__" v-show="recording">
|
12
12
|
<div class="form-group col-md-12 col-sm-12 col-xs-12">
|
13
13
|
<button type="button" name="button" class="btn btn-photo" @click="selectedRecording()">录音选择</button>
|
14
14
|
<span v-if="paper.f_select_record_path">{{paper.f_select_record_path.split('/')[paper.f_select_record_path.split('/').length -1]}}</span>
|
@@ -478,6 +478,7 @@ export default {
|
|
478
478
|
meading: this.$parent.$parent.meading,
|
479
479
|
paper: this.$parent.$parent.data,
|
480
480
|
printContent: [],
|
481
|
+
recording:this.$appdata.getSingleValue('录音选择开启'),
|
481
482
|
upload_state: this.$parent.$parent.item.f_upload_state,
|
482
483
|
enabled: false,//控制限制购气是否可选
|
483
484
|
deleteenabled: false,
|
package/src/main.js
CHANGED
@@ -1,33 +1,33 @@
|
|
1
|
-
import Vue from 'vue'
|
2
|
-
import App from './App'
|
3
|
-
import { all } from 'vue-client'
|
4
|
-
import { system } from 'system-clients'
|
5
|
-
import safecheck from './safecheck'
|
6
|
-
import echarts from 'echarts'
|
7
|
-
// import safecheck from './rongcheng'
|
8
|
-
|
9
|
-
all()
|
10
|
-
// 验证码开关赋值
|
11
|
-
var Verificationfalg = false
|
12
|
-
system(Verificationfalg)
|
13
|
-
// system()
|
14
|
-
safecheck('
|
15
|
-
// safecheck('rizhao')
|
16
|
-
require('./bootstrap/less/bootstrap.less')
|
17
|
-
require('./expandcss.less')
|
18
|
-
|
19
|
-
Vue.prototype.$echarts = echarts
|
20
|
-
Vue.android = false
|
21
|
-
|
22
|
-
Vue.url = '/SafeCheck/rs/'
|
23
|
-
if(Vue.android)
|
24
|
-
Vue.url = Vue.staticUrl
|
25
|
-
Vue.interval = 1*60*1000
|
26
|
-
Vue.nopic = 'file:///android_asset/nopic.png'
|
27
|
-
Vue.mapSetup = false
|
28
|
-
|
29
|
-
/* eslint-disable no-new */
|
30
|
-
new Vue({
|
31
|
-
el: 'body',
|
32
|
-
components: { App }
|
33
|
-
})
|
1
|
+
import Vue from 'vue'
|
2
|
+
import App from './App'
|
3
|
+
import { all } from 'vue-client'
|
4
|
+
import { system } from 'system-clients'
|
5
|
+
import safecheck from './safecheck'
|
6
|
+
import echarts from 'echarts'
|
7
|
+
// import safecheck from './rongcheng'
|
8
|
+
|
9
|
+
all()
|
10
|
+
// 验证码开关赋值
|
11
|
+
var Verificationfalg = false
|
12
|
+
system(Verificationfalg)
|
13
|
+
// system()
|
14
|
+
safecheck('siyang')
|
15
|
+
// safecheck('rizhao')
|
16
|
+
require('./bootstrap/less/bootstrap.less')
|
17
|
+
require('./expandcss.less')
|
18
|
+
|
19
|
+
Vue.prototype.$echarts = echarts
|
20
|
+
Vue.android = false
|
21
|
+
|
22
|
+
Vue.url = '/SafeCheck/rs/'
|
23
|
+
if(Vue.android)
|
24
|
+
Vue.url = Vue.staticUrl
|
25
|
+
Vue.interval = 1*60*1000
|
26
|
+
Vue.nopic = 'file:///android_asset/nopic.png'
|
27
|
+
Vue.mapSetup = false
|
28
|
+
|
29
|
+
/* eslint-disable no-new */
|
30
|
+
new Vue({
|
31
|
+
el: 'body',
|
32
|
+
components: { App }
|
33
|
+
})
|