|
@@ -69,7 +69,7 @@ export default {
|
|
|
pandanxinxi() {
|
|
|
return [
|
|
|
{
|
|
|
- isShow: this.formOptions.websitId.isShow,
|
|
|
+ isShow: !this?.orderInfo?.isThreeOrder && this.formOptions.websitId.isShow,
|
|
|
name: 'el-select',
|
|
|
options: this.websitList,
|
|
|
md: 8,
|
|
@@ -102,6 +102,24 @@ export default {
|
|
|
}
|
|
|
},
|
|
|
{
|
|
|
+ isShow: this?.orderInfo?.isThreeOrder && this.formOptions.websitId.isShow,
|
|
|
+ name: 'slot-component',
|
|
|
+ md: 8,
|
|
|
+ attributes: { disabled: true, placeholder: '请输入' },
|
|
|
+ formItemAttributes: { label: '网点信息', prop: 'websitName' },
|
|
|
+ render: (h, { props, onInput }) => {
|
|
|
+ var { formData } = props
|
|
|
+ return (
|
|
|
+ <el-input
|
|
|
+ value={`${formData.websitName || ''}-${formData.websitId || ''}`}
|
|
|
+ disabled={true}
|
|
|
+ size="mini"
|
|
|
+ placeholder="请输入"
|
|
|
+ ></el-input>
|
|
|
+ )
|
|
|
+ }
|
|
|
+ },
|
|
|
+ {
|
|
|
isShow: this.formOptions.isQd.isShow,
|
|
|
name: 'el-switch',
|
|
|
md: 8,
|