12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- <template>
- <view>
-
- </view>
- </template>
- <script>
- export default {
- props:{
- datalist: {
- type: Array,
- default () {
- return []
- }
- },
- wtdt:{
- type: String,
- default () {
- return ''
- }
- },
- type:{
- type: [String,Number],
- default () {
- return ''
- }
- },
- },
- components:{
- noData
- },
- data(){
- return{
- topbg:require("@/static/images/order/staffs/topbg.png"),
- dbg:require("@/static/images/order/staffs/dbg.png"),
- ybg:require("@/static/images/order/staffs/ybg.png"),
- }
- },
- onLoad: function() {
- },
- methods:{
- getDetail(e){
- this.$emit('getDetail')
- }
- },
-
- }
- </script>
- <style lang="scss" scoped>
- </style>
|