diff --git a/src/views/netZoology/netArticle/index.vue b/src/views/netZoology/netArticle/index.vue
index a57cf72..eb35ab3 100644
--- a/src/views/netZoology/netArticle/index.vue
+++ b/src/views/netZoology/netArticle/index.vue
@@ -277,6 +277,9 @@
{{
form.url
}}
+
+
+
@@ -298,7 +301,7 @@ export default {
},
name: "Article",
//注释字典
- dicts: ["tc_wz_type", "tc_yq_media"],
+ dicts: ["tc_wz_type", "tc_yq_media", "tc_pj_status"],
data() {
return {
tableHeigth: 0,
@@ -398,6 +401,7 @@ export default {
updateBy: null,
remark: null,
+ status: null,
};
this.resetForm("form");
},
@@ -447,6 +451,7 @@ export default {
submitForm() {
this.$refs["form"].validate((valid) => {
if (valid) {
+ this.form.status = 2; //未评价
if (this.form.id != null) {
updateArticle(this.form).then((response) => {
this.$modal.msgSuccess("修改成功");