|
@@ -40,7 +40,7 @@
|
|
|
<search-work-company
|
|
|
:value="ruleForm.companyNo"
|
|
|
:placeholder="'业务公司'"
|
|
|
- :disabled="isDetail || isUpdate"
|
|
|
+ disabled
|
|
|
:size="'mini'"
|
|
|
:is-detail="false"
|
|
|
@searchChange="companyNosearchChange"
|
|
@@ -221,11 +221,12 @@
|
|
|
<script>
|
|
|
import asyncRequest from '@/apis/service/serviceParam/storeSet'
|
|
|
import resToken from '@/mixins/resToken'
|
|
|
+import companyHelper from '@/mixins/companyHelper'
|
|
|
import { isMobile, isSpecialSymbol, hasSpace, isAddr } from '@/utils/validate'
|
|
|
import { mapGetters } from 'vuex'
|
|
|
export default {
|
|
|
name: 'StoreSet',
|
|
|
- mixins: [resToken],
|
|
|
+ mixins: [resToken, companyHelper],
|
|
|
props: ['showModel', 'id', 'isDetail'],
|
|
|
computed: {
|
|
|
isUpdate() {
|
|
@@ -540,6 +541,10 @@ export default {
|
|
|
wsm_addr: '', // 收发货地址详细
|
|
|
addrs_code: [] // 收发货省市区
|
|
|
}
|
|
|
+
|
|
|
+ if (this.id === 'add') {
|
|
|
+ this.ruleForm.companyNo = this.currentCompany
|
|
|
+ }
|
|
|
}
|
|
|
})
|
|
|
},
|