19 lines
		
	
	
		
			385 B
		
	
	
	
		
			Vue
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			385 B
		
	
	
	
		
			Vue
		
	
	
	
	
	
| <script>
 | |
| const options = [
 | |
|   { dictValue: 2, dictName: '同意' },
 | |
|   { dictValue: 3, dictName: '不同意' }
 | |
| ]
 | |
| export default {
 | |
|   name: "AiAudit",
 | |
|   data() {
 | |
|     return {
 | |
|       options, auditStatus: ""
 | |
|     }
 | |
|   },
 | |
| }
 | |
| </script>
 | |
| <template>
 | |
|   <section class="AiAudit">
 | |
|     <ai-select v-model="auditStatus" :select-list="options" v-bind="$attrs" v-on="$listeners" />
 | |
|   </section>
 | |
| </template> |