|
@@ -4747,7 +4747,7 @@ export const useHooks = (t?: any) => {
|
|
|
return (
|
|
|
<el-select
|
|
|
v-model={scope.row.extraid}
|
|
|
- disabled={scope.row.extrainputtype == 2}
|
|
|
+ disabled={scope.row.inputtype == 2}
|
|
|
onChange={val => extratypeOnChange(val, scope)}
|
|
|
>
|
|
|
{{
|
|
@@ -4778,8 +4778,8 @@ export const useHooks = (t?: any) => {
|
|
|
field: "extraname",
|
|
|
editRender: {},
|
|
|
editColRender: (scope: any) => {
|
|
|
- let _disabled = scope.row.extrainputtype == 2;
|
|
|
- if (scope.row.extrainputtype == 0) {
|
|
|
+ let _disabled = scope.row.inputtype == 2;
|
|
|
+ if (scope.row.inputtype == 0) {
|
|
|
return (
|
|
|
<el-select
|
|
|
v-model={scope.row.extramxid}
|
|
@@ -4904,7 +4904,7 @@ export const useHooks = (t?: any) => {
|
|
|
return (
|
|
|
<el-select
|
|
|
v-model={scope.row.extraid}
|
|
|
- disabled={scope.row.extrainputtype == 2}
|
|
|
+ disabled={scope.row.inputtype == 2}
|
|
|
onChange={val => extratypeOnChange(val, scope)}
|
|
|
>
|
|
|
{{
|
|
@@ -4936,8 +4936,8 @@ export const useHooks = (t?: any) => {
|
|
|
editRender: {},
|
|
|
editColRender: (scope: any) => {
|
|
|
console.log("editColRender 1111 scope :>> ", scope);
|
|
|
- let _disabled = scope.row.extrainputtype == 2;
|
|
|
- if (scope.row.extrainputtype == 0) {
|
|
|
+ let _disabled = scope.row.inputtype == 2;
|
|
|
+ if (scope.row.inputtype == 0) {
|
|
|
return (
|
|
|
<el-select
|
|
|
v-model={scope.row.extramxid}
|
|
@@ -5010,8 +5010,6 @@ export const useHooks = (t?: any) => {
|
|
|
if (state.specialProcessesEnum.length) {
|
|
|
let item = state.specialProcessesEnum.find(t => t.extraid == value);
|
|
|
if (item) {
|
|
|
- row.extrainputtype = item.inputtype;
|
|
|
-
|
|
|
row.extramxid = 0;
|
|
|
row.inputtype = 0;
|
|
|
row.extraname = "";
|