优先级规则

This commit is contained in:
yulixing 2019-09-24 15:38:51 +08:00
parent 357fdfe05f
commit 0756efca10
2 changed files with 6 additions and 3 deletions

View File

@ -5,8 +5,8 @@ source /etc/profile
npm install --prefer-offline --loglevel info --unsafe-perm=true --allow-root >> boundle.log
echo 'copy node_modules to /data/publish/node_packages' >> boundle.log
npm run build:prod
#npm run build:stage
#npm run build:prod
npm run build:stage
cd ./dist/ && tar -zcvf pop-sys.tar.gz ./
cd ..

View File

@ -118,7 +118,7 @@
prop="ad_sort"
>
<el-input
v-model="adForm.ad_sort"
v-model.number="adForm.ad_sort"
class="w100"
:disabled="!writeable"
/>
@ -392,6 +392,9 @@ export default {
ad_num: [
{type: 'number', message: '计划数必须是数值', trigger: 'blur'},
],
ad_sort: [
{type: 'number', message: '广告优先级必须是数值', trigger: 'blur'},
],
'ad_property.jump_param': [
{
required: true,