|
|
@@ -116,6 +116,17 @@
|
|
|
</el-table>
|
|
|
</div>
|
|
|
</div>
|
|
|
+ <el-dialog title="请输入审核不通过的原因" :visible.sync="isDialogShow">
|
|
|
+ <el-form :model="form">
|
|
|
+ <el-form-item label>
|
|
|
+ <el-input v-model="form.reason"></el-input>
|
|
|
+ </el-form-item>
|
|
|
+ </el-form>
|
|
|
+ <div slot="footer" class="dialog-footer">
|
|
|
+ <el-button @click="handleCancleClick()">取 消</el-button>
|
|
|
+ <el-button type="primary" @click="handleComfirmClick()">确 定</el-button>
|
|
|
+ </div>
|
|
|
+ </el-dialog>
|
|
|
</div>
|
|
|
</template>
|
|
|
|