f7e30b59 by 任超

style:申请业务规则

1 parent af574d3d
...@@ -5,4 +5,4 @@ NODE_ENV=development ...@@ -5,4 +5,4 @@ NODE_ENV=development
5 VUE_APP_BASE_API = '/dev-api' 5 VUE_APP_BASE_API = '/dev-api'
6 6
7 # 开发环境 7 # 开发环境
8 VUE_APP_API_BASE_URL = 'http://192.168.2.44:8009' 8 VUE_APP_API_BASE_URL = 'http://192.168.2.95:8009'
......
...@@ -26,9 +26,15 @@ ...@@ -26,9 +26,15 @@
26 import { upward, down } from '@/utils/operation' 26 import { upward, down } from '@/utils/operation'
27 export default { 27 export default {
28 props: { 28 props: {
29 djqxList: { type: Array, default: [] }, 29 djqxList: {
30 type: Array, default: () => {
31 return []
32 }
33 },
30 ruleForm: { 34 ruleForm: {
31 type: Object, default: {} 35 type: Object, default: () => {
36 return {}
37 }
32 } 38 }
33 }, 39 },
34 data () { 40 data () {
......
...@@ -51,9 +51,10 @@ export default { ...@@ -51,9 +51,10 @@ export default {
51 ruleForm: { 51 ruleForm: {
52 type: Object, default: {} 52 type: Object, default: {}
53 }, 53 },
54 //
55 sxql: { 54 sxql: {
56 type: Array, default: [] 55 type: Array, default: () => {
56 return []
57 }
57 } 58 }
58 }, 59 },
59 data () { 60 data () {
......
...@@ -147,6 +147,8 @@ export default { ...@@ -147,6 +147,8 @@ export default {
147 detailList: { 147 detailList: {
148 handler: function (newValue) { 148 handler: function (newValue) {
149 this.titleList = newValue 149 this.titleList = newValue
150 this.n = 0
151 this.tn = 0
150 this.getSqdjywDetail(newValue[0].bsmSqyw) 152 this.getSqdjywDetail(newValue[0].bsmSqyw)
151 }, 153 },
152 deep: true 154 deep: true
......