Browse Source

修改回复状态的回复按钮

lcmxs 1 year ago
parent
commit
5e28452e20
1 changed files with 5 additions and 2 deletions
  1. 5 2
      src/views/LEAVEMESSAGE/index.vue

+ 5 - 2
src/views/LEAVEMESSAGE/index.vue

@@ -183,8 +183,11 @@
         </el-row>
         <el-row>
           <el-col :span="24">
-            <el-form-item label="回复内容" prop="replyContent" >
-              <el-input v-model="form.replyContent" placeholder="请输入内容" type="textarea" autosize/>
+            <el-form-item label="回复内容" prop="replyContent">
+              <template slot-scope="scope">
+                <el-input v-if="form.type == 1" v-model="form.replyContent" type="textarea" autosize placeholder="请输入内容" />
+                <el-input v-else-if="form.type == 0" disabled v-model="form.replyContent" type="textarea" autosize />
+              </template>
             </el-form-item>
           </el-col>
         </el-row>