Commit d7b52ab1 by 李少勇

还原输入四个%调用查询的方法

parent 76655305
...@@ -266,15 +266,16 @@ ...@@ -266,15 +266,16 @@
</div> </div>
</template> </template>
<script> <script>
import commonProcess from "~/mixin/commonProcess"
import event from '../event' import event from '../event'
export default { export default {
inject: ["root"], inject: ["root"],
props: ["model", "codes"], props: ["model", "codes"],
mixins: [event], mixins: [commonProcess, event],
data() { data() {
return {}; return {};
}, },
methods: { ...Event }, methods: { },
created: function () {}, created: function () {},
}; };
</script> </script>
......
...@@ -411,13 +411,14 @@ ...@@ -411,13 +411,14 @@
</div> </div>
</template> </template>
<script> <script>
import commonProcess from "~/mixin/commonProcess"
import event from '../event' import event from '../event'
import { Model } from "echarts"; import { Model } from "echarts";
export default { export default {
inject: ["root"], inject: ["root"],
props: ["model", "codes"], props: ["model", "codes"],
mixins: [event], mixins: [commonProcess, event],
data() { data() {
return { return {
guarancurr: [ guarancurr: [
...@@ -428,7 +429,7 @@ export default { ...@@ -428,7 +429,7 @@ export default {
], ],
}; };
}, },
methods: { ...Event }, methods: { },
created: function () {}, created: function () {},
}; };
</script> </script>
......
...@@ -1340,14 +1340,14 @@ ...@@ -1340,14 +1340,14 @@
</template> </template>
<script> <script>
import event from '../event' import event from '../event'
import commonApi from "~/mixin/commonApi" import commonProcess from "~/mixin/commonProcess"
import Ptap from "~/views/Public/Ptap"; import Ptap from "~/views/Public/Ptap";
export default { export default {
components: { "c-ptap": Ptap }, components: { "c-ptap": Ptap },
inject: ["root"], inject: ["root"],
props: ["model", "codes"], props: ["model", "codes"],
mixins: [commonApi, event], mixins: [commonProcess, event],
data() { data() {
return {}; return {};
}, },
......
...@@ -607,9 +607,9 @@ ...@@ -607,9 +607,9 @@
</div> </div>
</template> </template>
<script> <script>
import commonProcess from "~/mixin/commonProcess";
import event from '../event' import event from '../event'
import Ptap from '~/views/Public/Ptap' import Ptap from '~/views/Public/Ptap'
import commonProcess from "~/mixin/commonProcess";
export default { export default {
components: { 'c-ptap': Ptap }, components: { 'c-ptap': Ptap },
...@@ -647,8 +647,7 @@ export default { ...@@ -647,8 +647,7 @@ export default {
}, },
} }
}, },
methods: { methods: {},
},
created: function () {}, created: function () {},
} }
</script> </script>
......
...@@ -324,22 +324,20 @@ ...@@ -324,22 +324,20 @@
</div> </div>
</template> </template>
<script> <script>
import commonProcess from "~/mixin/commonProcess";
import event from '../event' import event from '../event'
import Ptap from "~/views/Public/Ptap"; import Ptap from "~/views/Public/Ptap";
import Utils from "~/utils";
export default { export default {
components: { "c-ptap": Ptap }, components: { "c-ptap": Ptap },
inject: ["root"], inject: ["root"],
props: ["model", "codes"], props: ["model", "codes"],
mixins: [event], mixins: [commonProcess, event],
data() { data() {
return {}; return {};
}, },
methods: { methods: {},
...Event,
},
created: function () {}, created: function () {},
}; };
</script> </script>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment