|
@@ -30,7 +30,7 @@
|
|
|
<el-form-item label="平台名称" prop="platform_name">
|
|
|
<el-input
|
|
|
v-model="ruleForm.platform_name"
|
|
|
- :disabled="id == '007'"
|
|
|
+ :disabled="id == '007' "
|
|
|
placeholder="平台名称"
|
|
|
maxlength="20"
|
|
|
/>
|
|
@@ -41,7 +41,7 @@
|
|
|
<el-select
|
|
|
v-model="ruleForm.use_type"
|
|
|
style="width: 100%"
|
|
|
- :disabled="id == '007'"
|
|
|
+ :disabled="id == '007' || isUpdate"
|
|
|
placeholder="请选择平台类型"
|
|
|
@change="set_required"
|
|
|
>
|
|
@@ -57,7 +57,7 @@
|
|
|
<el-select
|
|
|
v-model="ruleForm.platform_type"
|
|
|
style="width: 100%"
|
|
|
- :disabled="id == '007'"
|
|
|
+ :disabled="id == '007' || isUpdate"
|
|
|
placeholder="请选择对接平台"
|
|
|
@change="set_required"
|
|
|
>
|
|
@@ -76,7 +76,7 @@
|
|
|
<el-select
|
|
|
v-model="ruleForm.is_pay"
|
|
|
style="width: 100%"
|
|
|
- :disabled="id == '007'"
|
|
|
+ :disabled="id == '007' || isUpdate"
|
|
|
placeholder="是否开启"
|
|
|
@change="set_required"
|
|
|
>
|
|
@@ -120,6 +120,7 @@
|
|
|
:names="''"
|
|
|
:size="'mini'"
|
|
|
:is-detail="id !== 'add'"
|
|
|
+ :disabled="isUpdate"
|
|
|
:placeholder="'业务公司'"
|
|
|
@searchChange="handleCompanyChange($event, scope.$index)"
|
|
|
/>
|
|
@@ -268,6 +269,11 @@ export default {
|
|
|
rulesThis: this.rules
|
|
|
}
|
|
|
},
|
|
|
+ computed: {
|
|
|
+ isUpdate() {
|
|
|
+ return this.id === '005'
|
|
|
+ }
|
|
|
+ },
|
|
|
watch: {
|
|
|
showModel: function(val) {
|
|
|
this.showModelThis = val
|
|
@@ -314,7 +320,6 @@ export default {
|
|
|
this.loading = true
|
|
|
const platformResponse = await asyncRequest.detail({ id: this.sitem.id })
|
|
|
const { platform_name, platform_type, is_select_pay_rate, use_type, pay_list, pay_title } = platformResponse.data
|
|
|
-
|
|
|
// if (Array.isArray(pay_list) && pay_list.length > 0) {
|
|
|
// const { companyNoc } = pay_list[pay_list.length - 1]
|
|
|
// console.log(pay_list[pay_list.length - 1])
|