1 В избранное 0 Ответвления 0

OSCHINA-MIRROR/x_discoverer-Vue.NetCore

Присоединиться к Gitlife
Откройте для себя и примите участие в публичных проектах с открытым исходным кодом с участием более 10 миллионов разработчиков. Приватные репозитории также полностью бесплатны :)
Присоединиться бесплатно
Клонировать/Скачать
Audit.vue 1.1 КБ
Копировать Редактировать Web IDE Исходные данные Просмотреть построчно История
jxx Отправлено 6 лет назад 03b60b9
<template>
<div>
<Alert show-icon>当前选中{{auditParam.rows}}条记录待审核..</Alert>
<Form :label-width="85" style="padding-right: 13px;padding-top: 8px;">
<FormItem label="审核结果:">
<RadioGroup v-model="auditParam.status">
<Radio v-for="item in auditParam.data" :key="item.status" :label="item.status">
<span>{{item.text}}</span>
</Radio>
</RadioGroup>
</FormItem>
<FormItem label="备 注:">
<Input
v-model="auditParam.reason"
type="textarea"
:autosize="{minRows: 4,maxRows: 10}"
placeholder="审核备注..."
></Input>
</FormItem>
</Form>
</div>
</template>
<script>
export default {
props: {
auditParam: {
type: Object,
default: () => {
return {
auditParam: {
rows: 0,
model: false,
status: -1,
reason: "",
data: []//[{ text: "通过", status: 1 }, { text: "拒绝", status: 2 }]
}
};
}
}
}
};
</script>

Опубликовать ( 0 )

Вы можете оставить комментарий после Вход в систему

1
https://gitlife.ru/oschina-mirror/x_discoverer-Vue.NetCore.git
git@gitlife.ru:oschina-mirror/x_discoverer-Vue.NetCore.git
oschina-mirror
x_discoverer-Vue.NetCore
x_discoverer-Vue.NetCore
master