[update] 修改标准选择组件,删除文档库,修改个人中心和企标中标准号跳转
This commit is contained in:
@@ -8,7 +8,7 @@
|
||||
{{this.$t('standardSelect.standardSelection')}}
|
||||
</a-button>
|
||||
</div>
|
||||
<standard-selection-modal ref="standardSelectionModal" v-bind="$attrs" @input="modalInput" @change="modalChange"></standard-selection-modal>
|
||||
<standard-selection-modal ref="standardSelectionModal" v-bind="$attrs" :query="query" @input="modalInput" @change="modalChange"></standard-selection-modal>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
@@ -19,7 +19,7 @@ export default {
|
||||
name: 'StandardSelection',
|
||||
components: { StandardSelectionModal },
|
||||
props: {
|
||||
type: {
|
||||
query: {
|
||||
type: Object,
|
||||
default: () => {
|
||||
return {}
|
||||
@@ -28,12 +28,6 @@ export default {
|
||||
value: {
|
||||
type: String,
|
||||
default: ''
|
||||
},
|
||||
standard: {
|
||||
type: String,
|
||||
default: () => {
|
||||
return {}
|
||||
}
|
||||
}
|
||||
},
|
||||
computed: {
|
||||
@@ -55,6 +49,7 @@ export default {
|
||||
},
|
||||
// 输入框输入监听
|
||||
indexClick (event) {
|
||||
console.log(event.target.value)
|
||||
this.$emit('input', event.target.value)
|
||||
},
|
||||
modalInput (value) {
|
||||
|
||||
Reference in New Issue
Block a user